Módulu:Error
Apariencia
Esta plantía úsase'n unes Plantía:Sigfig páxines, de mou que los cambios que se faigan equí notaránse abondo. Por favor, prueba cualquier cambiu nes subpáxines /sandbox o /testcases de la plantía, o na to propia subpáxina d'usuariu. Por favor, comenta los cambios na páxina d'alderique antes de publicalos. |
Esti módulu ta suxetu a proteición de páxina. Ye un módulu visible enforma qu'usa un númberu de páxines bien grande, o se sustituye frecuentemente. Como'l vandalismu o les enquivocaciones afeutaríen a munches páxines, y mesmo una edición mínima podría causar una carga sustancial nos sirvidores, ta protexíu escontra ediciones. |
Esti módulu crea un html mensaxe cola clase "error". Ye un reemplazu pa {{error}} - mira allí la páxina de documentación pa ver les instrucciones d'usu.Plantía:Zonapruebes otra
-- Esti módulu implementa {{error}}.
local p = {}
local function _error(args)
local tag = mw.ustring.lower(tostring(args.tag))
-- Saber qué etiqueta html tenemos d'usar.
if not (tag == 'p' or tag == 'span' or tag == 'div') then
tag = 'strong'
end
-- Xenerar el html.
return tostring(mw.html.create(tag)
:addClass('error')
:wikitext(tostring(args.message or args[1] or error('nun s\'especificó nengún mensaxe', 2)))
)
end
function p.error(frame)
local args
if type(frame.args) == 'table' then
-- We're being called via #invoke. The args are passed through to the module
-- from the template page, so use the args that were passed into the template.
args = frame.args
else
-- We're being called from another module or from the debug console, so assume
-- the args are passed in directly.
args = frame
end
-- if the message parameter is present but blank, change it to nil so that Lua will
-- consider it false.
if args.message == "" then
args.message = nil
end
return _error(args)
end
return p