Module:Category handler/shared: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
m
(return a copy of the params table so that it doesn't contain a metatable)
m (6 revisions imported from loginwiki:Module:Category_handler/shared)
 
(12 intermediate revisions by 10 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 = mw.ustring.lower(mappingsKey)
mappingsKey = 'talk'
local origParams = mappings[mappingsKey] or {}
else
local params = {}
mappingsKey = mw.site.namespaces[titleObj.namespace].name
for i, v in ipairs(origParams) do
params[i] = v
end
mappingsKey = mw.ustring.lower(mappingsKey)
return params
local origParams =return mappings[mappingsKey] or {}
end
 
Cookies help us deliver our services. By using our services, you agree to our use of cookies.

Navigation menu