Editing Module:High-use
Appearance
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 18: | Line 18: | ||
if count == nil then | if count == nil then | ||
if frame.args[1] == "risk" then | if frame.args[1] == "risk" then | ||
return "a very large number of" | |||
else | else | ||
return "many" | |||
end | end | ||
else | else | ||
Line 52: | Line 52: | ||
return return_value | return return_value | ||
end | end | ||
-- Actions if there is a large (greater than or equal to 100,000) transclusion count | -- Actions if there is a large (greater than or equal to 100,000) transclusion count | ||
function p.risk(frame) | function p.risk(frame) | ||
if frame.args[1] == "risk" then | if frame.args[1] == "risk" then | ||
return "risk" | |||
else | else | ||
local count = _fetch(frame) | local count = _fetch(frame) | ||
if count and count >= 100000 then | if count and count >= 100000 then | ||
return "risk" | |||
end | |||
end | end | ||
return | return "" | ||
end | end | ||
Line 86: | Line 88: | ||
end | end | ||
-- This retrieves the project URL automatically to simplify | -- This retrieves the project URL automatically to simplify localization. | ||
local templateCount = ('on [https://linkcount.toolforge.org/ | local templateCount = ('on [https://linkcount.toolforge.org/?project=%s&page=%s#transclusions %s pages]'):format( | ||
mw.title.getCurrentTitle():fullUrl():gsub('//(.-)/.*', '%1'), | mw.title.getCurrentTitle():fullUrl():gsub('//(.-)/.*', '%1'), | ||
mw.uri.encode(title.fullText), p.num(frame, count)) | mw.uri.encode(title.fullText), p.num(frame, count)) | ||
Line 146: | Line 148: | ||
local nocat = frame:getParent().args['nocat'] or frame.args['nocat'] | local nocat = frame:getParent().args['nocat'] or frame.args['nocat'] | ||
local categorise = (nocat == '' or not yesno(nocat)) | local categorise = (nocat == '' or not yesno(nocat)) | ||
if categorise then | if categorise and not mw.title.getCurrentTitle().isRedirect then | ||
epilogue = frame:preprocess('{{Sandbox other||{{#switch:{{#invoke:Effective protection level|{{#switch:{{NAMESPACE}}|File=upload|#default=edit}}|{{FULLPAGENAME}}}}|sysop|templateeditor|interfaceadmin=|#default=[[Category:Pages used in system messages needing protection]]}}}}') | epilogue = frame:preprocess('{{Sandbox other||{{#switch:{{#invoke:Effective protection level|{{#switch:{{NAMESPACE}}|File=upload|#default=edit}}|{{FULLPAGENAME}}}}|sysop|templateeditor|interfaceadmin=|#default=[[Category:Pages used in system messages needing protection]]}}}}') | ||
end | end |