[Zope] REQUEST.items() problem

Dieter Maurer dieter@handshake.de
Tue, 30 Oct 2001 23:12:19 +0100 (CET)


Juan Garcia Garcia writes:
 >   i'm trying to show all data contained by REQUEST, but when i write
 > the next code, the computer overloads and Zope doesn't response: 
 > 
 >   <dtml-in "REQUEST.items()" sort>
 >     <dtml-var sequence-key>:<dtml-var sequence-item><BR>
 >   </dtml-in>
 > 
 > If i use REQUEST.form.items() or REQUEST.cookies.items(), it works
 > perfectly, but there is data in 'Other' that i need.
The you can use:

    <dtml-in "REQUEST.other.items()"> ...


Dieter