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
e40d32dc
Commit
e40d32dc
authored
Feb 02, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_prototype: Update template tool to support both BT and BP
parent
dc232b4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
product/ERP5/Tool/TemplateTool.py
product/ERP5/Tool/TemplateTool.py
+18
-2
No files found.
product/ERP5/Tool/TemplateTool.py
View file @
e40d32dc
...
...
@@ -128,7 +128,7 @@ class TemplateTool (BaseTool):
# potential danger because business templates may exchange catalog
# methods, so the database could be broken temporarily.
last_bt
=
last_time
=
None
for
bt
in
self
.
objectValues
(
portal_type
=
'Business Template'
):
for
bt
in
self
.
objectValues
(
portal_type
=
[
'Business Template'
,
'Business Package'
]
):
if
bt
.
getTitle
()
==
title
or
title
in
bt
.
getProvisionList
():
state
=
bt
.
getInstallationState
()
if
state
==
'installed'
:
...
...
@@ -161,7 +161,7 @@ class TemplateTool (BaseTool):
"""Get the list of installed business templates.
"""
installed_bts
=
[]
for
bt
in
self
.
contentValues
(
portal_type
=
'Business Template'
):
for
bt
in
self
.
contentValues
(
portal_type
=
[
'Business Template'
,
'Business Package'
]
):
if
bt
.
getInstallationState
()
==
'installed'
:
bt5
=
bt
if
only_title
:
...
...
@@ -915,6 +915,22 @@ class TemplateTool (BaseTool):
finally
:
f
.
close
()
#XXX: Hardcoding 'erp5_mysql_innodb_catalog' BP in the list
bp_dict
=
{
'copyright_list'
:
[
'Copyright (c) 2001-2017 Nexedi SA'
],
'dependency_list'
:
[],
'description'
:
''
,
'force_install'
:
0
,
'id'
:
'erp5_mysql_innodb_catalog'
,
'license'
:
'GPL'
,
'provision_list'
:
[
'erp5_catalog'
],
'revision'
:
''
,
'test_dependency_list'
:
[],
'title'
:
'erp5_mysql_innodb_catalog'
,
'version'
:
'1.0'
}
if
repository
.
endswith
(
'/bt5'
):
property_dict_list
.
append
(
bp_dict
)
self
.
repository_dict
[
repository
]
=
tuple
(
property_dict_list
)
if
REQUEST
is
not
None
:
...
...
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