Module:Sandbox: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 21: | Line 21: | ||
function p.test_snapshot(frame) | function p.test_snapshot(frame) | ||
local | local name = frame.args.name; | ||
local snapshot = mw.wikibase. | local snapshot = mw.wikibase.getEntityIdForTitle(name); | ||
local snapshot_name = snapshot:getLabel(); | local snapshot_name = snapshot:getLabel(); | ||
local release = snapshot:formatPropertyValues('P9')['value']; | local release = snapshot:formatPropertyValues('P9')['value']; | ||
return release | return snapshot_name .. "(" .. release .. ")" | ||
end | end | ||
return p; | return p; |
Revision as of 00:41, 9 July 2022
Documentation for this module may be created at Module:Sandbox/doc
local p = {};
function p.test(frame)
local id = frame.args.id;
local label = mw.wikibase.getLabel(id);
local entity_type = mw.ustring.sub(id, 1, 1)
local link
if entity_type == "Q" then
link = "Item:"..id
elseif entity_type == "P" then
link = "Property:"..id
else
link = "Special:EntityData/"..id
end
return "[["..link.."|"..label.." ".."("..id..")".."]]"
end
function p.test_snapshot(frame)
local name = frame.args.name;
local snapshot = mw.wikibase.getEntityIdForTitle(name);
local snapshot_name = snapshot:getLabel();
local release = snapshot:formatPropertyValues('P9')['value'];
return snapshot_name .. "(" .. release .. ")"
end
return p;