]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/map_is_inconsistent_about_bare_directories.mdwn
479db3e0f28bd2b7be613443a2b38b314d2f11cd
[ikiwiki.git] / doc / bugs / map_is_inconsistent_about_bare_directories.mdwn
1 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:
2
3 * Assignments.mdwn
4 * Assignments
5     * 2004
6         * Assign1.pdf
7         * Assign2.pdf
8     * 2005
9         * Assign1.pdf
10         * Assign2.pdf
11     * 2006
12         * etc., etc.
13
14 When I use map to make a map of this, the result looks more like this:
15
16 * Assignments        # this is a link to the correct page
17     * 2004                   # this has a create link
18         * Assign1.pdf
19         * Assign2.pdf
20         * Assign1.pdf
21         * Assign2.pdf
22         * etc., etc.
23
24 Note that while the 2004 directory exists with a create link, the 2005 and 2006 (etc) directories are missing from the site map.
25
26 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.