local aliases =
local function trimArg(arg, i) arg = mw.text.trim(arg or ) if arg
local function getValue(stats, action, map) if action
0 or articles
local function getIfLocal(site, action) -- If wanted site is the local site where module is running, -- return numberof result for given action, or nil. -- This is faster than reading the cached table, and gives the current value. local localSite = string.match(mw.site.server, '.*//(.*)%.org$') -- examples: 'af.wikipedia', 'commons.wikimedia' if site
'activeusers' then action = 'activeUsers' end return getValue(mw.site.stats, action) endend
local function main(frame) local metaWords = local args = frame:getParent.args local action = trimArg(args[1], 1) -- activeusers, admins, articles, edits, files, pages, users, depth, active, closed, languages if action:sub(1, 8)
'active' then result = nrActive elseif action
'languages' then result = nrActive + nrClosed end end else result = getIfLocal(site, action) if not result then local data = mw.loadData('Module:NUMBEROF/data') local map = data.map data = data.data result = data[site] if result then result = getValue(result, action, map) end end end if result then if wantComma then result = mw.language.getContentLanguage:formatNum(result) end return result -- number or formatted string end return -1end
local function rank(frame) -- Rank sites in a specified sister project by their number of articles. local args = frame:getParent.args local parm = trimArg(args[1], 1) -- a number like 12 or a site name like "af" (not "af.wikipedia") local base = trimArg(args[2]) or 'wikipedia' -- base of full site name like "wikipedia" or "wikiquote" local wantComma = trimArg(args[3]) local data = mw.loadData('Module:NUMBEROF/' .. (base
'number' then result = data.rankByIndex[parm] else result = data.rankBySite[parm] if result and wantComma then result = mw.getContentLanguage:formatNum(result) end end if result then return result -- number or string end end return -1end
return