X-Git-Url: http://git.tremily.us/?p=ikiwiki.git;a=blobdiff_plain;f=doc%2Ftodo%2Ftoplevel_index.mdwn;h=92cef99acf53e5ce055752b09fb4b9f2cf039530;hp=ae3243480aa4580451102bc15c7d9f6af33b517f;hb=f2ba73d362a24ee6968892bed6c840a3ef14a1f2;hpb=44a08155ee34e4abc4a3220ebf6e64e2793b709b diff --git a/doc/todo/toplevel_index.mdwn b/doc/todo/toplevel_index.mdwn index ae3243480..92cef99ac 100644 --- a/doc/todo/toplevel_index.mdwn +++ b/doc/todo/toplevel_index.mdwn @@ -1,13 +1,20 @@ Some inconsistences around the toplevel [[index]] page: * [[ikiwiki]] is a separate page; links to [[ikiwiki]] should better go to - the [[index]] though. + the index though. + + > At least for this wiki, I turned out to have a use for [[ikiwiki]] + > pointing to a different page, though the general point might still + > stand. + * 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. +Here is a patch: + --- IkiWiki/Render.pm (revision 1187) +++ IkiWiki/Render.pm (working copy) @@ -71,6 +71,7 @@ @@ -19,28 +26,12 @@ Some inconsistences around the toplevel [[index]] page: if (! $skip) { $path.="../"; + > Came up with a better patch for this, [[done]] --[[Joey]] + --- > I would like to suggest another tack, namely a bigger, better special case. > The basic idea is that all indices of the form foo/bar/index get the wiki path foo/bar. -> This makes some things more elegant: -> -> * All files having to do with foo/bar are in the foo/bar directory, rather -> than the (admittedly minor) wart of having the index be in foo/. -> * This sort of addresses [[bugs/broken_parentlinks]] in that example/ is -> guaranteed to be a valid path. (There might be no index there, though.) -> * This is more in line with standard HTML practice, as far as I understand it, -> namely that linking to a/b means a/b/index.html rather than a/b.html. -> -> This would change the inline plugin in strange ways -- I think if foo/index.html -> contains \[[inline "* and !*/Discussion"]], it should skip inlining foo/index.html -> explicitly, but would inline index pages in child directories -> foo/bar/baz/index.html as bar/baz. -> -> It always bothers me that foo/bar/ files need a foo/bar.html in front of them, -> rather than a foo/bar/index.html, as is (to my mind) traditional. -> -> Ethan -> -> Hmm, now I've had time to think about this, and this does conflict pretty hard with foo.html/Discussion -> pages. Well, back to the drawing board. \ No newline at end of file +> You could do this today using [[todo/index.html_allowed]], except that the toplevel +> page "index" becomes "", which causes all sorts of chaos. The discussion page would +> become /discussion, and the weird parentlinks behavior would go away. --Ethan