Module:Class mask and Module:Class mask/sandbox: Difference between pages

(Difference between pages)
Page 1
Page 2
imported>MSGJ
m Changed protection settings for "Module:Class mask": most less used now (although number of transclusions has not caught up) ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite))
 
imported>MSGJ
fix?
 
Line 1: Line 1:
local p = {}
local p = {}
local cfg = mw.loadData('Module:WikiProject banner/config')


local isarticle = function(class)
local isarticle = function(class)
local nonarticleclasses = {'Template', 'File', 'Category', 'Disambig', 'Redirect', 'Portal', 'Project', 'Draft', 'Book', 'FM'} -- these classes will not be identified as conflicting with NA-class
local article = true
local article = true
for _,v in ipairs(nonarticleclasses) do
for _, v in ipairs(cfg.quality.non_article_classes) do
if class==v then -- class matches one of the non-article classes
if class == v then -- class matches one of the non-article classes
article = false
article = false
break
break
Line 20: Line 21:


local resolveFQSgrade = function(grade, args)
local resolveFQSgrade = function(grade, args)
if (args[grade] or args.FQS)=='yes' then
if (args[grade] or args.FQS) == 'yes' then
return ucfirst(grade)
return ucfirst(grade)
else
else
Line 31: Line 32:
local out = ''
local out = ''
local grade = args[1]
local grade = args[1]
if not grade or grade=='¬' then -- undefined
if not grade or grade == '¬' then -- undefined
out = '¬'
out = '¬'
else
else
Line 37: Line 38:
grade = grade:match('^%s*(.-)%s*$'):lower()
grade = grade:match('^%s*(.-)%s*$'):lower()
if title.subjectPageTitle.isRedirect then
if title.subjectPageTitle.isRedirect then
out = resolveFQSgrade('redirect',args)
out = resolveFQSgrade('redirect', args)
elseif ns==1 then -- Talk
elseif ns == 1 then -- Talk
if require('Module:Disambiguation').isDisambiguation(title.subjectPageTitle:getContent()) then
if require('Module:Disambiguation').isDisambiguation(title.subjectPageTitle:getContent()) then
out = resolveFQSgrade('disambig',args)
out = resolveFQSgrade('disambig', args)
else
else
if grade=='start' or grade=='stub' then -- Ucfirst
if grade == 'start' or grade == 'stub' then -- Ucfirst
if args[grade]~='no' then
if args[grade] ~= 'no' then
out = ucfirst(grade)
out = ucfirst(grade)
end
end
elseif grade=='b' or grade=='c' or grade=='fa' or grade=='fl' or grade=='a' or grade=='ga' then -- Upper-case
elseif grade == 'b' or grade == 'c' or grade == 'fa' or grade == 'fl' or grade == 'a' or grade == 'ga' then -- Upper-case
if args[grade]~='no' then
if args[grade] ~= 'no' then
out = grade:upper()
out = grade:upper()
end
end
elseif args[grade:upper()] then -- Upper-case syntax
elseif args[grade:upper()] then -- Upper-case syntax
out = args[grade:upper()]
out = args[grade:upper()]
elseif args[grade:lower()]=='yes' then -- Lower-case syntax
elseif args[grade:lower()] == 'yes' then -- Lower-case syntax
out = mw.language.getContentLanguage():ucfirst(grade:lower())
out = mw.language.getContentLanguage():ucfirst(grade:lower())
elseif grade=='list' or grade=='sia' or grade=='si' or grade=='sl' then-- List
elseif grade == 'list' or grade == 'sia' or grade == 'si' or grade == 'sl' then -- List
if args['list']~='no' then
if args['list'] ~= 'no' then
out = 'List'
out = 'List'
end
end
elseif grade=='dab' or grade=='disambig' or grade=='disambiguation' or grade=='disamb' then
elseif grade == 'dab' or grade == 'disambig' or grade == 'disambiguation' or grade == 'disamb' then
out = resolveFQSgrade('disambig', args)
out = resolveFQSgrade('disambig', args)
end
end
end
end
elseif ns==7 or ns==711 then -- File talk
elseif ns == 7 or ns == 711 then -- File talk
if grade=='fm' and (args.fm or args.FQS)=='yes' then
if grade == 'fm' and (args.fm or args.FQS) == 'yes' then
out = 'FM'
out = 'FM'
else
else
out = resolveFQSgrade('file', args)
out = resolveFQSgrade('file', args)
end
end
elseif ns==15 then -- Category talk
elseif ns == 15 then -- Category talk
out = resolveFQSgrade('category', args)
out = resolveFQSgrade('category', args)
elseif ns==101 then -- Portal talk
elseif ns == 101 then -- Portal talk
out = resolveFQSgrade('portal', args)
out = resolveFQSgrade('portal', args)
elseif ns==11 or ns==829 then -- Template talk
elseif ns == 11 or ns == 829 then -- Template talk
out = resolveFQSgrade('template', args)
out = resolveFQSgrade('template', args)
elseif ns==5 then -- Wikipedia talk
elseif ns == 5 then -- Wikipedia talk
out = resolveFQSgrade('project', args)
out = resolveFQSgrade('project', args)
elseif ns==119 then -- Draft talk
elseif ns == 119 then -- Draft talk
out = resolveFQSgrade('draft', args)
out = resolveFQSgrade('draft', args)
elseif ns==13 and args['help']=='yes' then -- Help talk
elseif ns == 13 and args['help'] == 'yes' then -- Help talk
out = 'Help'
out = 'Help'
elseif ns==3 and args['user']=='yes' then -- User talk
elseif ns == 3 and args['user'] == 'yes' then -- User talk
out = 'User'
out = 'User'
else
else
Line 103: Line 104:
class = args.class
class = args.class
elseif args.QUALITY_SCALE == 'subpage' then
elseif args.QUALITY_SCALE == 'subpage' then
if mw.title.new(args.BANNER_NAME..'/class').exists then
local classTemplate = args.BANNER_NAME .. '/class'
if mw.title.new(classTemplate).exists then
local frame = mw.getCurrentFrame()
local frame = mw.getCurrentFrame()
class = frame:expandTemplate{title = args.BANNER_NAME..'/class', args = args}
class = frame:expandTemplate{title = classTemplate, args = args}
end
end
else
else
Line 118: Line 120:
page = page or mw.title.getCurrentTitle().prefixedText
page = page or mw.title.getCurrentTitle().prefixedText
local get_parameter_value = require("Module:Template parameter value").getValue
local get_parameter_value = require("Module:Template parameter value").getValue
local WPBSredirects = {'WikiProject banner shell','WikiProject banner shell/sandbox','Bannershell','Multiple wikiprojects','Project shell','Scope shell','WPB','WPBS','WPBannerShell','WP Banner Shell','WP banner shell','WikiProjectBannerShell','WikiProjectBanner Shell','WikiProjectBanners','WikiProject BannerShell','WikiProject Banner Shell','WikiProject Banners','WikiProject Banners Shell','WikiProject Shell','WikiProject banner','WikiProject banner shell/redirect','WikiProject shell','WikiprojectBannerShell','Wikiproject banner holder','Wikiproject banner shell','Wikiprojectbanners','Wikiprojectbannershell','Wpb','Wpbannershell','Wpbsgclass'}
local success, result = get_parameter_value(page, cfg.WPBS_redirects, "class", options)
local success, result = get_parameter_value(page, WPBSredirects, "class", options)
return success and result
return success and result
-- returns FALSE if banner shell template does not exist on page
-- returns FALSE if banner shell template does not exist on page