Module:Redirect hatnote: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Updated module from sandbox with support for multiple redirect arguments.
(check category-space hatnotes too)
(Updated module from sandbox with support for multiple redirect arguments.)
Line 8:
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local checkTypeMulti = libraryUtil.checkTypeMulti
 
local p = {}
Line 35 ⟶ 36:
end
 
--Get table of redirects
-- Return an error if no redirect was specified.
local redirectnumRedirects = tonumber(frame.args[1]) or 1
if notlocal redirect then= {}
for i = 1, numRedirects do
return mHatnote.makeWikitextError(
'-- Return an error if no redirect was specified',.
if not args[i] then
'Template:Redirect#Errors',
return mHatnote.makeWikitextError(
args.category
-- Return an error if 'no redirect was specified.',
)
'Template:Redirect#Errors',
args.category
)
end
redirect[i] = args[i]
end
 
 
-- Create the data table.
local data = {}
local iArg = 0numRedirects - 1
local iData = 1
repeat
Line 94 ⟶ 101:
local pages = useTable.pages or {}
if isFirst then
redirect = redirect[1] or error(
'isFirst was set in formatUseTable, but no redirect was supplied',
2
Line 114 ⟶ 121:
-- Validate the input. Don't bother checking currentTitle, redirectTitle or
-- targetTitle, as they are only used in testing.
checkTypecheckTypeMulti('_redirect', 1, redirect, {'string', 'table'})
-- String type can stay valid until extant use-cases are checked-for and
-- updated, but we'll coerce them to table for now
if type(redirect) == 'string' then redirect = {redirect} end
checkType('_redirect', 2, data, 'table', true)
checkType('_redirect', 3, options, 'table', true)
Line 123 ⟶ 133:
-- Generate the text.
local text = {}
local formattedRedirect = {}
text[#text + 1] = '"' .. redirect .. '" redirects here.'
for k,v in pairs(redirect) do
formattedRedirect[k] = '"' .. v .. '"'
end
text[#text + 1] = mw.text.listToText(formattedRedirect) .. ' ' .. (#redirect == 1 and 'redirects' or 'redirect') .. ' here.'
text[#text + 1] = formatUseTable(data[1] or {}, true, redirect)
if data[1] and data[1].use and data[1].use ~= 'other uses' then
Line 132 ⟶ 146:
text = table.concat(text, ' ')
local categoryTable = {}
-- Generate the tracking category.
--add categories to a table by index, so we don't get duplicates
-- We don't need a tracking category if the template invocation has been
function addCategory(cat)
-- copied directly from the docs, or if we aren't in mainspace or category-space.
if cat and cat ~= '' then
local category
category = category and categoryTable[string.format('[[Category:%s]]', categorycat)] or= ''true
if not redirect:find('^REDIRECT%d*$') and redirect ~= 'TERM' --
and currentTitle.namespace == 0 or currentTitle.namespace == 14
then
redirectTitle = redirectTitle or getTitle(redirect)
if not redirectTitle or not redirectTitle.exists then
category = 'Missing redirects'
elseif not redirectTitle.isRedirect then
category = 'Articles with redirect hatnotes needing review'
else
local mRedirect = require('Module:Redirect')
local target = mRedirect.getTarget(redirectTitle)
targetTitle = targetTitle or target and getTitle(target)
if targetTitle and targetTitle ~= currentTitle then
category = 'Articles with redirect hatnotes needing review'
end
end
end
category = category and string.format('[[Category:%s]]', category) or ''
 
-- Generate the options to pass to [[Module:Hatnote]].
local mhOptions = {}
for k,v in pairs(redirect) do
if currentTitle.namespace == 0
-- Generate the tracking category.
and redirectTitle and redirectTitle.namespace ~= 0
-- We don't need a tracking category if the template invocation has been
then
-- copied directly from the docs, or if we aren't in mainspacemain- or category-space.
-- We are on a mainspace page, and the hatnote starts with something
if not redirectv:find('^REDIRECT%d*$') and redirectv ~= 'TERM' --
-- like "Wikipedia:Foo redirects here", so automatically label it as a
and currentTitle.namespace == 0 or currentTitle.namespace == 14
-- self-reference.
then
mhOptions.selfref = true
redirectTitle = redirectTitle or getTitle(redirectv)
else
if not redirectTitle or not redirectTitle.exists then
mhOptions.selfref = options.selfref
category = addCategory('Missing redirects')
elseif not redirectTitle.isRedirect then
category = addCategory('Articles with redirect hatnotes needing review')
else
local mRedirect = require('Module:Redirect')
local target = mRedirect.getTarget(redirectTitle)
targetTitle = targetTitle or target and getTitle(target)
if targetTitle and targetTitle ~= currentTitle then
category = addCategory('Articles with redirect hatnotes needing review')
end
end
end
 
-- Generate the options to pass to [[Module:Hatnote]].
if currentTitle.namespace == 0 and not mhOptions.selfref
and redirectTitle and redirectTitle.namespace ~= 0
then
-- We are on a mainspace page, and the hatnote starts with something
-- like "Wikipedia:Foo redirects here", so automatically label it as a
-- a self-reference.
mhOptions.selfref = true
else
mhOptions.selfref = options.selfref
end
end
--concatenate all the categories
local category = ''
for k,v in pairs(categoryTable) do
category = category .. k
end
 
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.

Navigation menu