Module:Category handler/data: Difference between revisions
Jump to navigation
Jump to search
en>MusikAnimal m (1 revision imported) |
m (1 revision imported) |
||
(One intermediate revision by the same user not shown) |
Latest revision as of 14:04, 11 June 2022
This module is used in conjunction with the category handler module to manage categories; it is a very important template used on millions of pages.
This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
This Lua module is used in system messages, and on approximately 4,310,000 pages, or roughly 206121% of all pages. Changes to it can cause immediate changes to the Stiles.casa Wiki user interface. To avoid major disruption and server load, any changes should be tested in the module's /sandbox or /testcases subpages, or in your own Module:Category handler/data. The tested changes can be added to this page in a single edit. Please discuss changes on the talk page before implementing them. |
-- This module assembles data to be passed to [[Module:Category handler]] using
-- mw.loadData. This includes the configuration data and whether the current
-- page matches the title blacklist.
local data = require('Module:Category handler/config')
local mShared = require('Module:Category handler/shared')
local blacklist = require('Module:Category handler/blacklist')
local title = mw.title.getCurrentTitle()
data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(
title.prefixedText,
blacklist
)
data.currentTitleNamespaceParameters = mShared.getNamespaceParameters(
title,
mShared.getParamMappings()
)
return data