aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/map_is_inconsistent_about_bare_directories.mdwn
diff options
context:
space:
mode:
authorhttp://www.cse.unsw.edu.au/~willu/ <http://www.cse.unsw.edu.au/~willu/@web>2008-07-22 22:48:19 -0400
committerJoey Hess <joey@kitenet.net>2008-07-22 22:48:19 -0400
commit8ca397c2c61221558eb31e20c769929f74729883 (patch)
tree5bae4293fee84b61c4501c575a62123d6dfcff7f /doc/bugs/map_is_inconsistent_about_bare_directories.mdwn
parentc1b94f71108b4f3b22882f08f9c43b2cc9ebbc81 (diff)
downloadikiwiki-8ca397c2c61221558eb31e20c769929f74729883.tar
ikiwiki-8ca397c2c61221558eb31e20c769929f74729883.tar.gz
Report bug in map wrt bare directories
Diffstat (limited to 'doc/bugs/map_is_inconsistent_about_bare_directories.mdwn')
-rw-r--r--doc/bugs/map_is_inconsistent_about_bare_directories.mdwn26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/bugs/map_is_inconsistent_about_bare_directories.mdwn b/doc/bugs/map_is_inconsistent_about_bare_directories.mdwn
new file mode 100644
index 000000000..479db3e0f
--- /dev/null
+++ b/doc/bugs/map_is_inconsistent_about_bare_directories.mdwn
@@ -0,0 +1,26 @@
+The [[plugins/map]] plugin has inconsistent behaviour. In particular, I have in my wiki some directory structures holding files without wikitext pointers (I point directly to the files from elsewhere). For example, imagine the following file structure in the source dir:
+
+* Assignments.mdwn
+* Assignments
+ * 2004
+ * Assign1.pdf
+ * Assign2.pdf
+ * 2005
+ * Assign1.pdf
+ * Assign2.pdf
+ * 2006
+ * etc., etc.
+
+When I use map to make a map of this, the result looks more like this:
+
+* Assignments # this is a link to the correct page
+ * 2004 # this has a create link
+ * Assign1.pdf
+ * Assign2.pdf
+ * Assign1.pdf
+ * Assign2.pdf
+ * etc., etc.
+
+Note that while the 2004 directory exists with a create link, the 2005 and 2006 (etc) directories are missing from the site map.
+
+I could imagine including all 'bare' directories in the map, and I could imagine including no 'bare' directories in the map. Just including the first bare directory seems a strange intermediate point.