Jump to content

Module:Uses Wikidata/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jay D. Easy (talk | contribs) at 00:28, 20 August 2019 (+tracksusesProperty: bold id first, small label last). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.usesProperty(frame)
	local parent = frame.getParent(frame)
	local result = ''
	local ii = 1
	while true do
		local p_num = mw.text.trim(parent.args[ii] or '')
		if p_num ~= '' then
			local label = mw.wikibase.label(p_num) or "NO LABEL"
			result = result .. "<ul><li>&#8226; <b>[[d:Property:" .. p_num .. "|" .. label .. "]]</b> <small>([[d:Property talk:" .. string.upper(p_num) .. "|" .. p_num .. "]])</small></li></ul>"
			ii = ii + 1
		else break
		end
	end
	return result
end

function p.tracksusesProperty(frame)
	local parent = frame.getParent(frame)
	local result = ''
	local ii = 1
	while true do
		local p_num = mw.text.trim(parent.args[ii] or '')
		if p_num ~= '' then
			local label = mw.wikibase.label(p_num) or "NO LABEL"
			result = result .. "<ul><li>&#8226;&nbsp;<b>[[d:Property talk:" .. string.upper(p_num) .. "|" .. p_num .. "]]:</b> <small>[[d:Property:" .. p_num .. "|" .. label .. "]]</small></li></ul>"
			ii = ii + 1
		else break
		end
	end
	return result
end
 
return p