diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-21 23:23:14 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-21 23:23:14 +0000 |
commit | d0fb93d80073a2249e5653665fa532f12d87eb8a (patch) | |
tree | 3114a694a111dcb17c042752f6ea8f127c7c7408 /doc/todo | |
parent | d0295d9dc0827cc272f93f20bae2eff783a8fabe (diff) |
update
Diffstat (limited to 'doc/todo')
-rw-r--r-- | doc/todo/toplevel_index.mdwn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/todo/toplevel_index.mdwn b/doc/todo/toplevel_index.mdwn index d972707d7..90137f4b2 100644 --- a/doc/todo/toplevel_index.mdwn +++ b/doc/todo/toplevel_index.mdwn @@ -2,3 +2,20 @@ Some inconsistences around the toplevel [[index]] page: * [[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.="../"; + |