m (1 revision imported)
 
(No difference)

Latest revision as of 16:10, 18 November 2015

Documentation for this module may be created at Module:Category handler/blacklist/doc

  1. -- This module contains the blacklist used by [[Module:Category handler]].
  2. -- Pages that match Lua patterns in this list will not be categorised unless
  3. -- categorisation is explicitly requested.
  4.  
  5. return {
  6. '^Main Page$', -- don't categorise the main page.
  7. -- Don't categorise the following pages or their subpages.
  8. -- "%f[/\0]" matches if the next character is "/" or the end of the string.
  9. '^Wikipedia:Cascade%-protected items%f[/\0]',
  10. '^User:UBX%f[/\0]', -- The userbox "template" space.
  11. '^User talk:UBX%f[/\0]',
  12. -- Don't categorise subpages of these pages, but allow
  13. -- categorisation of the base page.
  14. '^Wikipedia:Template messages/.*$',
  15. '/[aA]rchive' -- Don't categorise archives.
  16. }

-- 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 {

  1. '^Main Page$', -- don't categorise the main page.
  2.  
  3. -- Don't categorise the following pages or their subpages.
  4. -- "%f[/\0]" matches if the next character is "/" or the end of the string.
  5. '^Wikipedia:Cascade%-protected items%f[/\0]',
  6. '^User:UBX%f[/\0]', -- The userbox "template" space.
  7. '^User talk:UBX%f[/\0]',
  8.  
  9. -- Don't categorise subpages of these pages, but allow
  10. -- categorisation of the base page.
  11. '^Wikipedia:Template messages/.*$',
  12.  
  13. '/[aA]rchive' -- Don't categorise archives.

}