Jump to content

Module:Sandbox/ProcrastinatingReader

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by ProcrastinatingReader (talk | contribs) at 18:34, 12 October 2020. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
function create(cat, msg) 
	return mw.ustring.format("[[Category:Parameter error (%s)]]", cat) .. create_message(msg)
end

function create_message(msg) 
	return mw.ustring.format("<span class='paramvalidator-error'><br/>%s</span>", msg)
end

local options = {
	["undeclared"] = create("invalid", "[ paramname ] does not exist."),
	["deprecated"] = create("deprecated", "[ paramname ] is deprecated"),
	["duplicate"] = create("duplicate", "[ paramname ] is a duplicate"),
	["doc-subpage"] = "doc",
}

local result = {
	[0] = options,
	[2] = options,
	[4] = options,
	[6] = options,
	[10] = options,
	[12] = options,
	[14] = options,
}
return result