[Zope] Not quite getting server side include type behaviour on
items in child folders. child folders.
Pavlos Christoforou
pavlos@gaaros.com
Sat, 29 Jan 2000 18:50:33 -0500 (EST)
On Sat, 29 Jan 2000, Jules wrote:
>
> Child folders is where I'm bumping in to things. If I create a "bar" child
> folder and cut/paste "foo" in there, no luck.
>
> <dtml-var bar.foo>
>
> I'm obviously doing something wrong. Any ideas?
Hi Jules -
Try:
<dtml-var "bar.foo()">
This will call DTML Method foo and render the results.
DTML like
<dtml-var foo1>
works because DTML recognizes foo1 as a method and calls it automatically
for you.
Regards
Pavlos