1 Instead of having files foo.html "in front of" foo/, I prefer to have foo/index.html. This patch allows that. Specifically, foo/index.type is translated to $links{'foo/'}, and bestlink looks for either "foo" or "foo/" when linking to pages. There are other miscellaneous changes that go with that -- parentlinks for "foo/" are the same as for "foo", except one directory higher; basename of "foo/" is "foo"; links to "foo/" are translated to "foo/index.html" rather than "foo/.html". (Links to "foo/" might be preferred, but that causes an infinite loop in writefile, because apparently dirname("foo/") == "foo/" on my system for reasons that aren't clear to me.)
3 Index: IkiWiki/Render.pm
4 ===================================================================
5 --- IkiWiki/Render.pm (revision 1497)
6 +++ IkiWiki/Render.pm (working copy)
10 return if $page eq 'index'; # toplevel
11 + if ($page =~ m{/$}){
15 foreach my $dir (reverse split("/", $page)) {
19 ===================================================================
20 --- IkiWiki.pm (revision 1497)
21 +++ IkiWiki.pm (working copy)
23 sub basename ($) { #{{{
31 my $type=pagetype($file);
33 $page=~s/\Q.$type\E*$// if defined $type;
34 + $page=~s#index$## if $page=~m{/index$};
38 sub htmlpage ($) { #{{{
41 + return $page."index.html" if $page=~m{/$};
54 if (exists $links{$l}) {
57 + if (exists $links{$l.'/'}){
60 elsif (exists $pagecase{lc $l}) {
61 return $pagecase{lc $l};