Content deleted Content added
remove illustrator and composer |
Adamant.pwn (talk | contribs) placing list of common properties on top |
||
Line 3:
local getValue = wdib._getValue
local citeq = {}
Line 177 ⟶ 208:
citeq_args[k] = v
end
▲ local simple_properties = { -- PXXX, is multiple?, linked?
▲ publisher = {id="P123", maxvals=1},
▲ oclc = {id="P243", maxvals=1},
▲ place = {id="P291", maxvals=0,linked='no'},
▲ doi = {id="P356", maxvals=1},
▲ issue = {id="P433", maxvals=1},
▲ pmid = {id="P698", maxvals=1},
▲ arxiv = {id="P818", maxvals=1},
▲ bibcode = {id="P819", maxvals=1},
▲ jstor = {id="P888", maxvals=1},
▲ mr = {id="P889", maxvals=1},
▲ ssrn = {id="P893", maxvals=1},
▲ pmc = {id="P932", maxvals=1},
▲ lccn = {id="P1144", maxvals=1},
▲ hdl = {id="P1184", maxvals=1},
▲ ismn = {id="P1208", maxvals=1},
▲ journal = {id="P1433", maxvals=1},
▲ citeseerx = {id="P3784", maxvals=1},
▲ osti = {id="P3894", maxvals=1},
▲ biorxiv = {id="P3951", maxvals=1},
▲ isbn = {id="P212", maxvals=1}, -- ISBN 13
▲ illustrator = {id="P110", maxvals=0}, -- goes to "others" section
▲ composer = {id="P86", maxvals=0}, -- goes to "others" section
▲ chapter = {id="P792", maxvals=1},
▲ ["date"] = {id="P577", maxvals=1},
▲ series = {id="P179", maxvals=1},
▲ volume = {id="P478", maxvals=1},
▲ title = {id="P1476", maxvals=1},
▲ url = {id="P953", maxvals=1}, -- full work available at
▲ pages = {id="P304", maxvals=1}
▲ }
for name, data in pairs(simple_properties) do
|