aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/map_does_not_link_directory_for_which_a_file_also_exists.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-22 18:13:36 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-22 18:13:36 +0000
commit6be34dda9b2b00b129aa774c466c1c8d1471c781 (patch)
tree8d6ff79e04109f4280745bd8c66c385e063c1503 /doc/bugs/map_does_not_link_directory_for_which_a_file_also_exists.mdwn
parent4ccb9be7c644c6ecc691a6eb666607e39ce8d9d2 (diff)
downloadikiwiki-6be34dda9b2b00b129aa774c466c1c8d1471c781.tar
ikiwiki-6be34dda9b2b00b129aa774c466c1c8d1471c781.tar.gz
analysis
Diffstat (limited to 'doc/bugs/map_does_not_link_directory_for_which_a_file_also_exists.mdwn')
-rw-r--r--doc/bugs/map_does_not_link_directory_for_which_a_file_also_exists.mdwn19
1 files changed, 18 insertions, 1 deletions
diff --git a/doc/bugs/map_does_not_link_directory_for_which_a_file_also_exists.mdwn b/doc/bugs/map_does_not_link_directory_for_which_a_file_also_exists.mdwn
index d67b34cd5..a49e32e39 100644
--- a/doc/bugs/map_does_not_link_directory_for_which_a_file_also_exists.mdwn
+++ b/doc/bugs/map_does_not_link_directory_for_which_a_file_also_exists.mdwn
@@ -6,4 +6,21 @@ On <http://phd.martin-krafft.net/wiki/tag/factors/>, the top-level `factors` ent
I can confirm that most if the issues are fixed, but map still includes and links to pages that do not match the pagespec. The list includes entries like `tag/factors/contribute`, but that page does *not* link/is not tagged with any `factors*` tag. I have put a snapshot of the site as it was when I saw this bug at <http://scratch.madduck.net/web__phd.martin-krafft.net__map-bug-1.tgz> and can return to the state at any time, but I needed to move on now...
---[[madduck]] \ No newline at end of file
+--[[madduck]]
+
+That's a different issue. :-)
+
+This is really subtle and tricky. It's doing this because it
+thinks that tag/factors/contribute _does_ link to a page
+matching "tag/factors/*". That page? tag/factors/contribute/discussion!
+
+Now, tag/factors/contribute/discussion doesn't exist yet in your wiki,
+but there is a "?Discussion" pseudo-link, and that's good enough for
+ikiwiki.
+
+So, you could work around this annoying behavior with
+!link(tag/factors/*/Discussion)
+
+BTW, the testpagespec plugin is useful in debugging these kind of things.
+
+--[[Joey]]