Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
erp5
Commits
7c085c43
Commit
7c085c43
authored
May 09, 2016
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HBTreeFolder2: minor cleanup
parent
5e5a0998
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
11 deletions
+5
-11
product/HBTreeFolder2/HBTreeFolder2.py
product/HBTreeFolder2/HBTreeFolder2.py
+5
-11
No files found.
product/HBTreeFolder2/HBTreeFolder2.py
View file @
7c085c43
...
...
@@ -24,7 +24,6 @@ from App.special_dtml import DTMLFile
from
Persistence
import
Persistent
,
PersistentMapping
from
Acquisition
import
aq_base
from
BTrees.OOBTree
import
OOBTree
from
BTrees.OIBTree
import
OIBTree
,
union
from
BTrees.Length
import
Length
from
ZODB.POSException
import
ConflictError
from
OFS.ObjectManager
import
BadRequestException
,
BeforeDeleteException
...
...
@@ -180,11 +179,8 @@ class HBTreeFolder2Base (Persistent):
def
_populateFromFolder
(
self
,
source
):
"""Fill this folder with the contents of another folder.
"""
for
name
in
source
.
objectIds
():
value
=
source
.
_getOb
(
name
,
None
)
if
value
is
not
None
:
self
.
_setOb
(
name
,
aq_base
(
value
))
for
name
,
value
in
source
.
objectItems
():
self
.
_setOb
(
name
,
aq_base
(
value
))
security
.
declareProtected
(
view_management_screens
,
'manage_fixCount'
)
def
manage_fixCount
(
self
,
dry_run
=
0
):
...
...
@@ -260,7 +256,7 @@ class HBTreeFolder2Base (Persistent):
error
=
sys
.
exc_info
())
try
:
self
.
_htree
=
OOBTree
(
self
.
_htree
)
# XXX hFix needed
except
:
except
Exception
:
LOG
(
'HBTreeFolder2'
,
ERROR
,
'Failed to fix %s.'
%
path
,
error
=
sys
.
exc_info
())
raise
...
...
@@ -420,7 +416,7 @@ class HBTreeFolder2Base (Persistent):
h
=
self
.
_htree
recurse_stack
=
[]
try
:
for
sub_id
in
min
and
self
.
hashId
(
min
)
or
(
''
,):
for
sub_id
in
self
.
hashId
(
min
)
if
min
else
(
''
,):
if
recurse_stack
:
i
.
next
()
if
type
(
h
)
is
not
OOBTree
:
...
...
@@ -492,8 +488,6 @@ class HBTreeFolder2Base (Persistent):
'objectItems'
)
def
objectItems
(
self
,
base_id
=
_marker
):
# Returns a list of (id, subobject) tuples of the current object.
# If 'spec' is specified, returns only objects whose meta_type match
# 'spec'
return
HBTreeObjectItems
(
self
,
base_id
)
# superValues() looks for the _objects attribute, but the implementation
...
...
@@ -548,7 +542,7 @@ class HBTreeFolder2Base (Persistent):
raise
except
ConflictError
:
raise
except
:
except
Exception
:
LOG
(
'Zope'
,
ERROR
,
'manage_beforeDelete() threw'
,
error
=
sys
.
exc_info
())
self
.
_delOb
(
id
)
...
...
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