Module:Redirect hatnote: Difference between revisions
Jump to navigation
Jump to search
m 1 revision imported |
m 1 revision imported |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 68: | Line 68: | ||
-- Functionality for adding categories | -- Functionality for adding categories | ||
local categoryTable = {} | local categoryTable = {} | ||
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 | ||
Line 76: | Line 76: | ||
--Generate tracking categories | --Generate tracking categories | ||
local mhOptions = {} | local mhOptions = {} | ||
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 | ||
Line 83: | Line 82: | ||
and currentTitle.namespace == 0 or currentTitle.namespace == 14 | and currentTitle.namespace == 0 or currentTitle.namespace == 14 | ||
then | then | ||
redirectTitle = redirectTitle or getTitle(v) | |||
if not | if not redirectTitle or not redirectTitle.exists then | ||
addCategory('Missing redirects') | addCategory('Missing redirects') | ||
elseif not | elseif not redirectTitle.isRedirect then | ||
addCategory('Articles with redirect hatnotes needing review') | |||
else | else | ||
local target = targetTitle or | local mRedirect = require('Module:Redirect') | ||
if | local target = mRedirect.getTarget(redirectTitle) | ||
targetTitle = targetTitle or target and getTitle(target) | |||
if targetTitle and targetTitle ~= currentTitle then | |||
addCategory('Articles with redirect hatnotes needing review') | addCategory('Articles with redirect hatnotes needing review') | ||
end | end | ||
Line 102: | Line 99: | ||
-- 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 redirectTitle and redirectTitle.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 | ||
Line 117: | Line 114: | ||
category = category .. k | category = category .. k | ||
end | end | ||
mhOptions.icon = 'WikimediaUI-ArticleDisambiguation-ltr.svg' | |||
return mHatnote._hatnote(text, mhOptions) .. category | return mHatnote._hatnote(text, mhOptions) .. category |