Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
Romain Courteaud
erp5_rtl_support
Commits
ac9a5809
Commit
ac9a5809
authored
Jul 06, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_config: Exception for portal_categories/resource while trying to install BM
parent
2183aef7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
product/ERP5/Tool/TemplateTool.py
product/ERP5/Tool/TemplateTool.py
+12
-2
No files found.
product/ERP5/Tool/TemplateTool.py
View file @
ac9a5809
...
...
@@ -2076,7 +2076,17 @@ class TemplateTool (BaseTool):
obj
=
property_value
else
:
isProperty
=
False
obj
=
portal
.
restrictedTraverse
(
path
)
# XXX: Hardcoding because of problem with 'resource' trying to access
# the resource via acqusition. Should be removed completely before
# merging (DONT PUSH THIS)
if
path
==
'portal_categories/resource'
:
path_list
=
path
.
split
(
'/'
)
container_path
=
path_list
[:
-
1
]
object_id
=
path_list
[
-
1
]
container
=
portal
.
restrictedTraverse
(
container_path
)
obj
=
container
.
_getOb
(
object_id
)
else
:
obj
=
portal
.
restrictedTraverse
(
path
)
obj_sha
=
self
.
calculateComparableHash
(
obj
,
isProperty
)
...
...
@@ -2130,7 +2140,7 @@ class TemplateTool (BaseTool):
# Raise error
error_list
.
append
(
'Trying to remove changes at ZODB at %s'
%
path
)
except
KeyError
:
except
(
AttributeError
,
KeyError
)
as
e
:
# Get item at old state
old_item
=
old_state
.
getBusinessItemByPath
(
path
)
# Check if there is an object at old state at this path
...
...
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