Module:Category handler/shared: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
return the right key in talk space, and don't copy the table; instead, create a new wrapper function that can load the mappings with either require or mw.loadData
(return a copy of the params table so that it doesn't contain a metatable)
(return the right key in talk space, and don't copy the table; instead, create a new wrapper function that can load the mappings with either require or mw.loadData)
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