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
Labels
Merge Requests
141
Merge Requests
141
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
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):
...
@@ -128,7 +128,7 @@ class TemplateTool (BaseTool):
# potential danger because business templates may exchange catalog
# potential danger because business templates may exchange catalog
# methods, so the database could be broken temporarily.
# methods, so the database could be broken temporarily.
last_bt
=
last_time
=
None
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
():
if
bt
.
getTitle
()
==
title
or
title
in
bt
.
getProvisionList
():
state
=
bt
.
getInstallationState
()
state
=
bt
.
getInstallationState
()
if
state
==
'installed'
:
if
state
==
'installed'
:
...
@@ -161,7 +161,7 @@ class TemplateTool (BaseTool):
...
@@ -161,7 +161,7 @@ class TemplateTool (BaseTool):
"""Get the list of installed business templates.
"""Get the list of installed business templates.
"""
"""
installed_bts
=
[]
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'
:
if
bt
.
getInstallationState
()
==
'installed'
:
bt5
=
bt
bt5
=
bt
if
only_title
:
if
only_title
:
...
@@ -915,6 +915,22 @@ class TemplateTool (BaseTool):
...
@@ -915,6 +915,22 @@ class TemplateTool (BaseTool):
finally
:
finally
:
f
.
close
()
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
)
self
.
repository_dict
[
repository
]
=
tuple
(
property_dict_list
)
if
REQUEST
is
not
None
:
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