Module:Lua banner: Difference between revisions

m
1 revision imported: Import missing dependencies for citation templates from Wikipedia
(Detect if on module page)
 
m (1 revision imported: Import missing dependencies for citation templates from Wikipedia)
 
(2 intermediate revisions by 2 users not shown)
Line 36:
end
local moduleList = mList.makeList('bulleted', moduleLinks)
local title = mw.title.getCurrentTitle()
boxArgs.text = 'This ' ..
if title.subpageText == "doc" then
(mw.title.getCurrentTitle():inNamespaces(828,829) and 'module' or 'template') ..
title = title.basePageTitle
' uses [[Wikipedia:Lua|Lua]]:\n' .. moduleList
end
if title.contentModel == "Scribunto" then
boxArgs.text = 'This module depends on the following other modules:' .. moduleList
else
boxArgs.text = 'This template uses [[Wikipedia:Lua|Lua]]:\n' .. moduleList
end
end
boxArgs.type = 'notice'
Line 50 ⟶ 56:
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 66 ⟶ 72:
testcases = true
}
if titleObj.namespace == 10
and not subpageBlacklist[titleObj.subpageText]
then
Line 88 ⟶ 94:
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 99 ⟶ 109:
end
end
 
for i, cat in ipairs(cats) do
cats[i] = string.format('[[Category:%s]]', cat)