]> sipb.mit.edu Git - ikiwiki.git/blob - doc/patchqueue/index.html_allowed.mdwn
1d26ee63c7e4a0e7bf181d184a2d619ff7ccf212
[ikiwiki.git] / doc / patchqueue / index.html_allowed.mdwn
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.)
2
3     Index: IkiWiki/Render.pm
4     ===================================================================
5     --- IkiWiki/Render.pm       (revision 1497)
6     +++ IkiWiki/Render.pm       (working copy)
7     @@ -40,6 +40,10 @@
8         my $path="";
9         my $skip=1;
10         return if $page eq 'index'; # toplevel
11     +   if ($page =~ m{/$}){
12     +           $page =~s{/$}{};
13     +           $path="..";
14     +   }
15         foreach my $dir (reverse split("/", $page)) {
16                 if (! $skip) {
17                         $path.="../";
18     Index: IkiWiki.pm
19     ===================================================================
20     --- IkiWiki.pm      (revision 1497)
21     +++ IkiWiki.pm      (working copy)
22     @@ -170,6 +170,7 @@
23      sub basename ($) { #{{{
24         my $file=shift;
25
26     +   $file=~s!/$!!;
27         $file=~s!.*/+!!;
28         return $file;
29      } #}}}
30     @@ -196,12 +197,14 @@
31         my $type=pagetype($file);
32         my $page=$file;
33         $page=~s/\Q.$type\E*$// if defined $type;
34     +   $page=~s#index$## if $page=~m{/index$};
35         return $page;
36      } #}}}
37
38      sub htmlpage ($) { #{{{
39         my $page=shift;
40
41     +   return $page."index.html" if $page=~m{/$};
42         return $page.".html";
43      } #}}}
44
45     @@ -264,6 +267,7 @@
46         my $page=shift;
47         my $link=shift;
48
49     +   $page =~ s!/$!!;
50         my $cwd=$page;
51         do {
52                 my $l=$cwd;
53     @@ -273,6 +277,9 @@
54                 if (exists $links{$l}) {
55                         return $l;
56                 }
57     +           if (exists $links{$l.'/'}){
58     +                   return $l.'/';
59     +           }
60                 elsif (exists $pagecase{lc $l}) {
61                         return $pagecase{lc $l};
62                 }