Module:Articles by quality
Appearance
![]() | This module is rated as ready for general use. It has reached a mature form and is thought to be relatively bug-free and ready for use wherever appropriate. It is ready to mention on help pages and other Wikipedia resources as an option for new users to learn. To reduce server load and bad output, it should be improved by sandbox testing rather than repeated trial-and-error editing. |
![]() | This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
![]() | This module depends on the following other modules: |
This module implements Template:Articles by Quality and Template:Articles by Importance. Please refer to the documentation of those templates.
require('strict')
local p = {}
local create_table = function(frame, cfg)
local args = require('Module:Arguments').getArgs(frame)
local yesno = require('Module:Yesno')
local title = args.page and mw.title.new(args.page) or mw.title.getCurrentTitle()
local cat_name = '%s-%s %s %s'
local class, topic, typ = title.text:match(cfg.pattern)
if not class and cfg.pattern2 then -- try alternate pattern
class, topic, typ = title.text:match(cfg.pattern2)
end
if not topic then
topic = args.topic or title.text:match('^(.+) articles by ' .. cfg.qualimp .. '$')
end
local out, exist, cats = '', {}, {}
local add_category = function(cat, _sort)
local link = '[[Category:' .. cat .. (_sort and ('|' .. _sort) or '') .. ']]'
table.insert(cats, link)
end
if args.class and class and args.topic and topic and (args.class:lower()~=class:lower() or args.topic~=topic) then
add_category('WikiProject assessment categories needing attention')
end
topic = topic or args.topic or ''
class = class or args.class or ''
typ = typ or 'articles'
if title.namespace==14 and not title.text:match('^' .. topic .. ' articles by ' .. cfg.qualimp .. '$') then
out = frame:expandTemplate{title='Possibly empty category'}
end
local cat_in_use = function(cat)
local cat_title = mw.title.new('Category:' .. cat)
return cat_title and cat_title.exists or mw.site.stats.pagesInCategory(cat, 'pages')>0
end
for _, class in ipairs(cfg.classes) do
if cat_in_use(cat_name:format(class, cfg.suffix, topic, 'pages')) then
exist[class] = 'pages'
elseif cat_in_use(cat_name:format(class, cfg.suffix, topic, 'articles')) then
exist[class] = 'articles'
else
exist[class] = false
end
end
local template = function(class, page)
return frame:expandTemplate{
title = cfg.template_name,
args = {
[1] = class,
topic = topic,
category = topic .. ' ' .. page,
bold = 'no'
}
}
end
local header_row = mw.html.create('tr')
for _, class in ipairs(cfg.classes) do
if exist[class] then
header_row:node(template(class, exist[class]))
end
end
if args.custom1 then
header_row:node(template(args.custom1, 'articles'))
end
if args.custom2 then
header_row:node(template(args.custom2, 'articles'))
end
if cfg.custom then
header_row:node(template(cfg.custom.name, 'articles'))
end
local total_cell = mw.html.create('td'):attr('align', 'center'):wikitext('Total')
header_row:node(total_cell)
local total = 0
local col_num = function(n)
return mw.html.create('td')
:attr('align', 'center')
:wikitext(mw.language.getContentLanguage():formatNum(n))
end
local pages_in_cat = function(cat)
local pages = mw.site.stats.pagesInCategory(cat, 'pages')
total = total + pages
return col_num(pages)
end
local second_row = mw.html.create('tr')
for _, class in ipairs(cfg.classes) do
if exist[class] then
second_row:node(pages_in_cat(cat_name:format(class, cfg.suffix, topic, exist[class])))
end
end
if args.custom1 then
second_row:node(pages_in_cat(cat_name:format(args.custom1, cfg.suffix, topic, 'articles')))
end
if args.custom2 then
second_row:node(pages_in_cat(cat_name:format(args.custom2, cfg.suffix, topic, 'articles')))
end
if cfg.custom then
second_row:node(pages_in_cat(cfg.custom.category:format(topic)))
end
second_row:node(col_num(total))
local caption
if args.project then -- display caption
local abc = 'articles by ' .. cfg.qualimp
local text = '[[Wikipedia:WikiProject ' .. args.project .. '|WikiProject ' .. args.project .. ']] '
.. (
mw.title.new('Category:' .. topic .. ' ' .. abc).exists
and '[[:Category:' .. topic .. ' ' .. abc .. '|' .. abc .. ']]'
or abc
) .. string.rep(' ', 3)
.. '<small>' .. frame:expandTemplate{title = 'Purge', args = {'Refresh'}} .. '</small>'
caption = mw.html.create('caption')
:attr('align', 'bottom')
:wikitext(text)
end
local tab = mw.html.create('table')
:addClass(args.format or 'wikitable') -- add custom CSS class if specified
:addClass('toccolours'):addClass('nomobile')
:css('table-layout', 'fixed')
:css('margin', '1em auto')
:node(header_row)
:node(second_row)
:node(caption)
if class and class~='' and class~='nocat' then
add_category(args.parent or (topic .. ' articles by ' .. cfg.qualimp), class)
local suffix = class:lower()=='unassessed' and '' or ('-' .. cfg.suffix)
add_category(class .. suffix .. ' ' .. typ, args.sort or topic)
end
return out .. tostring(tab) .. table.concat(cats)
end
p.quality = function(frame)
local cfg = {
pattern = '^(%a+)-Class (.+) (%a+)$',
pattern2 = '^(Unassessed) (.+) (%a+)$', -- match unassessed category
qualimp = 'quality',
classes = {'FA', 'A', 'GA', 'B', 'C', 'Start', 'Stub', 'FL', 'AL', 'BL', 'CL', 'List', 'SIA', 'Future', 'Category', 'Disambig', 'Draft', 'FM', 'File', 'Portal', 'Project', 'Redirect', 'Template', 'User', 'NA'},
template_name = 'Class',
suffix = 'Class',
custom = {name = 'Unassessed', category = 'Unassessed %s articles'}
}
return create_table(frame, cfg)
end
p.importance = function(frame)
local cfg = {
pattern = '^(%a+)-importance (.+) (%a+)$',
qualimp = 'importance',
classes = {'Top', 'High', 'Mid', 'Low', 'Bottom', 'NA', 'Unknown'},
template_name = 'Importance',
suffix = 'importance'
}
return create_table(frame, cfg)
end
return p