置顶公告:【置顶】关于临时开启评论区所有功能的公告(2022.10.22) | 【置顶】关于本站Widget恢复使用的公告
  • 你好~!欢迎来到萌娘百科镜像站!如需查看或编辑,请联系本站管理员注册账号。
  • 本镜像站和其他萌娘百科的镜像站无关,请注意分别。

Module:Category handler/config

猛汉♂百科,万男皆可猛的百科全书!转载请标注来源页面的网页链接,并声明引自猛汉百科。内容不可商用。
跳到导航 跳到搜索
Template-info.svg 模块文档  [创建] [刷新]
  1. --------------------------------------------------------------------------------
  2. -- [[Module:Category handler]] configuration data --
  3. -- Language-specific parameter names and values can be set here. --
  4. -- For blacklist config, see [[Module:Category handler/blacklist]]. --
  5. --------------------------------------------------------------------------------
  6. local cfg = {} -- Don't edit this line.
  7. --------------------------------------------------------------------------------
  8. -- Start configuration data --
  9. --------------------------------------------------------------------------------
  10. --------------------------------------------------------------------------------
  11. -- Parameter names --
  12. -- These configuration items specify custom parameter names. --
  13. -- To add one extra name, you can use this format: --
  14. -- --
  15. -- foo = 'parameter name', --
  16. -- --
  17. -- To add multiple names, you can use this format: --
  18. -- --
  19. -- foo = {'parameter name 1', 'parameter name 2', 'parameter name 3'}, --
  20. --------------------------------------------------------------------------------
  21. cfg.parameters = {
  22. -- The nocat and categories parameter suppress
  23. -- categorisation. They are used with Module:Yesno, and work as follows:
  24. --
  25. -- cfg.nocat:
  26. -- Result of yesno() Effect
  27. -- true Categorisation is suppressed
  28. -- false Categorisation is allowed, and
  29. -- the blacklist check is skipped
  30. -- nil Categorisation is allowed
  31. --
  32. -- cfg.categories:
  33. -- Result of yesno() Effect
  34. -- true Categorisation is allowed, and
  35. -- the blacklist check is skipped
  36. -- false Categorisation is suppressed
  37. -- nil Categorisation is allowed
  38. nocat = 'nocat',
  39. categories = 'categories',
  40. -- The parameter name for the legacy "category2" parameter. This skips the
  41. -- blacklist if set to the cfg.category2Yes value, and suppresses
  42. -- categorisation if present but equal to anything other than
  43. -- cfg.category2Yes or cfg.category2Negative.
  44. category2 = 'category2',
  45. -- cfg.subpage is the parameter name to specify how to behave on subpages.
  46. subpage = 'subpage',
  47. -- The parameter for data to return in all namespaces.
  48. all = 'all',
  49. -- The parameter name for data to return if no data is specified for the
  50. -- namespace that is detected.
  51. other = 'other',
  52. -- The parameter name used to specify a page other than the current page;
  53. -- used for testing and demonstration.
  54. demopage = 'page',
  55. }
  56. --------------------------------------------------------------------------------
  57. -- Parameter values --
  58. -- These are set values that can be used with certain parameters. Only one --
  59. -- value can be specified, like this: --
  60. -- --
  61. -- cfg.foo = 'value name' -- --
  62. --------------------------------------------------------------------------------
  63. -- The following settings are used with the cfg.category2 parameter. Setting
  64. -- cfg.category2 to cfg.category2Yes skips the blacklist, and if cfg.category2
  65. -- is present but equal to anything other than cfg.category2Yes or
  66. -- cfg.category2Negative then it supresses cateogrisation.
  67. cfg.category2Yes = 'yes'
  68. cfg.category2Negative = '¬'
  69. -- The following settings are used with the cfg.subpage parameter.
  70. -- cfg.subpageNo is the value to specify to not categorise on subpages;
  71. -- cfg.subpageOnly is the value to specify to only categorise on subpages.
  72. cfg.subpageNo = 'no'
  73. cfg.subpageOnly = 'only'
  74. --------------------------------------------------------------------------------
  75. -- Default namespaces --
  76. -- This is a table of namespaces to categorise by default. The keys are the --
  77. -- namespace numbers. --
  78. --------------------------------------------------------------------------------
  79. cfg.defaultNamespaces = {
  80. [ 0] = true, -- main
  81. [ 6] = true, -- file
  82. [ 12] = true, -- help
  83. [ 14] = true, -- category
  84. [100] = true, -- portal
  85. [108] = true, -- book
  86. }
  87. --------------------------------------------------------------------------------
  88. -- Wrappers --
  89. -- This is a wrapper template or a list of wrapper templates to be passed to --
  90. -- [[Module:Arguments]]. --
  91. --------------------------------------------------------------------------------
  92. cfg.wrappers = 'Template:Category handler'
  93. --------------------------------------------------------------------------------
  94. -- End configuration data --
  95. --------------------------------------------------------------------------------
  96. return cfg -- Don't edit this line.