Module:Protection banner/config: Difference between revisions

    From Nonbinary Wiki
    (it was a null edit)
    (restoring Mr. Stradivarius' edit since testing is OK and categories are ready)
    Line 700: Line 700:
    [ 14] = 'category',
    [ 14] = 'category',
    [100] = 'portal',
    [100] = 'portal',
    [828] = 'module',
    },
    },


    Line 721: Line 722:
    ['all|project|all|autoconfirmed|edit']  = 'Semi-protected project pages',
    ['all|project|all|autoconfirmed|edit']  = 'Semi-protected project pages',
    ['all|talk|all|autoconfirmed|edit']      = 'Semi-protected talk pages',
    ['all|talk|all|autoconfirmed|edit']      = 'Semi-protected talk pages',
    ['all|template|all|autoconfirmed|edit']  = 'Wikipedia semi-protected templates',
    ['all|template|all|autoconfirmed|edit']  = 'Wikipedia semi-protected templates',
    ['all|template|all|autoconfirmed|edit']  = 'Wikipedia semi-protected templates',
    ['all|user|all|autoconfirmed|edit']      = 'Wikipedia semi-protected user and user talk pages',
    ['all|user|all|autoconfirmed|edit']      = 'Wikipedia semi-protected user and user talk pages',
    Line 735: Line 735:
    ['all|template|all|sysop|edit']          = 'Wikipedia protected templates',
    ['all|template|all|sysop|edit']          = 'Wikipedia protected templates',
    ['all|user|all|sysop|edit']              = 'Wikipedia protected user and user talk pages',
    ['all|user|all|sysop|edit']              = 'Wikipedia protected user and user talk pages',
    ['all|module|all|all|edit']              = 'Wikipedia protected modules',
    ['all|module|all|autoconfirmed|edit']    = 'Wikipedia semi-protected modules',
    ['all|all|all|sysop|move']              = 'Wikipedia move-protected pages',
    ['all|all|all|sysop|move']              = 'Wikipedia move-protected pages',
    ['indef|all|all|sysop|move']            = 'Wikipedia indefinitely move-protected pages',
    ['indef|all|all|sysop|move']            = 'Wikipedia indefinitely move-protected pages',

    Revision as of 19:06, 12 November 2014

    Documentation for this module may be created at Module:Protection banner/config/doc

    -- This module provides configuration data for [[Module:Protection banner]].
    
    return {
    
    --------------------------------------------------------------------------------
    --
    --                                BANNER DATA
    --
    --------------------------------------------------------------------------------
    
    --[[
    -- Banner data consists of six fields:
    -- * text - the main protection text that appears at the top of protection
    --   banners.
    -- * explanation - the text that appears below the main protection text, used
    --   to explain the details of the protection.
    -- * tooltip - the tooltip text you see when you move the mouse over a small
    --   padlock icon.
    -- * link - the page that the small padlock icon links to.
    -- * alt - the alt text for the small padlock icon. This is also used as tooltip
    --   text for the large protection banners.
    -- * image - the padlock image used in both protection banners and small padlock
    --   icons.
    --
    -- The module checks in three separate tables to find a value for each field.
    -- First it checks the banners table, which has values specific to the reason
    -- for the page being protected. Then the module checks the defaultBanners
    -- table, which has values specific to each protection level. Finally, the
    -- module checks the masterBanner table, which holds data for protection
    -- templates to use if no data has been found in the previous two tables.
    --
    -- The values in the banner data can take parameters. These are specified
    -- using ${TEXTLIKETHIS} (a dollar sign preceding a parameter name
    -- enclosed in curly braces).
    --
    --                          Available parameters:
    --
    -- ${CURRENTVERSION} - a link to the page history or the move log, with the
    -- display message "current-version-edit-display" or
    -- "current-version-move-display".
    --
    -- ${EDITREQUEST} - a link to create an edit request for the current page.
    --
    -- ${EXPIRY} - the protection expiry date in the format DD Month YYYY. If
    -- protection is indefinite or is not set, this is the blank string.
    --
    -- ${EXPLANATIONBLURB} - an explanation blurb, e.g. "Please discuss any changes
    -- on the talk page; you may submit a request to ask an administrator to make
    -- an edit if it is minor or supported by consensus."
    --
    -- ${IMAGELINK} - a link to set the image to, depending on the protection
    -- action and protection level.
    --
    -- ${INTROBLURB} - the PROTECTIONBLURB parameter, plus the expiry if an expiry
    -- is set. E.g. "Editing of this page by new or unregistered users is currently 
    -- disabled until dd Month YYYY."
    --
    -- ${INTROFRAGMENT} - the same as ${INTROBLURB}, but without final punctuation
    -- so that it can be used in run-on sentences.
    --
    -- ${PAGETYPE} - the type of the page, e.g. "article" or "template".
    -- Defined in the cfg.pagetypes table.
    --
    -- ${PROTECTIONBLURB} - a blurb explaining the protection level of the page, e.g.
    -- "Editing of this page by new or unregistered users is currently disabled"
    --
    -- ${PROTECTIONDATE} - the protection date, if it has been supplied to the
    -- template.
    --
    -- ${PROTECTIONLEVEL} - the protection level, e.g. "fully protected" or
    -- "semi-protected".
    --
    -- ${PROTECTIONLOG} - a link to the protection log or the pending changes log,
    -- depending on the protection action.
    --
    -- ${TALKPAGE} - a link to the talk page. If a section is specified, links
    -- straight to that talk page section.
    --
    -- ${TOOLTIPBLURB} - uses the PAGETYPE, PROTECTIONTYPE and EXPIRY parameters to
    -- create a blurb like "This template is semi-protected", or "This article is
    -- move-protected until DD Month YYYY".
    --
    -- ${VANDAL} - links for the specified username (or the root page name)
    -- using Module:Vandal-m.
    --
    --                                 Functions
    --
    -- For advanced users, it is possible to use Lua functions instead of strings
    -- in the banner config tables. Using functions gives flexibility that is not
    -- possible just by using parameters. Functions take two arguments, the
    -- protection object and the template arguments, and they must output a string.
    --
    -- For example:
    --
    -- text = function (protectionObj, args)
    --     if protectionObj.level == 'autoconfirmed' then
    --         return 'foo'
    --     else
    --         return 'bar'
    --     end
    -- end
    --
    -- Some protection object properties and methods that may be useful:
    -- protectionObj.action - the protection action
    -- protectionObj.level - the protection level
    -- protectionObj.reason - the protection reason
    -- protectionObj.expiry - the expiry. Nil if unset, the string "indef" if set
    --     to indefinite, and the protection time in unix time if temporary.
    -- protectionObj.protectionDate - the protection date in unix time, or nil if
    --     unspecified.
    -- protectionObj.bannerConfig - the banner config found by the module. Beware
    --     of editing the config field used by the function, as it could create an
    --     infinite loop.
    -- protectionObj:isProtected - returns a boolean showing whether the page is
    --     protected.
    -- protectionObj:isTemporary - returns a boolean showing whether the expiry is
    --     temporary.
    -- protectionObj:isIncorrect - returns a boolean showing whether the protection
    --     template is incorrect.
    --]]
    
    -- The master banner data, used if no values have been found in banners or
    -- defaultBanners.
    masterBanner = {
    	text = '${INTROBLURB}',
    	explanation = '${EXPLANATIONBLURB}',
    	tooltip = '${TOOLTIPBLURB}',
    	link = '${IMAGELINK}',
    	alt = 'Page ${PROTECTIONLEVEL}'
    },
    
    -- The default banner data. This holds banner data for different protection
    -- levels.
    -- *required* - this table needs edit, move, and autoreview subtables.
    defaultBanners = {
    	edit = {},
    	move = {},
    	autoreview = {
    		autoconfirmed = {
    			alt = 'Page protected with pending changes level 1',
    			tooltip = 'All edits by unregistered and new users are subject to review',
    			image = 'Padlock-silver-light.svg'
    		},
    		default = {
    			alt = 'Page protected with pending changes level 2',
    			tooltip = 'All edits by users who are not reviewers or administrators are'
    				.. ' subject to review',
    		}
    	}
    },
    
    -- The banner data. This holds banner data for different protection reasons.
    -- In fact, the reasons specified in this table control which reasons are
    -- valid inputs to the first positional parameter.
    --
    -- There is also a non-standard "description" field that can be used for items
    -- in this table. This is a description of the protection reason for use in the
    -- module documentation.
    --
    -- *required* - this table needs edit, move, and autoreview subtables.
    banners = {
    	edit = {
    		blp = {
    			description = 'For pages protected to promote compliance with the'
    				.. ' [[Wikipedia:Biographies of living persons'
    				.. '|biographies of living persons]] policy.',
    			text = '${INTROFRAGMENT} to promote compliance with'
    				.. ' [[Wikipedia:Biographies of living persons'
    				.. "|Wikipedia's policy on the biographies"
    				.. ' of living people]].',
    			tooltip = '${TOOLTIPFRAGMENT} to promote compliance with the policy on'
    				.. ' biographies of living people',
    		},
    		dmca = {
    			description = 'For pages protected by the Wikimedia Foundation'
    				.. ' due to Digital Millennium Copyright Act takedown requests.',
    			explanation = function (protectionObj, args)
    				local ret = 'Pursuant to a rights owner notice under the Digital'
    					.. ' Millennium Copyright Act (DMCA) regarding some content'
    					.. ' in this article, the Wikimedia Foundation acted under'
    					.. ' applicable law and took down and restricted the content'
    					.. ' in question.'
    				if args.notice then
    					ret = ret .. ' A copy of the received notice can be found here: '
    						.. args.notice .. '.'
    				end
    				ret = ret .. ' For more information, including websites discussing'
    					.. ' how to file a counter-notice, please see'
    					.. " [[Wikipedia:Office actions]] and the article's ${TALKPAGE}."
    					.. "'''Do not remove this template from the article until the"
    					.. " restrictions are withdrawn'''."
    				return ret
    			end,
    			image = 'Padlock-black.svg',
    		},
    		dispute = {
    			description = 'For pages protected due to editing disputes.',
    			text = function (protectionObj, args)
    				-- Find the value of "disputes".
    				local display = 'disputes'
    				local disputes
    				if args.section then
    					disputes = string.format(
    						'[[%s:%s#%s|%s]]',
    						mw.site.namespaces[protectionObj.title.namespace].talk.name,
    						protectionObj.title.text,
    						args.section,
    						display
    					)
    				else
    					disputes = display
    				end
    
    				-- Make the blurb, depending on the expiry.
    				local msg
    				if type(protectionObj.expiry) == 'number' then
    					msg = '${INTROFRAGMENT} or until editing %s have been resolved.'
    				else
    					msg = '${INTROFRAGMENT} until editing %s have been resolved.'
    				end
    				return string.format(msg, disputes)
    			end,
    			explanation = "This protection is '''not''' an endorsement of the"
    				.. ' ${CURRENTVERSION}. ${EXPLANATIONBLURB}',
    			tooltip = '${TOOLTIPFRAGMENT} due to editing disputes',
    		},
    		mainpage = {
    			description = 'For pages protected for being displayed on the [[Main Page]].',
    			text = 'This file is currently'
    				.. ' [[Wikipedia:This page is protected|protected]] from'
    				.. ' editing because it is currently or will soon be displayed'
    				.. ' on the [[Main Page]].',
    			explanation = 'Images on the Main Page are protected due to their high'
    				.. ' visibility. Please discuss any necessary changes on the ${TALKPAGE}.'
    				.. '<br /><span style="font-size:90%;">'
    				.. "'''Administrators:''' Once this image is definitely off the Main Page,"
    				.. ' please unprotect this file, or reduce to semi-protection,'
    				.. ' as appropriate.</span>',
    		},
    		office = {
    			description = 'For pages protected by the Wikimedia Foundation.',
    			text = function (protectionObj, args)
    				local ret = 'This ${PAGETYPE} is currently under the'
    					.. ' scrutiny of the'
    					.. ' [[Wikipedia:Office actions|Wikimedia Foundation Office]]'
    					.. ' and is protected.'
    				if protectionObj.protectionDate then
    					ret = ret .. ' It has been protected since ${PROTECTIONDATE}.'
    				end
    				return ret
    			end,
    			explanation = "If you can edit this page, please discuss all changes and"
    				.. " additions on the ${TALKPAGE} first. '''Do not remove protection from this"
    				.. " page unless you are authorized by the Wikimedia Foundation to do"
    				.. " so.'''",
    			image = 'Padlock-black.svg',
    		},
    		reset = {
    			description = 'For pages protected by the Wikimedia Foundation and'
    				.. ' "reset" to a bare-bones version.',
     			text = 'This ${PAGETYPE} is currently under the'
    					.. ' scrutiny of the'
    					.. ' [[Wikipedia:Office actions|Wikimedia Foundation Office]]'
    					.. ' and is protected.',
    			explanation = function (protectionObj, args)
    				local ret = ''
    				if protectionObj.protectionDate then
    					ret = ret .. 'On ${PROTECTIONDATE} this ${PAGETYPE} was'
    				else
    					ret = ret .. 'This ${PAGETYPE} has been'
    				end
    				ret = ret .. ' reduced to a'
    				.. ' simplified, "bare bones" version so that it may be completely'
    				.. ' rewritten to ensure it meets the policies of'
    				.. ' [[WP:NPOV|Neutral Point of View]] and [[WP:V|Verifiability]].'
    				.. ' Standard Wikipedia policies will apply to its rewriting—which'
    				.. ' will eventually be open to all editors—and will be strictly'
    				.. ' enforced. The ${PAGETYPE} has been ${PROTECTIONLEVEL} while'
    				.. ' it is being rebuilt.\n\n'
    				.. 'Any insertion of material directly from'
    				.. ' pre-protection revisions of the ${PAGETYPE} will be removed, as'
    				.. ' will any material added to the ${PAGETYPE} that is not properly'
    				.. ' sourced. The associated talk page(s) were also cleared on the'
    				.. " same date.\n\n"
    				.. "If you can edit this page, please discuss all changes and"
    				.. " additions on the ${TALKPAGE} first. '''Do not override"
    				.. " this action, and do not remove protection from this page,"
    				.. " unless you are authorized by the Wikimedia Foundation"
    				.. " to do so. No editor may remove this notice.'''"
    
    				return ret
    			end,
    			image = 'Padlock-black.svg',
    		},
    		sock = {
    			description = 'For pages protected due to'
    				.. ' [[Wikipedia:Sock puppetry|sock puppetry]].',
    			text = '${INTROFRAGMENT} to prevent [[Wikipedia:Sock puppetry|sock puppets]] of'
    				.. ' [[Wikipedia:Blocking policy|blocked]] or'
    				.. ' [[Wikipedia:Banning policy|banned users]]'
    				.. ' from editing it.',