[Zope] horizontal tranverse

Dieter Maurer dieter@handshake.de
Tue, 22 Jul 2003 23:28:40 +0200


Sergey Volobuev wrote at 2003-7-22 16:27 +1100:
 > >I have 2 folders A & B.  Method A is found in Folder A and method B is in
 > >Folder B.
 > >
 > >Folder A
 > >  |_  method A
 > >
 > >Folder B
 > > |_ method B
 > >
 > >What is the construct for <dtml-call "RESPONSE.redirect( 'Folder A/method
 > >A' )">.
 > >
 > 
 > Assuming you call it from FolderB/MethodB:
 > 
 > <dtml-call "RESPONSE.redirect( '../FolderA/methodA' )">

Note that the HTTP specification requires an absolute URL
although most browsers are not picky about this.


Dieter