[Zope] Namespace problem
andres
andres@corrada.com
Tue, 14 Dec 1999 19:39:30 -0500
Hi,
I have a folder with an index_html that calls subfolder/methodA.
methodA in turn calls subfolder/methodB. This fails miserably with a
NameError. I've tried the following variants for the calls:
In subfolder/methodA:
1.<dtml-if "methodB">
2.<dtml-if "methodB()">
The above fail with NameError:methodA
3.<dtml-if "subfolder.methodB">
4.<dtml-if "subfolder.methodB()">
These fail with NameError:subfolder
What is the proper syntax? I'm also using methodB in a dtml-in tag.
Andres Corrada