Module:Lua banner: Difference between revisions

use 0 for protection level of current page if it does not exist yet (for preview while creating a template), per Template talk:Lua#Lua error when a template page does not exist yet
m (1 revision imported)
imported>Johnuniq
(use 0 for protection level of current page if it does not exist yet (for preview while creating a template), per Template talk:Lua#Lua error when a template page does not exist yet)
Line 36:
end
local moduleList = mList.makeList('bulleted', moduleLinks)
boxArgs.text = 'This template uses [[Wikipedia:Lua|Lua]]:\n' .. moduleList
(mw.title.getCurrentTitle():inNamespaces(828,829) and 'module' or 'template') ..
' uses [[Wikipedia:Lua|Lua]]:\n' .. moduleList
end
boxArgs.type = 'notice'
Line 48 ⟶ 50:
return ''
end
 
local cats = {}
 
-- Error category
if #modules < 1 then
cats[#cats + 1] = 'Lua templates with errors'
end
 
-- Lua templates category
titleObj = titleObj or mw.title.getCurrentTitle()
Line 64 ⟶ 66:
testcases = true
}
if titleObj.namespace == 10
and not subpageBlacklist[titleObj.subpageText]
then
Line 86 ⟶ 88:
sysop = 4
}
local currentProt = titleObj.protectionLevels["edit"][1]
if titleObj.id ~= 0 then
-- id is 0 (page does not exist) if am previewing before creating a template.
currentProt = titleObj.protectionLevels["edit"][1]
end
if currentProt == nil then currentProt = 0 else currentProt = protLevels[currentProt] end
for i, module in ipairs(modules) do
Line 97 ⟶ 103:
end
end
 
for i, cat in ipairs(cats) do
cats[i] = string.format('[[Category:%s]]', cat)
Anonymous user