Modul:Redirect-distinguish
Videz
Mogoče bi radi ustvarili dokumentacijsko stran za ta Scribunto modul Urejevalci lahko preizkušate ta modul v peskovniku (ustvari | mirror) in testnihprimerih (ustvari). Prosimo, da dodate kategorije v /dok podstran. Podstrani te predloge. |
local mHatnote = require('Modul:Hatnote')
local mHatlist = require('Modul:Hatnote list')
local mArguments --initialize lazily
local mTableTools = require('Modul:TableTools')
local p = {}
function p.redirectDistinguish (frame)
mArguments = require('Modul:Arguments')
local args = mArguments.getArgs(frame)
return p._redirectDistinguish(args)
end
function p._redirectDistinguish(args)
if not args[1] then
return mHatnote.makeWikitextError(
'no redirect supplied',
'Predloga:Redirect-distinguish',
args.category
)
end
local redirectTitle = mw.title.new(args[1])
local currentTitle = currentTitle or mw.title.getCurrentTitle()
if
string.match(args[1], 'REDIRECT%d+') or
args[1] == 'TERM' or
currentTitle.namespace ~= 0
then
--do nothing
elseif not redirectTitle or not redirectTitle.exists then
args[1] = args[1] .. '[[Kategorija:Manjkajoče preusmeritve]]'
elseif not redirectTitle.isRedirect then
-- odstranjeno :en
end
if not args[2] then
return mHatnote.makeWikitextError(
'no page to be distinguished supplied',
'Predloga:Redirect-distinguish',
args.category
)
end
args = mTableTools.compressSparseArray(args)
--Assignment by removal here makes for convenient concatenation later
local redirect = table.remove(args, 1)
local text = string.format(
'"%s" se preusmerja sem. Ne zamenjujte tega s/z %s.',
redirect,
mHatlist.orList(args, true)
)
return mHatnote._hatnote(text)
end
return p