Jump to content

Module:Category handler/shared

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mr. Stradivarius (talk | contribs) at 01:51, 7 July 2014 (allow specifying a custom blacklist). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

-- This module contains shared functions used by [[Module:Category handler]]
-- and its submodules.

local function matchesBlacklist(page, blacklist)
    if type(page) ~= 'string' then
    	return nil
    end
    for i, pattern in ipairs(blacklist) do
        local match = mw.ustring.match(page, pattern)
        if match then
            return match
        end
    end
end

return {
	matchesBlacklist = matchesBlacklist
}