aboutsummaryrefslogtreecommitdiff
path: root/basewiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-03-23 01:40:46 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-03-23 01:40:46 +0000
commit325d5c791fc50dc3868b2f1938d052d39b676248 (patch)
tree56ddda187ec55f50f97f4a6ae2d04c59ad2763bb /basewiki
parent33b7f3444c20da53a18203ed33bb470b1c513f07 (diff)
downloadikiwiki-325d5c791fc50dc3868b2f1938d052d39b676248.tar
ikiwiki-325d5c791fc50dc3868b2f1938d052d39b676248.tar.gz
added adminuser settings, globlist support, and used this to implement page
locking
Diffstat (limited to 'basewiki')
-rw-r--r--basewiki/globlist.mdwn16
1 files changed, 16 insertions, 0 deletions
diff --git a/basewiki/globlist.mdwn b/basewiki/globlist.mdwn
new file mode 100644
index 000000000..94f18127c
--- /dev/null
+++ b/basewiki/globlist.mdwn
@@ -0,0 +1,16 @@
+When the wiki stores lists of pages, such as pages that are locked or pages
+that you want to be emailed if changed, it uses a GlobList.
+
+This is a list of page names, separated by white space. The "glob" bit is
+that as well as full page names, it can contain glob patterns. "`*`" stands
+in for any part of the page name, and "`?`" for any single letter of its
+name. So if you wanted to list all the pages about tea, and any
+[[SubPage]]s of the SandBox, but not including the SandBox itself:
+
+ *tea* SandBox/*
+
+You can also prefix an item in the list with "!" to skip matching any
+pages that match it. So if you want to specify all pages except for
+Discussion pages:
+
+ !*/Discussion