[Zope] DTML method to add a folder and put image inside

Dieter Maurer dieter@handshake.de
Sat, 8 Jul 2000 00:58:15 +0200 (CEST)


John Verzani writes:
 > Zope has me stumped.
 > 
 > I want to make a _simple_ form and process to add a folder then insert 
 > into that folder some properties and an image. Here is what I am
 > trying with my DTML method for processing the form request:
 > 
 > 
 > <dtml-call "manage_addFolder(REQUEST['id'],REQUEST['title'])">
 > <dtml-with "REQUEST['id']">
Try <dtml-with "_[REQUEST['id']]">
 > <dtml-if image>
 >   <dtml-call "manage_addImage('image',image)">
 > </dtml-if>
 > ....


Dieter