Modül:Redirect-distinguish
Görünüm
Modül belgelemesi[oluştur]
Bu modül şu Lua modüllerini kullanıyor: |
local mHatnote = require('Modül:İlknot')
local mHatlist = require('Modül:İlknot liste')
local mArguments --initialize lazily
local mTableTools = require('Modül:Tablo araçları')
local p = {}
function p.redirectDistinguish (frame)
mArguments = require('Modül:Bağımsız değişkenler')
local args = mArguments.getArgs(frame)
return p._redirectDistinguish(args)
end
function p._redirectDistinguish(args)
if not args[1] then
return mHatnote.makeWikitextError(
'yönlendirme sağlanmadı',
'Şablon: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] .. '[[Kategori:Eksik yönlendirmeler]]'
elseif not redirectTitle.isRedirect then
if string.find(redirectTitle:getContent(), '#invoke:RfD') then
args[1] = args[1] ..
'[[Kategori:RfD tarafından etkilenen yönlendirme ilknotlarına sahip makaleler]]'
else
args[1] = args[1] ..
'[[Kategori:İnceleme gerektiren yönlendirme ilknotları içeren makaleler]]'
end
end
if not args[2] then
return mHatnote.makeWikitextError(
'yönlendirilecek bir sayfa verilmedi',
'Şablon: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" buraya yönlendiriliyor. %s ile karıştırılmamalıdır.',
redirect,
mHatlist.orList(args, true)
)
return mHatnote._hatnote(text)
end
return p