Module:Lua banner
Documentation Module[créer]
You might want to créer a documentation page for this Scribunto module. Les éditeurs peuvent tester ce module dans sandbox (créer | miroir) et testcases (créer). Sous-pages de ce module. |
local mMessageBox = require('Module:Message box')
local mList = require('Module:List')
local yesno = require('Module:Yesno')
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local p = {}
function p.main(frame)
local origArgs = frame:getParent().args
local args = {}
for k, v in pairs(origArgs) do
v = v:match('^%s*(.-)%s*$')
if v ~= '' then
args[k] = v
end
end
return p._main(args)
end
function p._main(args)
local modules = args
local box = p.renderBox(modules)
local trackingCategories = p.renderTrackingCategories(args, modules)
return box..trackingCategories
end
function p.renderBox(modules)
local boxArgs = {}
if #modules < 1 then
boxArgs.text = [[<strong style="color:red">ERREUR : Aucun module spécifié</strong>]]
else
local moduleLinks = {}
for i, module in ipairs(modules) do
moduleLinks[i] = string.format('[[:%s]]', module)
end
local moduleList = mList.makeList('bulleted', moduleLinks)
boxArgs.text = 'Utilise Lua:\n' .. moduleList
end
boxArgs.type = 'notice'
boxArgs.small = true
boxArgs.image = '[[File:Lua-logo-nolabel.svg|30px|alt=Lua logo|link=Wikipedia:Lua]]'
return mMessageBox.main('mbox', boxArgs)
end
function p.renderTrackingCategories(args, modules, titleObj)
if yesno(args.nocat) then
return ''
end
local cats = {}
-- Catégorie pour les erreurs
if #modules < 1 then
cats[#cats + 1] = "Modèle avec erreur Lua"
end
local subpageBlacklist = {
-- doc = true,
sandbox = true,
sandbox2 = true,
testcases = true
}
-- Catégorie de modèles Lua
titleObj = titleObj or mw.title.getCurrentTitle()
if not subpageBlacklist then
local category = args.category
if not category then
local categories = {}
category = modules[1] and categories[modules[1]]
category = category or "Modèle Lua"
end
cats[#cats + 1] = category
print("Cats"..tostring(cats))
end
for i, cat in ipairs(cats) do
cats[i] = string.format('[[Category:%s]]', cat)
end
return table.concat(cats)
end
return p