Jump to content

Module:Sandbox/Jackmcbarn

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Jackmcbarn (talk | contribs) at 19:21, 2 August 2020 (Reverted edits by Jackmcbarn (talk) to last version by Le Deluge). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local getTarget = require('Module:Redirect').getTarget
local p = {}

local function pagetype(nsText)
	return nsText == '' and 'articles' or (mw.ustring.lower(nsText) .. ' pages')
end

function p.main(frame)
	local currentTitle = mw.title.getCurrentTitle()
	local target = getTarget(currentTitle)
	if target then
		local currentNsText, targetNsText = currentTitle.nsText, mw.title.new(target).nsText
		if currentNsText ~= targetNsText then
			return string.format('[[:Category:Cross-namespace redirects from %s]][[:Category:Cross-namespace redirects to %s]]', pagetype(currentNsText), pagetype(targetNsText))
		end
	end
	return '[[:Category:Pages incorrectly tagged as cross-namespace redirects]]'
end

return p