[Zope] lateral aquisition

Michel Pelletier michel@digicool.com
Thu, 09 Mar 2000 12:36:39 -0800


Tom Scheidt wrote:
> 
> 2 folders are next to each other, one is called test1 the other test2. They
> are within the same Home folder, but one is not within the other. Can an
> index_html document in test1 grab a dtml-var from test2? How is this done?
> In html i would simply write ../test2/dtml-var. This does not work in Zope.

In test1...

<dtml-with test2>
  <dtml-var index_html>
</dtml-with>

-Michel