[Zope] CopySupport for my objects

Dieter Maurer dieter@handshake.de
Sat, 17 Aug 2002 11:41:23 +0200


Peter Bengtsson writes:
 > I have a python product that is defined like this::
 > 
 >   class IssueTrackerNotifyable(SimpleItem.SimpleItem, IssueTracker)
 > 
 > and the class IssueTracker looks like this::
 > 
 >   class IssueTracker(Folder.Folder, CatalogAware, Persistent  )
 > 
 > 
 > The objects created with IssueTrackerNotifyable work fine as they are but I 
 > can't copy them and place them elsewhere. Not even in another IssueTracker 
 > class instance.
 > What do I need to base-inherit to get complete CopySupport?
Usually, "CopySupport" is included in "SimpleItem".

You have a different problem!

You must analyse the resulting exceptions/tracebacks, and maybe tell us
(if you need help with this)...


Dieter