Module:RfD
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. |
Usage[edit]
{{#invoke:RfD|function_name}}
require('Module:No globals')
local p = {}
local getTargetFromText = require('Module:Redirect').getTargetFromText
local messageBox
local mboxText = "%s'''The purpose of this redirect is currently being discussed by the Wikipedia community."
.. " The outcome of the discussion may result in a change of this page, or possibly its deletion in accordance with Wikipedia's [[Wikipedia:Deletion policy|deletion policy]].''' <br />"
.. " Please share your thoughts on the matter at '''[[Wikipedia:Redirects for discussion/Log/%s %s %s#%s|this redirect's entry]]''' on the [[Wikipedia:Redirects for discussion|Redirects for discussion]] page.<br />"
.. " '''Click on the link below''' to go to the current destination page.<br />"
.. "<small>Please notify the good-faith creator and any main contributors of the redirect by placing <code>{{[[Wikipedia:Substitution|subst]]:[[Template:RFDNote|RFDNote]]|%s}} ~~~~</code> on their talk page.</small>"
local errorMessage = '<span class="error">Error: Unable to determine the redirect\'s target. If this page is a soft redirect, then this error can be ignored. Otherwise, please make sure that [[WP:RFD#HOWTO|the instructions for placing this tag]] were followed correctly, in particular that the redirect\'s old content was passed in the <code>content</code> parameter.</span><br />'
local deleteReason = '[[Wikipedia:Redirects for discussion]] debate closed as delete'
local messageOnTransclusions = '<div class="boilerplate metadata plainlinks" id="rfd-t" style="'
.. 'background-color: transparent; padding: 0; font-size:xx-small; color:#000000; text-align:'
.. 'center; border-bottom:1px solid #AAAAAA;">‹The [[Wikipedia:Template namespace|template]]'
.. ' below is included via a [[Wikipedia:Redirect|redirect]] that has been proposed for deletion. '
.. 'See [[Wikipedia:redirects for discussion|redirects for discussion]] to help reach a consensus'
.. ' on what to do.›</div >'
local function makeRfdNotice(args)
local currentTitle = mw.title.getCurrentTitle()
if not messageBox then
messageBox = require('Module:Message box')
end
local discussionPage = args[1] and mw.text.trim(args[1])
if discussionPage == '' then
discussionPage = nil
end
local target = getTargetFromText(args.content)
local isError = not target or not mw.title.new(target)
local category
if args.category then
category = args.category
elseif args.month and args.year then
category = string.format('[[Category:Redirects for discussion from %s %s|%s]][[Category:All redirects for discussion|%s]]', args.month, args.year, currentTitle.text, currentTitle.text)
else
category = string.format('[[Category:Redirects for discussion|%s]][[Category:All redirects for discussion|%s]]', currentTitle.text, currentTitle.text)
end
return string.format('%s<span id="delete-reason" style="display:none;">%s</span>%s%s',
messageBox.main('mbox', {
type = 'delete',
image = 'none',
text = string.format(mboxText, isError and errorMessage or '', args.year, args.month, args.day, discussionPage or currentTitle.prefixedText, mw.text.nowiki(currentTitle.prefixedText))
}),
mw.uri.encode(deleteReason),
category,
isError and '[[Category:RfD errors]]' or ''
)
end
p[''] = function(frame)
if not frame.args.content or mw.text.trim(frame.args.content) == '' then
return '<span class="error">Error: No content was provided. The original text of the page (the #REDIRECT line and any templates) must be placed inside of the content parameter.[[Category:RfD errors]]</span>'
end
local pframe = frame:getParent()
if pframe:preprocess('<includeonly>1</includeonly>') == '1' then
-- We're being transcluded, so display the content of our target.
local target = getTargetFromText(frame.args.content)
if target then
target = mw.title.new(target)
end
if target and not target.isRedirect and target ~= pframe:getTitle() then
-- We should actually be calling expandTemplate on the grandparent rather than on the parent, but we can't do that yet
-- Since we don't have grandparent access, though, it means the thing we're calling doesn't either, so it doesn't really matter yet
local parsedTarget = pframe:expandTemplate{title = ':' .. target.prefixedText, args = pframe.args}
if frame.args.showontransclusion and not mw.isSubsting() then
return messageOnTransclusions .. parsedTarget
else
return parsedTarget
end
end
end
-- We're not being transcluded, or we can't figure out how to display our target.
-- Display the RfD banner.
return makeRfdNotice(frame.args) .. '\n' .. frame.args.content
end
local substText = "{{<includeonly>safesubst:</includeonly>#invoke:RfD||%s%s|%s%s\n"
.. "<!-- The above content is generated by {{subst:rfd}}. -->\n<!-- End of RFD message. Don't edit anything above here, but feel free to edit below here. -->|content=\n%s\n"
.. "<!-- Don't add anything after this line. -->\n}}"
local dateText = 'month = %B\n|day = %e\n|year = %Y\n|time = %R\n|timestamp = %Y%m%d%H%M%S'
-- called during subst when the template is initially placed on the page
function p.main(frame)
local titleText
local pframe = frame:getParent()
local pargs = pframe.args
local retval = string.format(substText, pargs.FULLPAGENAME or pargs[1] or '', pargs.showontransclusion and '|showontransclusion=1' or '', os.date(dateText), pframe:getTitle() == mw.title.getCurrentTitle().prefixedText and '|category=' or '', pargs.content or '')
if mw.isSubsting() then
return retval
else
return frame:expandTemplate{title = 'Template:Error:must be substituted', args = {'rfd'}} .. frame:preprocess(retval)
end
end
return p