Open main menu
Home
Random
Donate
Recent changes
Special pages
Community portal
Preferences
About Stockhub
Disclaimers
Search
User menu
Talk
Contributions
Create account
Log in
Editing
Module:WikiProject assessment progression/sandbox
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.
Anti-spam check. Do
not
fill this in!
require('strict') local assessedClasses = { 'List','Stub','Start','C','B', 'GA','A','FA','FL','FM', 'Book','Category','Disambig','File', 'Portal','Project','Redirect','Template', } local p = {} local getArgs = require('Module:Arguments').getArgs local errorMessage = require('Module:Error') local function categoryCount(category, project) return mw.site.stats.pagesInCategory( string.format('%s %s articles', category, project), 'pages' ) end -- rounding to first decimal, from http://lua-users.org/wiki/SimpleRound local function round(num) return math.floor(num * 10 + 0.5) / 10 end local function percentComplete(sum, total) return tostring(round(100 * sum / total)) end local function countCategoryArticles(classesToCount, project) local classCount = 0 for _, class in ipairs(classesToCount) do classCount = classCount + categoryCount(class..'-Class', project) end return classCount end local function calculateProjectTotal(project) return countCategoryArticles(assessedClasses, project) + categoryCount('Unassessed', project) end local function countHigherCategories(targetClass, project) local higherCategories = {} local classKey = getKeyForValue(targetClass, assessedClasses) for k, v in ipairs(assessedClasses) do if k > classKey then higherCategories[k - classKey] = v end end return countCategoryArticles(higherCategories, project) end local function getKeyForValue(value, enclosingTable) for k, v in ipairs(enclosingTable) do if v == value then return k end end return nil end local function setClasses(args) local classes = {} if args['class'] then classes = {args['class']} else classes = assessedClasses end return classes end function p.main(frame) local args = getArgs(frame) return p._main(args) end function p._main(args) local project = args['project'] local classes = setClasses(args) local classCount = countCategoryArticles(classes, project) local total = calculateProjectTotal(project) if total == 0 then return errorMessage('Error: project not found for project name "'..project..'"') else return percentComplete(classCount, total) end end return p
Summary:
Please note that all contributions to Stockhub may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, 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 (see
Stockhub:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Module:WikiProject assessment progression/sandbox/doc
(
edit
)