[Zope] How can I get context property in DTML ? (example)

2005-05-23 Thread KLEIN Stéphane
Hello, In DTML I would like to do that : I've this directory : dir1 | dir2 | dir3 "dir1" has property bar=1 "dir2" has property bar=2 "dir3" has property bar=3 I would like a "foo_html" DTML Document file which display the property bar. This file is place in dir1. Exemple : When

Re: [Zope] How can I get context property in DTML ? (example)

2005-05-23 Thread Hugo Ramos
Yellow, Just place an index_html object inside dir1 with this code: Then call the following URL's: http://yourserver/dir1/ http://yourserver/dir2/ http://yourserver/dir3/ Regards hr On 5/23/05, KLEIN Stéphane <[EMAIL PROTECTED]> wrote: > Hello, > > In DTML I would like to do that : > > I'

Re: [Zope] How can I get context property in DTML ? (example)

2005-05-23 Thread Tino Wildenhain
Am Montag, den 23.05.2005, 10:37 +0200 schrieb KLEIN Stéphane: > Hello, > > In DTML I would like to do that : > > I've this directory : > > dir1 > | dir2 > | dir3 > > "dir1" has property bar=1 > "dir2" has property bar=2 > "dir3" has property bar=3 > > I would like a "foo_html" DTM

Fwd: [Zope] How can I get context property in DTML ? (example)

2005-05-23 Thread Hugo Ramos
Sorry... Forgot to say that the index_html obect should be a DTML Method!!! Regards hr -- Forwarded message -- From: Hugo Ramos <[EMAIL PROTECTED]> Date: May 23, 2005 9:44 AM Subject: Re: [Zope] How can I get context property in DTML ? (example) To: zope@zope.org Yellow,