Module:Correction syntaxique : Différence entre versions

De Lagny-sur-Marne Wiki
Aller à : navigation, rechercher
m (compter les arguments erronés)
m
Ligne 12 : Ligne 12 :
 
       end
 
       end
 
     end
 
     end
  if (nombre > 0) then
+
  if (nombre > 10) then
 
       rv = rv .. "[[Catégorie:Page appelant un modèle avec un paramètre inconnu|" .. nombre .. " {{PAGENAME}}]]"
 
       rv = rv .. "[[Catégorie:Page appelant un modèle avec un paramètre inconnu|" .. nombre .. " {{PAGENAME}}]]"
 +
    elseif (nombre > 0) then
 +
      rv = rv .. "[[Catégorie:Page appelant un modèle avec un paramètre inconnu|+" .. nombre .. " {{PAGENAME}}]]"
 
end
 
end
 
     return rv
 
     return rv

Version du 24 mars 2015 à 13:17

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) then
       		nombre = nombre + 1
       		rv = rv .. '<div style="display: none">' .."L'argument " .. a .. " n'existe pas dans le modèle appelé</div>"
       	end
    end
 	if (nombre > 10) then
       		rv = rv .. "[[Catégorie:Page appelant un modèle avec un paramètre inconnu|" .. nombre .. " {{PAGENAME}}]]"
    elseif (nombre > 0) then
       		rv = rv .. "[[Catégorie:Page appelant un modèle avec un paramètre inconnu|+" .. nombre .. " {{PAGENAME}}]]"
	end 		
    return rv
end

return p