Module:Category handler/shared: Difference between revisions

m
6 revisions imported: import wikisource templates
(add a getNamespaceParameters function)
m (6 revisions imported: import wikisource templates)
 
(13 intermediate revisions by 7 users not shown)
Line 12:
end
return false
end
 
function p.getParamMappings(useLoadData)
local dataPage = 'Module:Namespace detect/data'
if useLoadData then
return mw.loadData(dataPage).mappings
else
return require(dataPage).mappings
end
end
 
Line 17 ⟶ 26:
-- We don't use title.nsText for the namespace name because it adds
-- underscores.
local mappingsKey = mw.site.namespaces[titleObj.namespace].name
if titleObj.isTalkPage then
mappingsKey = 'talk'
else
mappingsKey = mw.site.namespaces[titleObj.namespace].name
end
mappingsKey = mw.ustring.lower(mappingsKey)
return mappings[mappingsKey] or {}