diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-02-06 21:17:25 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-02-06 21:17:25 +0000 |
commit | 58141a0ebcdf3313a83af712b83f8acd1c08aa3b (patch) | |
tree | 03deba83be19c00ed111eea7b23f208eba69ba4f /basewiki | |
parent | 46f0f5bdc23139f0a382e608904c2acc8a774e73 (diff) | |
download | ikiwiki-58141a0ebcdf3313a83af712b83f8acd1c08aa3b.tar ikiwiki-58141a0ebcdf3313a83af712b83f8acd1c08aa3b.tar.gz |
* Patch based on a patch from Ethan to support relative matching in
PageSpecs, by using "./". pagespec_match() has grown a new third parameter
to support this.
Diffstat (limited to 'basewiki')
-rw-r--r-- | basewiki/pagespec.mdwn | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/basewiki/pagespec.mdwn b/basewiki/pagespec.mdwn index b2b913537..53519e7f0 100644 --- a/basewiki/pagespec.mdwn +++ b/basewiki/pagespec.mdwn @@ -45,6 +45,12 @@ of two tags, use: blog/* and (link(tag/foo) or link(tag/bar)) +Note that page names in PageSpecs are matched against the absolute +filenames of the pages in the wiki, so a pagespec "foo" used on page +"a/b" will not match a page named "a/foo" or "a/b/foo". To match +relative to the directory of the page containing the pagespec, you can +use "./". For example, "./foo" on page "a/b" matches page "a/foo". + ## Old syntax The old PageSpec syntax was called a "GlobList", and worked differently in |