Content deleted Content added
No edit summary |
reset changes list; |
||
(17 intermediate revisions by 2 users not shown) | |||
Line 1:
--[[
History of changes since last sync:
]]
Line 46 ⟶ 43:
['author-link'] = true,
['author-mask'] = true,
['authors'] = true,▼
['bibcode'] = true,
['bibcode-access'] = true,
Line 136 ⟶ 132:
['magazine'] = true,
['medium'] = true,
['medrxiv'] = true, -- cite medrxiv; here because allowed in cite ... as identifier
['minutes'] = true, -- constrain to cite AV media and podcast?
['mode'] = true,
Line 160 ⟶ 157:
['page'] = true,
['pages'] = true,
['people'] = true,▼
['periodical'] = true,
['place'] = true,
Line 186 ⟶ 182:
['script-chapter'] = true,
['script-contribution'] = true,
['script-encyclopaedia'] = true,
['script-encyclopedia'] = true,
['script-entry'] = true,
['script-journal'] = true,
Line 220 ⟶ 218:
['title'] = true,
['title-link'] = true,
['title-note'] = true,
['translator'] = true,
['translator-first'] = true,
Line 230 ⟶ 229:
['trans-chapter'] = true,
['trans-contribution'] = true,
['trans-encyclopaedia'] = true,
['trans-encyclopedia'] = true,
['trans-entry'] = true,
['trans-journal'] = true,
Line 348 ⟶ 349:
--[[--------------------------< P R E P R I N T S U P P O R T E D P A R A M E T E R S >--------------------
Cite arXiv, cite biorxiv, cite citeseerx, cite medrxiv, and cite ssrn are preprint templates that use the limited
set of parameters 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 preprint templates. Some of these parameters may also be available to the general cs1|2
templates. Same conventions for true/false/tracked/nil as above.
Line 368 ⟶ 370:
citeseerx = {
['citeseerx'] = true,
},
medrxiv = {
},
ssrn = {
Line 379 ⟶ 384:
--[[--------------------------< L I M I T E D S U P P O R T E D P A R A M E T E R S >----------------------
cite arxiv, cite biorxiv, cite citeseerx, cite medrxiv, and cite ssrn templates are preprint templates so are
allowed only a limited subset of parameters allowed to all other cs1|2 templates. The limited subset is defined
here. This list of parameters also used by {{cite document}}
Same conventions for true/false/tracked/nil as above.
Line 396 ⟶ 404:
['authorlink'] = true,
['author-mask'] = true,
['authors'] = true,▼
['collaboration'] = true,
['date'] = true,
Line 458 ⟶ 465:
local unique_arguments_t = {
['audio-visual'] = {
['transcript'] = true,
['transcript-format'] = true,
Line 475 ⟶ 483:
['episode-link'] = true, -- alias of |title-link=
['network'] = true,
['season'] = true,
['series-link'] = true,
Line 514 ⟶ 523:
['episode-link'] = true, -- alias of |title-link=
['network'] = true,
['people'] = true,
['series-link'] = true,
['station'] = true,
Line 639 ⟶ 649:
return {
preprint_arguments_t = preprint_arguments_t,
preprint_template_list_t = template_list_get (preprint_arguments_t),
unique_arguments_t = unique_arguments_t,
unique_param_template_list_t = template_list_get (unique_arguments_t), -- make a template list from unique_arguments{} table
Line 652 ⟶ 657:
common_parameters_t = list_combine ({basic_arguments_t, numbered_arguments_t});
limited_parameters_t = list_combine ({limited_basic_arguments_t, limited_numbered_arguments_t});
};
|