[Zope] Displaying contents of folder

Janko Hauser jhauser@ifm.uni-kiel.de
Sun, 10 Oct 1999 21:27:24 +0200 (CEST)


You need to use objectValues() for this. Note that you can look for
special objects with this notation. objectValues(['Folder','File',
'DTML Method'])

For example this would list all objects in the subfolder test.

<!--#var standard_html_header-->
<dtml-in "test.objectValues()">
<dtml-with sequence-item>
<dtml-var id><BR>
</dtml-with>
</dtml-in>
<!--#var standard_html_footer-->

HTH

__Janko