Module:Citation/CS1/Whitelist/sandbox: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 115:
['entry-url'] = true,
['entry-url-access'] = true,
-- ['episode'] = true, -- cite serial only TODO: make available to cite episode?
-- ['episodelink'] = true, -- cite episode and cite serial
-- ['episode-link'] = true, -- cite episode and cite serial
['eprint'] = true, -- cite arxiv and arxiv identifiers
['event'] = true,
Line 188:
['MR'] = true,
['name-list-format'] = true,
-- ['network'] = true, -- cite episode and cite serial only
['newsgroup'] = true,
['newspaper'] = true,
Line 266:
['ssrn'] = true,
['SSRN'] = true,
-- ['station'] = true, -- cite episode and cite serial only
['subject'] = true,
['subjectlink'] = true,
Line 406:
defined in the limited_basic_arguments and limited_numbered_arguments tables. Those lists are supplemented with a
template-specific list of parameters that are required by the particular template and may be exclusive to one of the
proeprintpreprint templates. Some of these parameters may also be available to the general cs1|2 templates.
 
Same conventions for true/false/nil as above.
 
]]
 
local preprint_specific_arguments = {
arxiv = {
['arxiv'] = true, -- cite arxiv and arxiv identifiers
['class'] = true, -- cite arxiv only
['eprint'] = true, -- cite arxiv and arxiv identifiers
},
biorxiv = {
['biorxiv'] = true,
},
citeseerx = {
['citeseerx'] = true,
},
ssrn = {
['ssrn'] = true,
['SSRN'] = true,
},
}
 
 
--[[--------------------------< C I T E A R X I V >----------------------------------------------------------
Line 528 ⟶ 547:
--[[--------------------------< T E M P L A T E _ S P E C I F I C _ A R G U M E N T S >------------------------
 
some templates haveunique parameters. Those templates and their unique parameters are listed here.
 
Same conventions for true/false/nil as above.
 
]]
Line 536 ⟶ 557:
['airdate'] = true,
['air-date'] = true,
['episodelink'] = true, -- aliases of |title-link=
['episode-link'] = true,
['network'] = true,
['station'] = true,
},
serial = {
['airdate'] = true,
['air-date'] = true,
['episode'] = true, -- cite serial only TODO: make available to cite episode?
['episodelink'] = true, -- aliases of |title-link=
['episode-link'] = true,
['network'] = true,
['station'] = true,
},
}
 
 
--[[--------------------------< E X P O R T E D T A B L E S >------------------------------------------------
Line 551 ⟶ 582:
limited_basic_arguments = limited_basic_arguments,
limited_numbered_arguments = limited_numbered_arguments,
arxiv_basic_arguments = arxiv_basic_arguments, -- TODO: delete this
biorxiv_basic_arguments = biorxiv_basic_arguments, -- TODO: delete this
citeseerx_basic_arguments = citeseerx_basic_arguments, -- TODO: delete this
ssrn_basic_arguments = ssrn_basic_arguments, -- TODO: delete this
preprint_specific_arguments = preprint_specific_arguments,
template_specific_arguments = template_specific_arguments,
};