Commit 65150b33 authored by Chris Withers's avatar Chris Withers

- Collector #714: CopySupport's manage_clone now calls

        manage_afterClone in the saem way that manage_pasteObjects does.
parent ad7ee251
...@@ -25,6 +25,9 @@ Zope Changes ...@@ -25,6 +25,9 @@ Zope Changes
Bugs Fixed Bugs Fixed
- Collector #714: CopySupport's manage_clone now calls
manage_afterClone in the saem way that manage_pasteObjects does.
- Collector #697: Multiple selection properties were incorrectly - Collector #697: Multiple selection properties were incorrectly
marshalled. note than any non-ascii multiple selection properties marshalled. note than any non-ascii multiple selection properties
modified in versions without this fix will have been corrupted in modified in versions without this fix will have been corrupted in
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
# #
############################################################################## ##############################################################################
__doc__="""Copy interface""" __doc__="""Copy interface"""
__version__='$Revision: 1.82 $'[11:-2] __version__='$Revision: 1.83 $'[11:-2]
import sys, Globals, Moniker, tempfile, ExtensionClass import sys, Globals, Moniker, tempfile, ExtensionClass
from marshal import loads, dumps from marshal import loads, dumps
...@@ -275,7 +275,7 @@ class CopyContainer(ExtensionClass.Base): ...@@ -275,7 +275,7 @@ class CopyContainer(ExtensionClass.Base):
ob._setId(id) ob._setId(id)
self._setObject(id, ob) self._setObject(id, ob)
ob=ob.__of__(self) ob=ob.__of__(self)
#ob._postCopy(self, op=0) ob.manage_afterClone(ob)
return ob return ob
def cb_dataValid(self): def cb_dataValid(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment