After Dark writes:
> How can I map my site? I did <dtml-in "PARENTS[-1]">, but it
> only worked for the first level then...
I am astonished that it worked at all:
"dtml-in" requires a sequence, but "PARENT[-1]" is not
a sequence but an "Application" object.
Did you try:
<dtml-tree "PARENTS[-1] branches=objectValues">
&dtml-id;
</dtml-tree>
Dieter