Module:Transclusion count: Difference between revisions

Retrieve module usage data
(Don't look up modules in the database (yet))
(Retrieve module usage data)
Line 6:
 
-- Use demo parameter if it exists, otherswise use current template name
local namespace = mw.title.getCurrentTitle().namespace
if frame.args["demo"] and frame.args["demo"] ~= "" then
template = frame.args["demo"]
elseif mw.title.getCurrentTitle().namespace == 10 then -- Template namespace only
template = mw.title.getCurrentTitle().text
elseif namespace == 828 then -- Module namespace
template = (mw.site.namespaces[828].name .. ":" .. mw.title.getCurrentTitle().text)
end
 
-- If in template or module namespace, look up count in /data
if template ~= nil and mw.title.new(template, "Template").namespace == 10 then
templatenamespace = mw.ustringtitle.gsubnew(template, "/doc$", "Template") -- strip /doc from end.namespace
if namespace == 10 or namespace == 828 then
local index = mw.ustring.upper(mw.ustring.sub(template,1,1))
local data template = mw.loadData('Module:Transclusion_count/data/' .. (mw.ustring.findgsub(indextemplate, "/doc$", "%a") and-- indexstrip or/doc "other"))from end
return_value local index = tonumber(data[mw.ustring.gsubsub(mw.title.new(template).text, " "1, "_")]1)
local data = mw.loadData('Module:Transclusion_count/data/' .. (mw.ustring.find(index, "%a") and index or "other"))
return_value = tonumber(data[mw.ustring.gsub(template, " ", "_")])
end
end
Anonymous user