Re: RE: [Zope] Can't get dtml-in to work!
Hello, TNX very mich for your quick help. I understand the solution, but isn't the example in the Zope Book, p. 67 wrong then? BTW, Sven's proposal does NOT work!? Still something wrong? I'm using Zope 2.4b2 on Mandrake Linux 8. Lars
Try <dtml-in expr="PARENTS[0].objectValues('Folder')"> Out there ! <dtml-var sequence-length> <dtml-var getId>
</dtml-in> Your method is trying to iterate through any objects contained within the document - you need to go one up the aquisition tree before going through objects
hth Laurie -----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of lvw@lfpt.rwth-aachen.de Sent: Thursday, July 12, 2001 12:40 PM To: zope@zope.org Subject: [Zope] Can't get dtml-in to work!
Hi,
this must be a very dumb question, but I can't find the mistake. Anyone seeing why the the following DTML does not work? It does not print anything besides 'Hello', though I created several folders in the one where the document below resides. Choosing different meta types doesn't help either...
<dtml-var standard_html_header> <h2><dtml-var title_or_id></h2> <p> Hello <dtml-in expr="objectValues('Folder')"> Out there ! <dtml-var sequence-length> <dtml-var getId>
</dtml-in> </p> <dtml-var standard_html_footer>
Anyone knows help?
Regards, Lars
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
--- BTW, Sven's proposal does NOT work!? Still something wrong? ---
--- BTW, Sven's proposal does NOT work!? Still something wrong? --- extreeeeemly weird... try this <ul> <dtml-in expr="objectValues(['Folder'])"> <li><dtml-var id></li> </dtml-in> </ul> it definitely works (i double checked) on my Zope 2.2.2 $ven
participants (3)
-
Junk -
lvw@lfpt.rwth-aachen.de -
Sven Fischer