Hello everybody, I hope you can help me with the following or give me a hint where to look for further information: I have a application with following structure FolderA ------docA (dtml-document) ------FolderAA -----------docAA FolderB ------docB ------FolderBB -----------docBB Suppose you are in FolderA and try the following from within docA: <dtml-var docAA> As expected it does not work, but unfortunatelly the situation requires me to find a way to accomplish this. Thank you very much for you help. Regards, Metin Deniz
Deniz, Metin wrote:
Hello everybody,
I hope you can help me with the following or give me a hint where to look for further information:
I have a application with following structure
FolderA ------docA (dtml-document) ------FolderAA -----------docAA FolderB ------docB ------FolderBB -----------docBB
Suppose you are in FolderA and try the following from within docA: <dtml-var docAA>
Try something like. <dtml-var "FolderAA.docAA(None,_)"> For further infos read the ZopeBook: http://www.zope.org/Documentation/Books/ZopeBook/2_6Edition/ Cheers, Maik
On Mon, May 19, 2003 at 02:23:57PM +0200, Maik Jablonski wrote:
Try something like.
<dtml-var "FolderAA.docAA(None,_)">
Just to add to the pile of TMTOWTDI: <dtml-with FolderAA> <dtml-var docAA> </dtml-with> -- Paul Winkler home: http://www.slinkp.com "Muppet Labs, where the future is made - today!"
participants (3)
-
Deniz, Metin -
Maik Jablonski -
Paul Winkler