improve
[ikiwiki.git] / basewiki / globlist.mdwn
1 When the wiki stores lists of pages, such as pages that are locked or pages
2 that you want to be emailed if changed, it uses a GlobList.
3
4 This is a list of page names, separated by white space. The "glob" bit is
5 that as well as full page names, it can contain glob patterns. "`*`" stands
6 in for any part of the page name, and "`?`" for any single letter of its
7 name. So if you wanted to list all the pages about tea, and any
8 [[SubPage]]s of the SandBox, but not including the SandBox itself:
9
10         *tea* SandBox/*
11
12 You can also prefix an item in the list with "!" to skip matching any
13 pages that match it. So if you want to specify all pages except for
14 Discussion pages and the SandBox:
15
16         * !SandBox !*/Discussion