aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/pages_missing_top-level_directory.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-11-06 23:55:02 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-11-06 23:55:02 -0500
commit8b4d7ca9fb068ee32bcc1ffdbb51dd7aadda2501 (patch)
tree316a430b8502b190b503fbf265dad8c08cc9ef4f /doc/bugs/pages_missing_top-level_directory.mdwn
parentef33ab76576afd467e73b0016187cdb294e61d4e (diff)
downloadikiwiki-8b4d7ca9fb068ee32bcc1ffdbb51dd7aadda2501.tar
ikiwiki-8b4d7ca9fb068ee32bcc1ffdbb51dd7aadda2501.tar.gz
analise and close; template customisation error
Diffstat (limited to 'doc/bugs/pages_missing_top-level_directory.mdwn')
-rw-r--r--doc/bugs/pages_missing_top-level_directory.mdwn20
1 files changed, 19 insertions, 1 deletions
diff --git a/doc/bugs/pages_missing_top-level_directory.mdwn b/doc/bugs/pages_missing_top-level_directory.mdwn
index 159006444..b32ab1e0c 100644
--- a/doc/bugs/pages_missing_top-level_directory.mdwn
+++ b/doc/bugs/pages_missing_top-level_directory.mdwn
@@ -51,7 +51,25 @@ I don't know if it's related to the fact that I have one ikiwiki install under a
>> see above :)
>> I suspect this is due to git scanning everything under the pwd of the .git/ directory, but not totally so.
+
+>>> Ikiwiki never, ever, looks in directories with names starting with a
+>>> dot. --[[Joey]]
+
>> Other ikiwiki sites I have don't do this, and work OK, on the same server, but different docroots.
->>> Well, I've moved my blog to under my site's docroot - in terms of git and ikiwiki - and it's still cutting out a whole directory level. I have no idea what's going on. I need to check the code. The site is at http://simonraven.kisikew.org/ - if you follow the "About" link, you'll understand exactly what's going on, if you look at the URL in your status bar (or under your cursor if you're using a text browser).
+>>> Well, I've moved my blog to under my site's docroot - in terms of git
+>>> and ikiwiki - and it's still cutting out a whole directory level. I
+>>> have no idea what's going on. I need to check the code. The site is at
+>>> http://simonraven.kisikew.org/ - if you follow the "About" link, you'll
+>>> understand exactly what's going on, if you look at the URL in your
+>>> status bar (or under your cursor if you're using a text browser).
+>>>> Your page contains the following in its html:
+>>>> `<base href="../" />`
+>>>>
+>>>> Given a link like "./Policy/", which is *correct*, and when on the
+>>>> About page will normally link to the About/Policy page, this causes
+>>>> the link to really link to ".././Policy/" which is of course broken.
+>>>>
+>>>> Ikiwiki's standard page templates do not contain this base tag, so
+>>>> I guess your customised templates are broken. --[[Joey]] [[done]]