Module:Category handler/config: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>Mr. Stradivarius blacklist tweaks |
meta>Mr. Stradivarius don't bother to use default parameter names - allow each wiki to set parameter names however they want |
||
Line 2: | Line 2: | ||
-- [[Module:Category handler]] configuration data -- | -- [[Module:Category handler]] configuration data -- | ||
-- Language-specific parameter names and values can be set here. -- | -- Language-specific parameter names and values can be set here. -- | ||
-- For blacklist config, see [[Module:Category handler/blacklist]]. -- | |||
-------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ||
Line 39: | Line 40: | ||
---- false Categorisation is suppressed | ---- false Categorisation is suppressed | ||
---- nil Categorisation is allowed | ---- nil Categorisation is allowed | ||
cfg.nocat = 'nocat' | |||
cfg.categories = 'categories' | |||
---- The parameter name for the legacy "category2" parameter. This skips the | ---- The parameter name for the legacy "category2" parameter. This skips the | ||
Line 46: | Line 47: | ||
---- categorisation if present but equal to anything other than cfg.category2Yes | ---- categorisation if present but equal to anything other than cfg.category2Yes | ||
---- or cfg.category2Negative. | ---- or cfg.category2Negative. | ||
cfg.category2 = 'category2' | |||
---- cfg.subpage is the parameter name to specify how to behave on subpages. | ---- cfg.subpage is the parameter name to specify how to behave on subpages. | ||
cfg.subpage = 'subpage' | |||
---- The parameter for data to return in all namespaces. | ---- The parameter for data to return in all namespaces. | ||
cfg.all = 'all' | |||
---- The parameter name for data to return if no data is specified for the | ---- The parameter name for data to return if no data is specified for the | ||
---- namespace that is detected. | ---- namespace that is detected. | ||
cfg.other = 'other' | |||
---- The parameter name used to specify a page other than the current page; used | ---- The parameter name used to specify a page other than the current page; used | ||
Line 78: | Line 79: | ||
---- is present but equal to anything other than cfg.category2Yes or | ---- is present but equal to anything other than cfg.category2Yes or | ||
---- cfg.category2Negative then it supresses cateogrisation. | ---- cfg.category2Negative then it supresses cateogrisation. | ||
cfg.category2Yes = 'yes' | |||
cfg.category2Negative = '¬' | |||
---- The following settings are used with the cfg.subpage parameter. | ---- The following settings are used with the cfg.subpage parameter. | ||
---- cfg.subpageNo is the value to specify to not categorise on subpages; | ---- cfg.subpageNo is the value to specify to not categorise on subpages; | ||
---- cfg.subpageOnly is the value to specify to only categorise on subpages. | ---- cfg.subpageOnly is the value to specify to only categorise on subpages. | ||
cfg.subpageNo = 'no' | |||
cfg.subpageOnly = 'only' | |||
-------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
Revision as of 01:55, 7 July 2014
Documentation for this module may be created at Module:Category handler/config/doc
--------------------------------------------------------------------------------
-- [[Module:Category handler]] configuration data --
-- Language-specific parameter names and values can be set here. --
-- For blacklist config, see [[Module:Category handler/blacklist]]. --
--------------------------------------------------------------------------------
local cfg = {} -- Don't edit this line.
--------------------------------------------------------------------------------
-- Start configuration data --
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- Parameter names --
-- These configuration items specify custom parameter names. Values added --
-- here will work in addition to the default English parameter names. --
-- To add one extra name, you can use this format: --
-- --
-- cfg.foo = 'parameter name' --
-- --
-- To add multiple names, you can use this format: --
-- --
-- cfg.foo = {'parameter name 1', 'parameter name 2', 'parameter name 3'} --
--------------------------------------------------------------------------------
---- The nocat and categories parameter suppress
---- categorisation. They are used with Module:Yesno, and work as follows:
----
---- cfg.nocat:
---- Result of yesno(args[cfg.nocat]) Effect
---- true Categorisation is suppressed
---- false Categorisation is allowed, and the
---- blacklist check is skipped
---- nil Categorisation is allowed
----
---- cfg.categories:
---- Result of yesno(args[cfg.categories]) Effect
---- true Categorisation is allowed, and the
---- blacklist check is skipped
---- false Categorisation is suppressed
---- nil Categorisation is allowed
cfg.nocat = 'nocat'
cfg.categories = 'categories'
---- The parameter name for the legacy "category2" parameter. This skips the
---- blacklist if set to the cfg.category2Yes value, and suppresses
---- categorisation if present but equal to anything other than cfg.category2Yes
---- or cfg.category2Negative.
cfg.category2 = 'category2'
---- cfg.subpage is the parameter name to specify how to behave on subpages.
cfg.subpage = 'subpage'
---- The parameter for data to return in all namespaces.
cfg.all = 'all'
---- The parameter name for data to return if no data is specified for the
---- namespace that is detected.
cfg.other = 'other'
---- The parameter name used to specify a page other than the current page; used
---- for testing and demonstration. This must be the same as the cfg.page
---- parameter in [[Module:Namespace detect]].
cfg.demopage = 'page'
--------------------------------------------------------------------------------
-- Parameter values --
-- These are set values that can be used with certain parameters. Only one --
-- value can be specified, like this: --
-- --
-- cfg.foo = 'value name' --
-- --
-- These settings are optional. It is always possible to use the module --
-- defaults instead. --
--------------------------------------------------------------------------------
---- The following settings are used with the cfg.category2 parameter. Setting
---- cfg.category2 to cfg.category2Yes skips the blacklist, and if cfg.category2
---- is present but equal to anything other than cfg.category2Yes or
---- cfg.category2Negative then it supresses cateogrisation.
cfg.category2Yes = 'yes'
cfg.category2Negative = '¬'
---- The following settings are used with the cfg.subpage parameter.
---- cfg.subpageNo is the value to specify to not categorise on subpages;
---- cfg.subpageOnly is the value to specify to only categorise on subpages.
cfg.subpageNo = 'no'
cfg.subpageOnly = 'only'
--------------------------------------------------------------------------------
-- Default namespaces --
-- This is a table of namespaces to categorise by default. They should be in --
-- the format of parameter names accepted by [[Module:Namespace detect]]. --
--------------------------------------------------------------------------------
cfg.defaultNamespaces = {
'main',
'file',
'help',
'category'
}
--------------------------------------------------------------------------------
-- End configuration data --
--------------------------------------------------------------------------------
return cfg -- Don't edit this line.