Module:Banner shell
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 Lua module is used on approximately 11,300,000 pages, or roughly 18% of all pages. To avoid major disruption and server load, any changes should be tested in the module's /sandbox or /testcases subpages, or in your own module sandbox. The tested changes can be added to this page in a single edit. Consider discussing changes on the talk page before implementing them. |
Banner shell |
---|
Usage
This module implements Template:WikiProject banner shell and Template:Banner holder. Please refer to those templates' documentation.
local p = {}
local DuplicateBanners = function(text)
local capture = '<span class="wpb%-project">([%w%s]*)</span>'
local banners = {}
for project in text:gmatch(capture) do
if banners[project] == true then
return '[[Category:Pages using WikiProject banner shell with duplicate banner templates|' .. project .. ']]'
end
banners[project] = true
end
end
p.main = function(frame)
local args = require('Module:Arguments').getArgs(frame, {
wrappers = {'Template:WikiProject banner shell'}
})
local title = args.demo_page and mw.title.new(args.demo_page) or mw.title.getCurrentTitle()
local classmask = require('Module:Class mask')
local class = classmask._main({args.class or ''}, title.talkPageTitle)
local yesno = require('Module:Yesno')
local demo = not yesno(args.category or true, true) or args.demo_page
local pagetype = require('Module:Pagetype')._main{
page = title.prefixedText,
[1] = args.class,
dab = 'disambiguation page',
defaultns = 'extended'
}
if demo and not args.demo_page then
pagetype = 'article'
end
local out = {}
if yesno(args.blp) or yesno(args.living) then
table.insert(out,frame:expandTemplate{title = 'BLP'})
elseif yesno(args.blpo) then
table.insert(out,frame:expandTemplate{title = 'BLP others'})
end
if yesno(args.activepol) then
table.insert(out, frame:expandTemplate{title = 'Active politician'})
end
local banner_args = {
templatestyles = 'WikiProject banner shell/styles.css',
collapsed = args.collapsed,
class = 'wpbs',
}
local globalclass = false
if class == '' then -- check if class parameters are defined by any project banner
local articleclass = require('Module:WikiProject banner').readarticleclass(
{ignore_blank = true, only_subtemplates = true},
title.talkPageTitle.prefixedText
)
if articleclass == '' then -- no class parameters are defined by any project banner, so globally unassessed
globalclass = true
end
else -- global class defined, so display it
globalclass = true
end
local text = 'This ' .. (pagetype=='article' and 'article' or ('<b>'..pagetype..'</b>')) .. ' '-- use bold if page type is not article
local icon_class = 'council'
if globalclass or not args[1] then
local icons = { -- map output of pagetype function to input of class icon function
['project page'] = 'project',
['user page'] = 'user',
['interface page'] = 'interface',
['help page'] = 'help',
['module'] = 'module',
['disambiguation page'] = 'disambig',
['page'] = 'na'
}
icon_class = class=='NA' and (icons[pagetype] or pagetype) or class
if class == '' then
text = text .. 'has not yet been rated'
else
if args.class and class~='NA' then
text = text .. 'is rated <span style="font-weight:bold;">' .. class .. '-class</span>'
else
text = text .. 'does not require a rating'
end
end
text = text .. ' on Wikipedia\'s [[Wikipedia:Content assessment|content assessment]] scale.'
if args[1] then
text = text .. '<br>It'
else
if not demo then
if title.isTalkPage then
text = text .. '[[Category:' .. (class=='' and 'Unassessed' or (class .. '-Class')) .. ' articles]]'
end
end
end
end
if args[1] then
text = text .. ' is of interest to ' ..
(yesno(args.collapsed) and 'multiple [[Wikipedia:WikiProject|WikiProjects]].'
or ('the following [[Wikipedia:WikiProject|WikiProjects]]:'))
end
local icon = require('Module:Class')._icon{icon_class, size='35px'}
local header = mw.html.create('td')
:addClass('assess'):wikitext(icon):done()
:tag('td'):addClass('banner-shell-header'):css('text-align', 'left'):css('font-weight', 'normal'):wikitext(text):done()
banner_args.header = tostring(header)
banner_args[1] = args[1] or ''
table.insert(out,frame:expandTemplate{title='Banner holder', args=banner_args})
if args[1] and args[1]~='' then
local duplicate_cat = DuplicateBanners(args[1])
if duplicate_cat and title.isTalkPage then
table.insert(out, duplicate_cat)
end
elseif title.isTalkPage then
table.insert(out,'[[Category:Pages using WikiProject banner shell without banner templates]]')
end
if args.listas then
table.insert(out,frame:preprocess('{{DEFAULTSORT:' .. args.listas .. '}}'))
end
return table.concat(out)
end
return p