[ZDP] BackTalk to Document The Zope Book (2.5 Edition)/Appendix B: API Reference
webmaster@zope.org
webmaster@zope.org
Sun, 13 Oct 2002 07:07:06 -0400
A comment to the paragraph below was recently added via http://www.zope.org/Documentation/Books/ZopeBook/current/AppendixB.stx#2-118
---------------
A more complex example is presenting the File object for
download by the user. The next example displays a link to every
File object in a folder for the user to download::
<dtml-var standard_html_header>
<ul>
<dtml-in "ObjectValues('File')">
<li><a href="<dtml-var absolute_url>"><dtml-var
id></a></li>
</dtml-in>
</ul>
<dtml-var standard_html_footer>
% rich - Oct. 13, 2002 7:07 am:
"ObjectValues" should be "objectValues".