[Zope] aq_explicit only

Dieter Maurer dieter@handshake.de
Thu, 6 Sep 2001 00:21:17 +0200 (CEST)


Phil Harris writes:
 > Is there an equivalent of:
 > 
 > <dtml-with aq_explicit only>
 > 
 > in either a Script(Python) or an external method?
You do not have the magic DTML namespace.
Therefore, you have no "with" and "only".

You can use "aq_explicit":

    ox= o.aq_explicit
    ....
    ox.attr
    ....


Dieter