[Zope] stopping acquisition

Dan Keshet dkesh@channel1.com
Tue, 17 Jul 2001 16:19:19 -0400 (EDT)


Hi,

I have a method method_x.  

If there is a method_y in the same folder (not acquired!) as where
method_x is being executed, I want to do one action, otherwise, some
other.

I tried this

<dtml-with aq_explicit>
<dtml-if method_y>
Yup
<dtml-else>
Nope
</dtml-if>
</dtml-with>

But it says "Yup" in Folders without a method_y

Any help?