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
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 classes = { '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 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(classes, project) + categoryCount('Unassessed', project) end local function arg_or_default(args, from_arg, default) if args[from_arg] and args[from_arg] ~= '' then return args[from_arg] else return default end end function p.main(frame) local args = getArgs(frame) return p._main(args) end function p._main(args) local project = arg_or_default(args, "project", nil) local classCount = countCategoryArticles(classes, project) local total = calculateProjectTotal(project) return percentComplete(classCount, total) 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)
Templates used on this page:
Template:Module other
(
edit
)
Template:Module rating
(
edit
)
Template:Ombox
(
edit
)
Template:Tl
(
edit
)
Module:Arguments
(
edit
)
Module:Message box
(
edit
)
Module:Message box/configuration
(
edit
)
Module:Message box/ombox.css
(
edit
)
Module:WikiProject assessment progression/doc
(
edit
)
Module:Yesno
(
edit
)