Changes

Jump to: navigation, search

Module:Namespace detect/data

1,166 bytes removed, 20:13, 20 March 2014
use a dedicated config page - Module:Namespace detect/config - for configuration data, and try and reduce unnecessary table lookups in the getParamMappings function
-------------------------------------------------------------------------------------------------- Namespace detect data ---- Configuration This module holds data for [[Module:Namespace detect]] to be loaded per ---- Language-specific parameter names can be set herepage, rather than per #invoke, for performance reasons. ------------------------------------------------------------------------------------------------------
local cfg = {} -- This parameter displays content for the main namespace:cfg.main = 'main' -- This parameter displays in talk namespaces:cfg.talk = 'talk' -- This parameter displays content for "other" namespaces require(namespaces for which-- parameters have not been specified, or for when cfg.demospace is set to cfg.other):cfg.other = 'other' -- This parameter makes talk pages behave as though they are the corresponding subject namespace.-- Note that this parameter is used with [[Module:Yesno]]. Edit that module to change-- the default values of "yes", "no", etc.cfg.subjectns = 'subjectns' -- This parameter sets a demonstration namespace:cfg.demospace = 'demospace' -- This parameter sets a specific page to compare:cfg.page = 'page' -- The header for the namespace column in the wikitable containing the list of possible subject-space parameters.cfg.wikitableNamespaceHeader = 'Namespacedetect/config-- The header for the wikitable containing the list of possible subject-space parameters.cfg.wikitableAliasesHeader = 'Aliases' ------------------------------------------------------------------------------------------------------ End configuration data ------------------------------------------------------------------------------------------------------)
local function getParamMappings()
--[[ -- Returns a table of how parameter names map to namespace names. The keys -- are the actual namespace names, in lower case, and the values are the -- possible parameter names for that namespace, also in lower case. The -- table entries are structured like this: -- { -- [''] = {'main'}, -- ['wikipedia'] = {'wikipedia', 'project', 'wp'}, -- ... -- } --]] local ustringLower = mw.ustring.lower local tinsert = table.insert local subjectNamespaces = mw.site.subjectNamespaces local talk = cfg.talk
local mappings = {}
mappings[mw.ustring.lowerustringLower(mw.site.namespacessubjectNamespaces[0].name)] = {cfg.main} mappings[cfg.talk] = {cfg.talk} for nsid, ns in pairs(mw.site.subjectNamespaces) do
if nsid ~= 0 then -- Exclude main namespace.
local nsname = mw.ustring.lowerustringLower(ns.name) local canonicalName = mw.ustring.lowerustringLower(ns.canonicalName)
mappings[nsname] = {nsname}
if canonicalName ~= nsname then
table.inserttinsert(mappings[nsname], canonicalName)
end
for _, alias in ipairs(ns.aliases) do
table.inserttinsert(mappings[nsname], mw.ustring.lowerustringLower(alias))
end
end
end
return { cfg = cfg, mappings = getParamMappings() }
Anonymous user

Navigation menu