aboutsummaryrefslogtreecommitdiff
path: root/doc/patchqueue/index.html_allowed.mdwn
blob: dc527bbc4b1854c5d70b7863bfa6595a1a5901f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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.)

    diff -ur -x .svn ikiwiki-orig/IkiWiki/Render.pm ikiwiki/IkiWiki/Render.pm
    --- ikiwiki-orig/IkiWiki/Render.pm  2006-11-08 01:02:33.000000000 -0500
    +++ ikiwiki/IkiWiki/Render.pm       2006-11-08 01:02:46.000000000 -0500
    @@ -57,6 +57,10 @@
        my $path="";
        my $skip=1;
        return if $page eq 'index'; # toplevel
    +   if ($page =~ m{/$}){
    +           $page =~s{/$}{};
    +           $path="..";
    +   }
        foreach my $dir (reverse split("/", $page)) {
                if (! $skip) {
                        $path.="../";
    diff -ur -x .svn ikiwiki-orig/IkiWiki.pm ikiwiki/IkiWiki.pm
    --- ikiwiki-orig/IkiWiki.pm 2006-11-08 01:02:38.000000000 -0500
    +++ ikiwiki/IkiWiki.pm      2006-11-08 01:02:48.000000000 -0500
    @@ -174,6 +174,7 @@
     sub basename ($) { #{{{
        my $file=shift;

    +   $file=~s!/$!!;
        $file=~s!.*/+!!;
        return $file;
     } #}}}
    @@ -200,12 +201,14 @@
        my $type=pagetype($file);
        my $page=$file;
        $page=~s/\Q.$type\E*$// if defined $type;
    +   $page=~s#index$## if $page=~m{/index$};
        return $page;
     } #}}}

     sub htmlpage ($) { #{{{
        my $page=shift;

    +   return $page."index.html" if $page=~m{/$};
        return $page.".html";
     } #}}}

    @@ -289,6 +292,7 @@
        my $page=shift;
        my $link=shift;

    +   $page =~ s!/$!!;
        my $cwd=$page;
        do {
                my $l=$cwd;
    @@ -298,6 +302,9 @@
                if (exists $links{$l}) {
                        return $l;
                }
    +           if (exists $links{$l.'/'}){
    +                   return $l.'/';
    +           }
                elsif (exists $pagecase{lc $l}) {
                        return $pagecase{lc $l};
                }