[Zope] CatalogAware, external method manage_afterAdd

Shalabh Chaturvedi shalabh@pspl.co.in
Fri, 3 Mar 2000 23:46:10 +0530


Hi Tom,

This might be because the CatalogAware class uses the manage_afterAdd hook
itself (CatalogAwareness.py).

In _your_ manage_afterAdd(self, item, container), try this (untested):

def manage_afterAdd(self, item, container):
      # do whatever want to
      CatalogAware.manage_afterAdd(self, item, container)

Hope this works.

Shalabh