Editing Module:Category handler/config

From MINR.ORG WIKI

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 13: Line 13:
 
--------------------------------------------------------------------------------
 
--------------------------------------------------------------------------------
 
--                              Parameter names                              --
 
--                              Parameter names                              --
-- These configuration items specify custom 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:                            --
 
-- To add one extra name, you can use this format:                            --
 
--                                                                            --
 
--                                                                            --
-- foo = 'parameter name',                                                    --
+
-- cfg.foo = 'parameter name'                                                 --
 
--                                                                            --
 
--                                                                            --
 
-- To add multiple names, you can use this format:                            --
 
-- To add multiple names, you can use this format:                            --
 
--                                                                            --
 
--                                                                            --
-- foo = {'parameter name 1', 'parameter name 2', 'parameter name 3'},        --
+
-- cfg.foo = {'parameter name 1', 'parameter name 2', 'parameter name 3'}     --
 
--------------------------------------------------------------------------------
 
--------------------------------------------------------------------------------
  
cfg.parameters = {
+
---- The nocat and categories parameter suppress
+
---- categorisation. They are used with Module:Yesno, and work as follows:
-- 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
-- cfg.nocat:
+
---- true                                    Categorisation is suppressed
-- Result of yesno()                       Effect
+
---- false                                    Categorisation is allowed, and the
-- true                                    Categorisation is suppressed
+
----                                          blacklist check is skipped
-- false                                    Categorisation is allowed, and
+
---- nil                                      Categorisation is allowed
--                                          the blacklist check is skipped
+
----
-- nil                                      Categorisation is allowed
+
---- cfg.categories:
--
+
---- Result of yesno(args[cfg.categories])   Effect
-- cfg.categories:
+
---- true                                    Categorisation is allowed, and the
-- Result of yesno()                       Effect
+
----                                          blacklist check is skipped
-- true                                    Categorisation is allowed, and
+
---- false                                    Categorisation is suppressed
--                                          the blacklist check is skipped
+
---- nil                                      Categorisation is allowed
-- false                                    Categorisation is suppressed
+
cfg.nocat = 'nocat'  
-- nil                                      Categorisation is allowed
+
cfg.categories = 'categories'
nocat = 'nocat',
+
 
categories = 'categories',
+
---- The parameter name for the legacy "category2" parameter. This skips the
+
---- blacklist if set to the cfg.category2Yes value, and suppresses
-- The parameter name for the legacy "category2" parameter. This skips the
+
---- categorisation if present but equal to anything other than cfg.category2Yes
-- blacklist if set to the cfg.category2Yes value, and suppresses
+
---- or cfg.category2Negative.
-- categorisation if present but equal to anything other than
+
cfg.category2 = 'category2'
-- cfg.category2Yes or cfg.category2Negative.
+
 
category2 = 'category2',
+
---- cfg.subpage is the parameter name to specify how to behave on subpages.
+
cfg.subpage = 'subpage'
-- cfg.subpage is the parameter name to specify how to behave on subpages.
+
 
subpage = 'subpage',
+
---- The parameter for data to return in all namespaces.
+
cfg.all = 'all'
-- The parameter for data to return in all namespaces.
+
 
all = 'all',
+
---- The parameter name for data to return if no data is specified for the
+
---- namespace that is detected.
-- The parameter name for data to return if no data is specified for the
+
cfg.other = 'other'
-- namespace that is detected.
+
 
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
-- The parameter name used to specify a page other than the current page;
+
---- parameter in [[Module:Namespace detect]].
-- used for testing and demonstration.
+
cfg.demopage = 'page'
demopage = 'page',
 
}
 
  
 
--------------------------------------------------------------------------------
 
--------------------------------------------------------------------------------
Line 70: Line 69:
 
-- value can be specified, like this:                                        --
 
-- value can be specified, like this:                                        --
 
--                                                                            --
 
--                                                                            --
-- cfg.foo = 'value name'                                                    --                                               --
+
-- 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
+
---- The following settings are used with the cfg.category2 parameter. Setting
-- cfg.category2 to cfg.category2Yes skips the blacklist, and if cfg.category2
+
---- cfg.category2 to cfg.category2Yes skips the blacklist, and if cfg.category2
-- 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.category2Yes = 'yes'
 
cfg.category2Negative = '¬'
 
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.subpageNo = 'no'
 
cfg.subpageOnly = 'only'
 
cfg.subpageOnly = 'only'
Line 88: Line 90:
 
--------------------------------------------------------------------------------
 
--------------------------------------------------------------------------------
 
--                          Default namespaces                              --
 
--                          Default namespaces                              --
-- This is a table of namespaces to categorise by default. The keys are the  --
+
-- This is a table of namespaces to categorise by default. They should be in  --
-- namespace numbers.                                                         --
+
-- the format of parameter names accepted by [[Module:Namespace detect]].     --
 
--------------------------------------------------------------------------------
 
--------------------------------------------------------------------------------
  
 
cfg.defaultNamespaces = {
 
cfg.defaultNamespaces = {
[  0] = true, -- main
+
'main',
[  6] = true, -- file
+
'file',
[ 12] = true, -- help
+
'help',
[ 14] = true, -- category
+
'category'
[100] = true, -- portal
 
[108] = true, -- book
 
 
}
 
}
 
--------------------------------------------------------------------------------
 
--                                Wrappers                                    --
 
-- This is a wrapper template or a list of wrapper templates to be passed to  --
 
-- [[Module:Arguments]].                                                      --
 
--------------------------------------------------------------------------------
 
 
cfg.wrappers = 'Template:Category handler'
 
  
 
--------------------------------------------------------------------------------
 
--------------------------------------------------------------------------------

Please note that all contributions to MINR.ORG WIKI may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see MINR.ORG WIKI:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)