Module:Category handler/shared: திருத்தங்களுக்கு இடையிலான வேறுபாடு
உள்ளடக்கம் நீக்கப்பட்டது உள்ளடக்கம் சேர்க்கப்பட்டது
make this output either true or false, and switch indentation to tabs |
add a getNamespaceParameters function |
||
வரிசை 2:
-- and its submodules.
local p = {}
local function matchesBlacklist(page, blacklist)▼
for i, pattern in ipairs(blacklist) do
local match = mw.ustring.match(page, pattern)
வரி 12 ⟶ 14:
end
function p.getNamespaceParameters(titleObj, mappings)
return {▼
-- We don't use title.nsText for the namespace name because it adds
-- underscores.
local mappingsKey = mw.site.namespaces[titleObj.namespace].name
mappingsKey = mw.ustring.lower(mappingsKey)
return mappings[mappingsKey] or {}
end
| |||