]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/todo/toplevel_index.mdwn
update
[ikiwiki.git] / doc / todo / toplevel_index.mdwn
index 7f766f79cc0672b44774f7f2420988a505520e21..90137f4b287573728f1779142455ccb84b11bb3d 100644 (file)
@@ -1,7 +1,21 @@
 Some inconsistences around the toplevel [[index]] page:
 
 Some inconsistences around the toplevel [[index]] page:
 
-* The page's title is "index"; the linkpath looks like "ikiwiki / index".
-  IMHO it would be nicer if the title were "ikiwiki" and the linkpath was
-  just "ikiwiki" (for this wiki).
 * [[ikiwiki]] is a separate page; links to [[ikiwiki]] should better go to
   the [[index]] though.
 * [[ikiwiki]] is a separate page; links to [[ikiwiki]] should better go to
   the [[index]] though.
+* The toplevel [[ikiwiki/Discussion]] page has some weird parentlinks
+  behavior. This could be special cased around with the following patch.
+  However, I'm unsure if I like the idea of more special cases around this.
+  It would be better to find a way to make the toplevel index page not be a
+  special case at all.
+
+       --- IkiWiki/Render.pm   (revision 1187)
+       +++ IkiWiki/Render.pm   (working copy)
+       @@ -71,6 +71,7 @@
+               my $path="";
+               my $skip=1;
+               return if $page eq 'index'; # toplevel
+       +       $path=".." if $page=~s/^index\///;
+               foreach my $dir (reverse split("/", $page)) {
+                       if (! $skip) {
+                               $path.="../";
+