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
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
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alecs_myu
erp5
Commits
a549a43d
Commit
a549a43d
authored
Jan 23, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_prototype: Update tempalte path list for the BP from the imported BT
parent
a883a571
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
1 deletion
+46
-1
product/ERP5/Tool/TemplateTool.py
product/ERP5/Tool/TemplateTool.py
+46
-1
No files found.
product/ERP5/Tool/TemplateTool.py
View file @
a549a43d
...
...
@@ -586,10 +586,55 @@ class TemplateTool (BaseTool):
# so we need to add portal_catalog/erp5_mysql_innodb everytime we find
# a bt5 making changes in any of these items.
portal_path = self.getPortalObject()
template_path_list = []
# For modules, we don'
t
need
to
create
path
for
the
module
module_list
=
import_template
.
geTemplateModuleIdList
()
template_path_list
.
extend
(
module_list
)
# For categories, we create path for category objects as well as the subcategories
category_list
=
import_template
.
getTemplateCategoryList
()
category_path_list
=
[]
for
base_category
in
category_list
:
category_path_list
.
append
(
'portal_categories/'
+
base_category
,
'portal_categories/'
+
base_category
+
'/**'
,
)
template_path_list
.
extend
(
category_path_list
)
# For portal_skins, we export the folder
portal_skin_list
=
import_template
.
getTempalteSkinIdList
()
portal_skin_path_list
=
[]
for
skin
in
portal_skin_list
:
portal_skin_path_list
.
append
(
'portal_skins/'
+
skin
,
'portal_skins/'
+
skin
+
'/**'
,
)
template_path_list
.
extend
(
portal_skin_path_list
)
# For workflow chains,
# We have 2 objects in the Business Template design where we deal with
# workflow objects, we deal with the installation separately:
# 1. Workflow_id : We export the whole workflow objects in this case
# 2. Portal Workflow chain: It is already being exported via portal_types
# XXX: CHECK For 2, keeping in mind the migration of workflow would be merged
# before this part where we make workflow_list as property of portal_type
workflow_id_list
=
import_template
.
getTemplateWorkflowIdList
()
workflow_path_list
=
[]
for
workflow
in
workflow_id_list
:
workflow_path_list
.
append
(
'portal_workflow/'
+
workflow
,
'portal_workflow/'
+
workflow
+
'/**'
)
template_path_list
.
extend
(
workflow_path_list
)
# For paths, we add them directly to the path list
template_path_list
.
extend
(
import_template
.
getTemplatePathList
())
# Create new objects for business package
template_path_list = import_template.getTemplatePathList()
bp5_package
=
self
.
newContent
(
portal_type
=
'Business Package'
)
bp5_package
.
edit
(
template_path_list
)
bp5_package
.
build
(
self
)
# Export the newly built business package to the export directory
bp5_package
.
export
(
path
=
export_dir
)
security
.
declareProtected
(
Permissions
.
ManagePortal
,
'getFilteredDiff'
)
def
getFilteredDiff
(
self
,
diff
):
...
...
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