Re: [Zope-dev] CopySupport bug or feature?

2005-08-08 Thread Bertrand Mathieu
There's a bug opened for a related problem (http://www.zope.org/Collectors/Zope/1028) (pending since zope 2.6) I feel that at least an API clarification is needed here. Le lundi 08 août 2005 à 11:05 -0400, Geoff Davis a écrit : > manage_afterClone is called. In looking through OFS/CopySupport.py

Re: [Zope-dev] CopySupport bug or feature?

2005-08-08 Thread Chris McDonough
I've been able to get around this by creating a _notifyOfCopyTo on the folder type that does the recursion. There's a delicate dance in some of my code that does some work in _notifyOfCopyTo and other work in _getCopy. This could be improved I bet, but touching the code means that you surely own

[Zope-dev] CopySupport bug or feature?

2005-08-08 Thread Geoff Davis
I have been developing some classes that need to know when they are copied or moved. I have been achieving this by adding my own versions of _notifyOfCopyTo, _postCopy, and manage_afterClone. Everything works as expected when you copy / paste an individual object. However, I have recently been m