]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/bugs/map_does_not_link_directory_for_which_a_file_also_exists.mdwn
(no commit message)
[ikiwiki.git] / doc / bugs / map_does_not_link_directory_for_which_a_file_also_exists.mdwn
index a769ae2f874f6602a4717ee638481a20316c9195..d197cdb6c41da17e4e3091b7ff8c56e0c87c659e 100644 (file)
@@ -1 +1,26 @@
-On <http://phd.martin-krafft.net/wiki/tag/factors/>, the only reason why the top-level 'factors' entry is not linked to the corresponding page is because there exists a `/factors.mdwn` file as well as a `factors/` directory, and I think `map` is getting confused.
\ No newline at end of file
+[[!meta title="map does not link entries which are equal to basename(current_page)"]]
+
+On <http://phd.martin-krafft.net/wiki/tag/factors/>, the top-level `factors` entry is not linked to the corresponding page. Looking at <http://phd.martin-krafft.net/wiki/tag/factors/language/>, this must be because the page name is the same as the entry name, and ikiwiki probably doesn't take the complete path of subpages into account.
+
+[[done]] --[[Joey]]
+
+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]]
+
+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]]