Modul:Redirect hatnote: Perbedaan antara revisi
Updated from sandbox: Migrated p._quote to Module:Hatnote
dw>Farras (fix) |
dw>Nihiltres (Updated from sandbox: Migrated p._quote to Module:Hatnote) |
||
| Baris 13: | Baris 13: | ||
local p = {} | local p = {} | ||
-------------------------------------------------------------------------------- | |||
-- Helper functions | |||
-------------------------------------------------------------------------------- | |||
local function getTitle(...) | local function getTitle(...) | ||
--Calls mw.title.new and returns either a title object, or nil on error | |||
local success, titleObj = pcall(mw.title.new, ...) | local success, titleObj = pcall(mw.title.new, ...) | ||
return success and titleObj or nil | |||
end | end | ||
-------------------------------------------------------------------------------- | |||
-- Main functions | |||
-------------------------------------------------------------------------------- | |||
function p.redirect(frame) | function p.redirect(frame) | ||
| Baris 59: | Baris 64: | ||
local formattedRedirect = {} | local formattedRedirect = {} | ||
for k,v in pairs(redirect) do | for k,v in pairs(redirect) do | ||
formattedRedirect[k] = | formattedRedirect[k] = mHatnote.quote(v) | ||
end | end | ||
local text = { | local text = { | ||
mHatList.andList(formattedRedirect) .. ' ' .. (#redirect == 1 and ' | mHatList.andList(formattedRedirect) .. ' ' .. (#redirect == 1 and 'redirects' or 'redirect') .. ' here.', | ||
mHatList._forSee(args, #redirect + 1, {title = redirect[1], extratext = args.text}) | mHatList._forSee(args, #redirect + 1, {title = redirect[1], extratext = args.text}) | ||
} | } | ||
| Baris 68: | Baris 73: | ||
-- Functionality for adding categories | -- Functionality for adding categories | ||
local categoryTable = {} | local categoryTable = {} | ||
function addCategory(cat) | local function addCategory(cat) | ||
if cat and cat ~= '' then | if cat and cat ~= '' then | ||
-- Add by index to avoid duplicates | -- Add by index to avoid duplicates | ||
categoryTable[string.format('[[ | categoryTable[string.format('[[Category:%s]]', cat)] = true | ||
end | end | ||
end | end | ||
--Generate tracking categories | --Generate tracking categories | ||
local mhOptions = {} | local mhOptions = {} | ||
local redirTitle | |||
for k,v in pairs(redirect) do | for k,v in pairs(redirect) do | ||
-- We don't need a tracking category if the template invocation has been | -- We don't need a tracking category if the template invocation has been | ||
| Baris 82: | Baris 88: | ||
and currentTitle.namespace == 0 or currentTitle.namespace == 14 | and currentTitle.namespace == 0 or currentTitle.namespace == 14 | ||
then | then | ||
redirTitle = redirectTitle or getTitle(v) | |||
if not | if not redirTitle or not redirTitle.exists then | ||
addCategory('Missing redirects') | addCategory('Missing redirects') | ||
elseif not | elseif not redirTitle.isRedirect then | ||
addCategory('Articles with redirect hatnotes needing review') | if string.find(redirTitle:getContent(), '#invoke:RfD') then | ||
addCategory('Articles with redirect hatnotes impacted by RfD') | |||
else | |||
addCategory('Articles with redirect hatnotes needing review') | |||
end | |||
else | else | ||
local target = targetTitle or redirTitle.redirectTarget | |||
local target = | if target and target ~= currentTitle then | ||
addCategory('Articles with redirect hatnotes needing review') | addCategory('Articles with redirect hatnotes needing review') | ||
end | end | ||
| Baris 99: | Baris 107: | ||
-- Generate the options to pass to [[Module:Hatnote]]. | -- Generate the options to pass to [[Module:Hatnote]]. | ||
if currentTitle.namespace == 0 and not mhOptions.selfref | if currentTitle.namespace == 0 and not mhOptions.selfref | ||
and | and redirTitle and redirTitle.namespace ~= 0 | ||
then | then | ||
-- We are on a mainspace page, and the hatnote starts with something | -- We are on a mainspace page, and the hatnote starts with something | ||