Content deleted Content added
The Earwig (talk | contribs) reapply Special:Diff/986287625 |
Newslinger (talk | contribs) Close added "p" tags |
||
(22 intermediate revisions by 9 users not shown) | |||
Line 7:
local messageBox = require('Module:Message box')
-- Functions
local function tableContainsValue(needle, haystack)
Line 34 ⟶ 36:
end
-- Topic class
Topic.__index = Topic
function Topic.new(topicCode, args)
local obj = {}
obj._args = args
obj._topicData = _getTopicData(topicCode)
return setmetatable(obj, Topic)
end
function Topic:get(arg)
return self._topicData[arg]
end
function Topic:exists()
return ((self._topicData ~= nil) and (self._topicData ~= false))
end
function Topic:hasGlobalRestriction(type)
return self._topicData.restrictions[type]
end
function Topic:hasLocalRestriction(type)
local localRestriction = self._args[type]
if localRestriction then
if mw.ustring.find(type, '^restriction') ~= nil then
return true
else
return yesno(localRestriction)
end
else
return false
end
end
function Topic:hasRestriction(type)
return self:hasGlobalRestriction(type) or self:hasLocalRestriction(type)
end
function Topic:hasRestrictions(arr)
for _, v in ipairs(arr) do
if self:hasRestriction(v) then
return true
end
end
return false
end
function Topic:hasAnyRevertRestrictions()
return self:hasRestrictions({'1rr', 'consensusrequired', 'brd'})
end
function Topic:hasAnyRestrictions()
return self:hasAnyRevertRestrictions() or self:hasRestrictions({'restriction1'})
end
function Topic:getCustomRestrictions()
local customRestrictions = {}
local ri = 1
local checkArr = self._topicData.restrictions
local breakNext = false
while true do
if checkArr['restriction'..ri] then
table.insert(customRestrictions, checkArr['restriction'..ri])
ri = ri + 1
else
if breakNext then
break
else
ri = 1
checkArr = self._args
breakNext = true
end
end
end
return customRestrictions
end
-- End classes
-- This function builds a talk notice
Line 51 ⟶ 125:
--
-- @param frame
-- @param
-- @param args arguments passed to wrapper template
-- @returns String representation of notice
local function buildTalkNotice(frame,
local type = args['type'] or args[2] or 'mini'
local out = mw.html.create('')
local hasRestrictions = topic:hasAnyRestrictions()
local hasRevertRestrictions = topic:hasAnyRevertRestrictions()
if hasRestrictions then
type = 'long' -- force long displaywhere custom restrictions are applicable
out
:tag('span')
:css('font-size', '120%')
:wikitext("'''WARNING: ACTIVE COMMUNITY SANCTIONS'''")
:done()
:tag('p')
:wikitext("The article [[:{{SUBJECTPAGENAME}}]], along with other pages relating to "..
else
out
:tag('p')
:wikitext("<strong>The use of the [[
end
Line 92 ⟶ 153:
local restrictionList = mw.html.create('ul')
-- 1RR
if
restrictionList
:tag('li')
:wikitext("'''Limit of one revert in 24 hours:''' This article is under [[Wikipedia:Edit warring#Other revert rules|WP:1RR]] (one [[Wikipedia:Reverting|revert]] per editor per article ''per 24-hour period'') [[Category:Wikipedia pages subject to a one-revert restriction]]")
end
-- Text for boilerplate/predefined restrictions
if
restrictionList
:tag('li')
:wikitext("'''Consensus required:''' All editors must obtain [[WP:Consensus|consensus]] on the talk page of this article before reinstating ''any edits that have been challenged (via reversion).'' This includes making edits similar to the ones that have been challenged. If in doubt, do not make the edit. [[Category:Wikipedia pages subject to a consensus required restriction]]")
end
if
restrictionList
:tag('li')
:wikitext("'''24-hr [[Wikipedia:BOLD, revert, discuss cycle|BRD cycle]]:''' If a change you make to this article is reverted, you may not reinstate that change unless you discuss the issue on the talk page and wait 24 hours (from the time of the original edit). Partial reverts/reinstatements that reasonably address objections of other editors [[Wikipedia:BOLD, revert, discuss cycle#WP:BRR|are preferable]] to wholesale reverts. [[Category:Wikipedia pages subject to an enforced BRD restriction]]")
end
local customRestrictions = topic:getCustomRestrictions()
for _, v in ipairs(customRestrictions) do
restrictionList
:
end
if hasRestrictions then
out:node(restrictionList)
Line 130 ⟶ 186:
out
:tag('p')
:wikitext("
-- Further info box
Line 143 ⟶ 199:
local enforcementProcedures = mw.html.create('ul')
enforcementProcedures
:tag('li')
:wikitext("Violations of any restrictions " .. (hasRevertRestrictions and "(excluding 1RR/reverting violations) " or "") .. "and other conduct issues should be reported to the [[Wikipedia:Administrators' noticeboard/Incidents|administrators' incidents noticeboard]]." .. (hasRevertRestrictions and " Violations of revert restrictions should be reported to the [[Wikipedia:Administrators' noticeboard/Edit warring|administrators' edit warring noticeboard]]." or ""))
:done()
:tag('li')
:wikitext("Editors who violate any listed restrictions may be blocked by any uninvolved administrator, even on a first offense.")
:done()
:tag('li')
:wikitext("An editor must be [[Wikipedia:Contentious topics#Awareness of contentious topics|aware]] before they can be sanctioned.")
:allDone()
furtherInfo:node(enforcementProcedures)
Line 189 ⟶ 236:
local collapsed = frame:expandTemplate{ title = 'collapse', args = {
tostring(furtherInfo),
['bg'] = '#EEE8AA'
}}
Line 201 ⟶ 248:
local box = messageBox.main( 'tmbox', {
type = '
image = type == 'long' and '[[File:Commons-emblem-issue.svg|50px]]' or '[[
text = frame:preprocess(tostring(out))
})
Line 212 ⟶ 259:
--
-- @param frame
-- @param
-- @returns String representation of notice
local function buildAlert(frame,
local hasRestrictions = topic:hasAnyRestrictions()
local restrictionIntro
local restrictionList
if hasRestrictions then
restrictionIntro = mw.html.create('p')
restrictionIntro:wikitext("Additionally, the following restriction(s) apply to this topic area:")
restrictionList = mw.html.create('ul')
if topic:hasRestriction('1rr') then
restrictionList
:tag('li')
:wikitext("All articles in this topic area are under [[Wikipedia:Edit warring#Other revert rules|WP:1RR]] (a limit of one [[Wikipedia:Reverting|revert]] per editor per article per 24-hour period). When in doubt, assume an edit is related and so is a revert. Clear vandalism of whatever origin may be reverted without restriction. Reverts of edits made by anonymous IP editors that are not vandalism are exempt from 1RR but are subject to the usual rules on edit warring. Editors who otherwise violate this 1RR restriction may be blocked without warning by any uninvolved administrator, even on a first offence.")
end
local customRestrictions = topic:getCustomRestrictions()
for _, v in ipairs(customRestrictions) do
restrictionList
:tag('li')
:wikitext(v)
end
end
local out = mw.html.create('table')
:addClass('
:cssText("border: 1px solid #AAA; background-color: #E5F8FF; padding: 0.5em; width: 100%; margin-bottom: 1em")
out
Line 226 ⟶ 297:
:done()
:tag('td')
:tag('p')
:wikitext("This is a standard message to notify contributors about an administrative ruling in effect. ''It does '''not''' imply that there are any issues with your contributions to date.''")
:done()
:
:wikitext("You have shown interest in ".. topic:get('scope') ..". Due to past disruption in this topic area, the community has authorised uninvolved administrators to impose [[Wikipedia:Contentious topics|contentious topics restrictions]]—such as [[Wikipedia:Editing restrictions#Types of restrictions|editing restrictions]], [[Wikipedia:Banning policy#Types of bans|bans]], or [[WP:Blocking policy|blocks]]—on editors who do not strictly follow [[Wikipedia:List of policies|Wikipedia's policies]], expected [[Wikipedia:Etiquette|standards of behaviour]], or the [[Wikipedia:Contentious topics#Standard set|page-specific restrictions]], when making edits related to the topic.")
:done()
:node(restrictionIntro)
:node(restrictionList)
:tag('p')
:wikitext("For additional information, please see the [[".. topic:get('wikilink') .."|guidance on these sanctions]]. If you have any questions, or any doubts regarding what edits are appropriate, you are welcome to discuss them with me or any other editor." .. (sig and ' '..sig or ''))
:done()
return frame:preprocess(tostring(out))
Line 236 ⟶ 313:
-- Builds an edit notice
local function buildEditNotice(frame,
local enHeader = mw.html.create('')
local restrictionMsgs = {}
local expiry = args['expiry'] or 'indefinite'
local redirect = args['redirect'] or ''
if
table.insert(restrictionMsgs, "
end
if
table.insert(restrictionMsgs, "Editors must not reinstate any challenged edits (via reversion)
end
local customRestrictions = topic:getCustomRestrictions()
for _, v in ipairs(customRestrictions) do
table.insert(restrictionMsgs, v)
end
if #restrictionMsgs == 0 then
return frame:preprocess(syntaxHelp())
else
local list = mw.html.create('ul')
for _,v in ipairs(restrictionMsgs) do
:
:wikitext(
:done()
end
enHeader:wikitext(tostring(list))
end
Line 278 ⟶ 348:
enText
:tag('p')
:wikitext("<strong>Breaching the restriction on this page may result in a block or other sanctions.</strong> In addition, please note that because this topic area has been disrupted in the past, the community has [["..topic:get('wikilink').."|authorised]] administrators to take [[Wikipedia:Contentious topics|appropriate steps]] to ensure the smooth running of all pages related to "..topic:get('scope')..". Conduct which does not adhere to our policies and [[Wikipedia:Etiquette|standards of behaviour]] may be met with sanctions. Please edit carefully.")
:done()
local editnotice = frame:expandTemplate{ title = 'editnotice', args = {
expiry =
headerstyle = "font-size: 120%;",
style = "background: ivory;",
image = "Commons-emblem-issue.svg",
imagesize = "50px",
redirect = tostring(redirect),
header = tostring(enHeader),
text = tostring(enText)
Line 316 ⟶ 380:
})
local topic =
if not topic:exists() then
return frame:preprocess(syntaxHelp())
end
Line 338 ⟶ 399:
})
local topic =
if not topic:exists() then
return frame:preprocess(syntaxHelp())
elseif not topic
return frame:preprocess('<span class="error">This topic area is not designated as a contentious topic. Alert is not required.</span>')
end
Line 355 ⟶ 415:
wrappers = {
'Template:Gs/editnotice',
'Template:Gs/editnotice/sandbox'
}
})
local topic =
if not topic:exists() then
return frame:preprocess(syntaxHelp())
elseif not topic:hasAnyRestrictions() then
return frame:preprocess('<span class="error">Page sanctions are not authorised for this topic area. Edit notice is not required.</span>[[Category:Pages with sanctions errors]]')
end
Line 382 ⟶ 441:
:css('font-size', '9pt')
:css('background', 'transparent')
:css('color', 'inherit')
-- Headers
Line 434 ⟶ 494:
else
return "" -- ?
end
end
-- Returns true if the given topic name is a valid topic area
function p.checkIfValidTopic(topicName)
local topic = Topic.new(topicName, nil)
if topic:exists() then
return true
else
return false
end
end
|