Editing Module:Transclusion count

From Georgia Tech Student Wiki

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 21: Line 21:
 
template = mw.ustring.gsub(template, "/doc$", "") -- strip /doc from end
 
template = mw.ustring.gsub(template, "/doc$", "") -- strip /doc from end
 
local index = mw.ustring.sub(mw.title.new(template).text,1,1)
 
local index = mw.ustring.sub(mw.title.new(template).text,1,1)
 
local data = mw.loadData('Module:Transclusion_count/data/' .. (mw.ustring.find(index, "%a") and index or "other"))
local status, data = pcall(function ()
 
return(mw.loadData('Module:Transclusion_count/data/' .. (mw.ustring.find(index, "%a") and index or "other")))
+
return_value = tonumber(data[mw.ustring.gsub(template, " ", "_")])
end)
 
if status then
 
return_value = tonumber(data[mw.ustring.gsub(template, " ", "_")])
 
end
 
 
end
 
end
 
end
 
end
Line 39: Line 35:
 
 
 
return return_value
 
return return_value
end
 
 
-- Tabulate this data for [[Wikipedia:Database reports/Templates transcluded on the most pages]]
 
function p.tabulate(frame)
 
local list = {}
 
for i = 65, 91 do
 
local data = mw.loadData('Module:Transclusion count/data/' .. ((i == 91) and 'other' or string.char(i)))
 
for name, count in pairs(data) do
 
table.insert(list, {mw.title.new(name, "Template").fullText, count})
 
end
 
end
 
table.sort(list, function(a, b)
 
return (a[2] == b[2]) and (a[1] < b[1]) or (a[2] > b[2])
 
end)
 
local lang = mw.getContentLanguage();
 
for i = 1, #list do
 
list[i] = ('|-\n| %d || [[%s]] || %s\n'):format(i, list[i][1]:gsub('_', ' '), lang:formatNum(list[i][2]))
 
end
 
return table.concat(list)
 
 
end
 
end
   

Please note that all contributions to Georgia Tech Student Wiki are considered to be released under the Creative Commons Attribution-ShareAlike (see GT Student Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)

Template used on this page: