[Zope] DTML-WITH Problem
   
    Dieter Maurer
     
    dieter@handshake.de
       
    Mon, 17 Sep 2001 20:36:33 +0200 (CEST)
    
    
  
Jan Lentfer writes:
 > <dtml-call "REQUEST.set
 > ('working_folder',
 > 'galleries.'+gallery_id)">
 > 
 > <dtml-with working_folder>
 >   <dtml-in expr="objectValues('Image')"
 > sort=bobobase_modification_time reverse>
"working_folder" contains a string.
To work with "dtml-with", it must become an object.
Search for "Computed variable access" in
  <http://www.dieter.handshake.de/pyprojects/zope/book/chap3.html>
or look in the Zope book for how to obtain an object
from a string....
Dieter