[Zope] How to do <dtml-var ../mthdname>

Holger Hoffmann hohoff@rz.uni-potsdam.de
Fri, 30 Nov 2001 16:39:39 +0100


Hi,

"nunosalgado@clix.pt" wrote:
> 
> I have One folder 'foo' with a dtml method 'xpto'
> and a subfolder 'bar' with another method 'xpto'.
> 
> The bar.xpto have to call the foo.xpto (<dtml-var
> expr="http://localhost/foo/xpto">. How can i do
> that? Because I always receive the message 'Key
> doesn't exist'.

<dtml-with foo>
<dtml-var xpto>
</dtml-with>
 
... Holger