Module:Category handler/blacklist:修订间差异

来自有兽档案馆
(已保护“模块:Category handler/blacklist”:高风险模板([编辑=仅管理员](无限期)[移动=仅管理员](无限期)))
(导入1个版本:​维基百科的按钮模板)
 
(未显示2个用户的2个中间版本)
第4行: 第4行:


return {
return {
'^Main Page$', -- don't categorise the main page.
'^Qiuwen:首页$', -- don't categorise the main page.
-- Don't categorise the following pages or their subpages.
-- Don't categorise the following pages or their subpages.
-- "%f[/\0]" matches if the next character is "/" or the end of the string.
-- "%f[/\0]" matches if the next character is "/" or the end of the string.
'^Template:User%f[/\0]', -- The userbox "template" space.
'^Wikipedia:Cascade%-protected items%f[/\0]',
'^User:UBX%f[/\0]', -- The userbox "template" space.
'^Template talk:User%f[/\0]',
'^User talk:UBX%f[/\0]',
-- Don't categorise subpages of these pages, but allow
-- Don't categorise subpages of these pages, but allow
-- categorisation of the base page.
-- categorisation of the base page.
'^Wikipedia:Template messages/.*$',
'^Qiuwen:模板消息/.*$',
'/[aA]rchive' -- Don't categorise archives.
'/存档' -- Don't categorise archives.
}
}

2023年3月24日 (五) 23:39的最新版本

文档图示 模块文档[创建] [跳转到代码]

本模块还没有文档页面。

您可以创建文档以让编者更好地理解本模块的用途。
编者可以在本模块的沙盒创建 | 镜像和测试样例创建页面进行实验。
请将模块自身所属的分类添加在文档中。本模块的子页面
-- This module contains the blacklist used by [[Module:Category handler]].
-- Pages that match Lua patterns in this list will not be categorised unless
-- categorisation is explicitly requested.

return {
    '^Qiuwen:首页$', -- don't categorise the main page.
 
    -- Don't categorise the following pages or their subpages.
    -- "%f[/\0]" matches if the next character is "/" or the end of the string.
    '^Template:User%f[/\0]', -- The userbox "template" space.
    '^Template talk:User%f[/\0]',
 
    -- Don't categorise subpages of these pages, but allow
    -- categorisation of the base page.
    '^Qiuwen:模板消息/.*$',
 
    '/存档' -- Don't categorise archives.
}