Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
65150b33
Commit
65150b33
authored
Dec 18, 2002
by
Chris Withers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Collector #714: CopySupport's manage_clone now calls
manage_afterClone in the saem way that manage_pasteObjects does.
parent
ad7ee251
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
doc/CHANGES.txt
doc/CHANGES.txt
+3
-0
lib/python/OFS/CopySupport.py
lib/python/OFS/CopySupport.py
+2
-2
No files found.
doc/CHANGES.txt
View file @
65150b33
...
...
@@ -25,6 +25,9 @@ Zope Changes
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
marshalled. note than any non-ascii multiple selection properties
modified in versions without this fix will have been corrupted in
...
...
lib/python/OFS/CopySupport.py
View file @
65150b33
...
...
@@ -11,7 +11,7 @@
#
##############################################################################
__doc__
=
"""Copy interface"""
__version__
=
'$Revision: 1.8
2
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.8
3
$'
[
11
:
-
2
]
import
sys
,
Globals
,
Moniker
,
tempfile
,
ExtensionClass
from
marshal
import
loads
,
dumps
...
...
@@ -275,7 +275,7 @@ class CopyContainer(ExtensionClass.Base):
ob
.
_setId
(
id
)
self
.
_setObject
(
id
,
ob
)
ob
=
ob
.
__of__
(
self
)
#ob._postCopy(self, op=0
)
ob
.
manage_afterClone
(
ob
)
return
ob
def
cb_dataValid
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment