Carl Robitaille wrote:
>         It's looks like aq_base is not available. 

Yes, apparently it's not available in DTML for security reasons :-(

You could write a really small external method to get it for you:

<UNTESTED>

def ex_aq_base(object):
        return getattr(object,'aq_base',object)

</UNTESTED>

Your other option is to stick it in the colelctor and hope Jim Fulton or
someone else who understands it gets round to 'fixing' the
ExtentionClass WRT to == and acquisition wrappers :-S

cheers,

Chris

_______________________________________________
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )

Reply via email to