Module:Correction syntaxique : Différence entre versions
m (proprage indentation) |
(paramètre « _catégorie » permettant de spécifier la catégorie à remplir) |
||
Ligne 12 : | Ligne 12 : | ||
end | end | ||
end | end | ||
− | if (nombre > | + | if (nombre > 0) then |
− | + | local categorie | |
− | + | if (modele_args["_catégorie"] and modele_args["_catégorie"] ~= "") then | |
− | rv = rv .. "[[ | + | categorie = tostring(mw.title.new(modele_args["_catégorie"], "Catégorie")) |
+ | else | ||
+ | categorie = "Catégorie:Page appelant un modèle avec un paramètre inconnu" | ||
+ | end | ||
+ | local cle_tri | ||
+ | if (nombre > 10) then | ||
+ | cle_tri = "+" .. nombre | ||
+ | else | ||
+ | cle_tri = nombre | ||
+ | end | ||
+ | rv = rv .. "[[" .. categorie .. "|" .. cle_tri .. "]]" | ||
end | end | ||
return rv | return rv |
Version du 18 octobre 2016 à 11:59
La documentation pour ce module peut être créée à Module:Correction syntaxique/doc
local p = {} function p.verifierLesArguments(frame) local passed_args = frame:getParent().args local modele_args = frame.args local rv = "" local nombre = 0 for a,b in pairs(passed_args) do if (modele_args[a] == nil and b ~= "") then nombre = nombre + 1 rv = rv .. '<div style="display: none">' .. "L'argument " .. a .. "(valeur <nowiki>" .. b .. "</nowiki>) n'existe pas dans le modèle appelé</div>" end end if (nombre > 0) then local categorie if (modele_args["_catégorie"] and modele_args["_catégorie"] ~= "") then categorie = tostring(mw.title.new(modele_args["_catégorie"], "Catégorie")) else categorie = "Catégorie:Page appelant un modèle avec un paramètre inconnu" end local cle_tri if (nombre > 10) then cle_tri = "+" .. nombre else cle_tri = nombre end rv = rv .. "[[" .. categorie .. "|" .. cle_tri .. "]]" end return rv end return p