« Module:Lua banner » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
(11 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
local mMessageBox = require('Module:Message box') | local mMessageBox = require('Module:Message box') | ||
local mList = require('Module:List') | |||
local yesno = require('Module:Yesno') | local yesno = require('Module:Yesno') | ||
local libraryUtil = require('libraryUtil') | local libraryUtil = require('libraryUtil') | ||
local checkType = libraryUtil.checkType | local checkType = libraryUtil.checkType | ||
local p = {} | |||
local | 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. | function p._main(args) | ||
local modules = args | local modules = args | ||
local box = p.renderBox(modules) | local box = p.renderBox(modules) | ||
Ligne 24 : | Ligne 36 : | ||
moduleLinks[i] = string.format('[[:%s]]', module) | moduleLinks[i] = string.format('[[:%s]]', module) | ||
end | end | ||
local moduleList = mList.makeList('bulleted', moduleLinks) | |||
boxArgs.text = 'Utilise Lua:\n' .. moduleList | |||
end | end | ||
Ligne 54 : | Ligne 68 : | ||
titleObj = titleObj or mw.title.getCurrentTitle() | titleObj = titleObj or mw.title.getCurrentTitle() | ||
if titleObj. | if not subpageBlacklist[titleObj.subpageText] then | ||
local category = args.category | local category = args.category | ||
if not category then | if not category then | ||
Ligne 68 : | Ligne 82 : | ||
end | end | ||
return table.concat(cats) | return table.concat(cats) | ||
end | end | ||
return p | return p |
Dernière version du 4 février 2015 à 21:57
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[titleObj.subpageText] 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
end
for i, cat in ipairs(cats) do
cats[i] = string.format('[[Category:%s]]', cat)
end
return table.concat(cats)
end
return p