aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorhttp://www.cse.unsw.edu.au/~willu/ <http://www.cse.unsw.edu.au/~willu/@web>2009-05-22 00:43:45 -0400
committerJoey Hess <joey@kitenet.net>2009-05-22 00:43:45 -0400
commit9b5bf6ff85d7e738317aa87b68581082d9542394 (patch)
tree694960eb1cbfde05969d8faba6d8832a686b2c17 /doc
parent1fcb97e13188d85a6df6635d3b42812ca46e145b (diff)
downloadikiwiki-9b5bf6ff85d7e738317aa87b68581082d9542394.tar
ikiwiki-9b5bf6ff85d7e738317aa87b68581082d9542394.tar.gz
response
Diffstat (limited to 'doc')
-rw-r--r--doc/todo/tracking_bugs_with_dependencies.mdwn13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/todo/tracking_bugs_with_dependencies.mdwn b/doc/todo/tracking_bugs_with_dependencies.mdwn
index 8268e4026..84b2448a6 100644
--- a/doc/todo/tracking_bugs_with_dependencies.mdwn
+++ b/doc/todo/tracking_bugs_with_dependencies.mdwn
@@ -277,6 +277,19 @@ account all comments above (which doesn't mean it is above reproach :) ). --[[W
>>> because the link target it is being asked to check for is a single
>>> page name, not a glob.
+>>>> A named pagespec should fall into the glob case. These two pagespecs should be the same:
+
+ link(a*)
+
+>>>> and
+
+ define(aStar, a*) and link(aStar)
+
+>>>> In the first case, we want the pagespec to match any page that links to a page matching the glob.
+>>>> In the second case, we want the pagespec to match any page that links to a page matching the named spec.
+>>>> match_link() was already doing existential part. The patches to this code were simply to remove the `lc()`
+>>>> call from the named pagespec name. Can that `lc` be removed entirely? -- [[Will]]
+
> * Generally, the need to modify `match_*` functions so that they
> check for and handle named pagespecs seems suboptimal, if
> only because there might be others people may want to use named