update to actual generated example
parent
b7d7abf2b4
commit
6c2163d596
|
@ -1,26 +1,71 @@
|
||||||
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:
|
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
|
; ls -R dirA dirB
|
||||||
* Assignments
|
dirA:
|
||||||
* 2004
|
subA subB
|
||||||
* Assign1.pdf
|
|
||||||
* Assign2.pdf
|
dirA/subA:
|
||||||
* 2005
|
filea.mdwn fileb.mdwn
|
||||||
* Assign1.pdf
|
|
||||||
* Assign2.pdf
|
dirA/subB:
|
||||||
* 2006
|
filec.mdwn filed.mdwn
|
||||||
* etc., etc.
|
|
||||||
|
dirB:
|
||||||
|
subA subC
|
||||||
|
|
||||||
|
dirB/subA:
|
||||||
|
filea.mdwn
|
||||||
|
|
||||||
|
dirB/subC:
|
||||||
|
fileb.mdwn filec.mdwn
|
||||||
|
|
||||||
When I use map to make a map of this, the result looks more like this:
|
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
|
<ul>
|
||||||
* 2004 # this has a create link
|
<li><span class="createlink">? dirA</span>
|
||||||
* Assign1.pdf
|
<ul>
|
||||||
* Assign2.pdf
|
<li><span class="createlink">? subA</span>
|
||||||
* Assign1.pdf
|
<ul>
|
||||||
* Assign2.pdf
|
<li>filea
|
||||||
* etc., etc.
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li>fileb
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li>filec
|
||||||
|
</li>
|
||||||
|
<li>filed
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><span class="createlink">? dirB</span>
|
||||||
|
<ul>
|
||||||
|
<li><span class="createlink">? subA</span>
|
||||||
|
<ul>
|
||||||
|
<li>filea
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li><span class="createlink">? subC</span>
|
||||||
|
<ul>
|
||||||
|
<li>fileb
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li>filec
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
Note that while the 2004 directory exists with a create link, the 2005 and 2006 (etc) directories are missing from the site map.
|
Note that while the dirA/subA directory exists with a create link, the dirA/subB directory is missing from the map. Interstingly, dirB/subC is shown in the map. If you add a second file to dirB/subA then dirB/subC disappears as well.
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
Loading…
Reference in New Issue