Diferencia entre revisiones de «Módulo:Category handler/shared»
De Familia Sanchez Arjona
(allow specifying a custom blacklist) |
(make this output either true or false, and switch indentation to tabs) |
||
Línea 3: | Línea 3: | ||
local function matchesBlacklist(page, blacklist) | local function matchesBlacklist(page, blacklist) | ||
− | + | for i, pattern in ipairs(blacklist) do | |
− | + | local match = mw.ustring.match(page, pattern) | |
− | + | if match then | |
− | + | return true | |
− | + | end | |
− | + | end | |
− | + | return false | |
− | |||
− | |||
end | end | ||
Revisión del 14:13 7 jul 2014
La documentación para este módulo puede ser creada en Módulo:Category handler/shared/doc
-- This module contains shared functions used by [[Module:Category handler]] -- and its submodules. local function matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end return { matchesBlacklist = matchesBlacklist }