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
Léo-Paul Géneau
erp5
Commits
3438bb87
Commit
3438bb87
authored
Jul 03, 2020
by
Arnaud Fontaine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZODB Components: More modules to ignore from migration.
parent
f5f322a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
product/ERP5/Document/BusinessTemplate.py
product/ERP5/Document/BusinessTemplate.py
+32
-0
No files found.
product/ERP5/Document/BusinessTemplate.py
View file @
3438bb87
...
@@ -6509,6 +6509,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
...
@@ -6509,6 +6509,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
_migrate_exception_set
=
set
([
_migrate_exception_set
=
set
([
## Bootstrap
## Bootstrap
'Products.ERP5.ERP5Defaults'
,
'Products.ERP5.ERP5Site'
,
'Products.ERP5.ERP5Site'
,
'Products.ERP5Type.XMLObject'
,
'Products.ERP5Type.XMLObject'
,
'Products.ERP5Type.ImmediateReindexContextManager'
,
'Products.ERP5Type.ImmediateReindexContextManager'
,
...
@@ -6516,6 +6517,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
...
@@ -6516,6 +6517,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
'Products.ERP5Type.CopySupport'
,
'Products.ERP5Type.CopySupport'
,
'Products.ERP5Type.interfaces.json_representable'
,
'Products.ERP5Type.interfaces.json_representable'
,
'Products.ERP5Type.mixin.json_representable'
,
'Products.ERP5Type.mixin.json_representable'
,
'Products.ERP5Type.XMLExportImport'
,
'Products.ERP5Type.Base'
,
'Products.ERP5Type.Base'
,
'Products.ERP5Type.Tool.BaseTool'
,
'Products.ERP5Type.Tool.BaseTool'
,
'Products.ERP5Type.ERP5Type'
,
'Products.ERP5Type.ERP5Type'
,
...
@@ -6536,6 +6538,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
...
@@ -6536,6 +6538,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
'Products.ERP5Type.interfaces.types_tool'
,
'Products.ERP5Type.interfaces.types_tool'
,
'Products.ERP5Type.interfaces.object_message'
,
'Products.ERP5Type.interfaces.object_message'
,
'Products.ERP5Type.ObjectMessage'
,
'Products.ERP5Type.ObjectMessage'
,
'Products.ERP5Type.interfaces.consistency_message'
,
'Products.ERP5Type.ConsistencyMessage'
,
'Products.ERP5Type.ConsistencyMessage'
,
'Products.ERP5Type.Tool.ComponentTool'
,
'Products.ERP5Type.Tool.ComponentTool'
,
'Products.ERP5Type.Tool.PropertySheetTool'
,
'Products.ERP5Type.Tool.PropertySheetTool'
,
...
@@ -6558,6 +6561,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
...
@@ -6558,6 +6561,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
'Products.ERP5.Document.BaseCategory'
,
'Products.ERP5.Document.BaseCategory'
,
'Products.ERP5.Document.Node'
,
'Products.ERP5.Document.Node'
,
'Products.ERP5.Document.MetaNode'
,
'Products.ERP5.Document.MetaNode'
,
'Products.ERP5Type.XMLMatrix'
,
'Products.ERP5.Document.Resource'
,
'Products.ERP5.Document.Resource'
,
'Products.ERP5.Document.MetaResource'
,
'Products.ERP5.Document.MetaResource'
,
'Products.ERP5.Document.Category'
,
'Products.ERP5.Document.Category'
,
...
@@ -6572,6 +6576,8 @@ Business Template is a set of definitions, such as skins, portal types and categ
...
@@ -6572,6 +6576,8 @@ Business Template is a set of definitions, such as skins, portal types and categ
'Products.ERP5.Document.Alarm'
,
'Products.ERP5.Document.Alarm'
,
'Products.ERP5Type.tests.testUpgradeInstanceWithOldDataFs'
,
'Products.ERP5Type.tests.testUpgradeInstanceWithOldDataFs'
,
# Any Constraints may be used by upgrader, right?
# Any Constraints may be used by upgrader, right?
'Products.ERP5Type.interfaces.constraint'
,
'Products.ERP5Type.mixin.constraint'
,
'Products.ERP5.Document.AttributeBlacklistedConstraint'
,
'Products.ERP5.Document.AttributeBlacklistedConstraint'
,
'Products.ERP5.Document.AttributeUnicityConstraint'
,
'Products.ERP5.Document.AttributeUnicityConstraint'
,
'Products.ERP5.Document.CategoryAcquiredMembershipStateConstraint'
,
'Products.ERP5.Document.CategoryAcquiredMembershipStateConstraint'
,
...
@@ -6624,6 +6630,32 @@ Business Template is a set of definitions, such as skins, portal types and categ
...
@@ -6624,6 +6630,32 @@ Business Template is a set of definitions, such as skins, portal types and categ
'Products.ERP5Type.Interactor.Interactor'
,
'Products.ERP5Type.Interactor.Interactor'
,
# For Filesystem modules only
# For Filesystem modules only
'Products.ERP5Type.InitGenerator'
,
'Products.ERP5Type.InitGenerator'
,
# ERP5OOo: Going towards HTML and requiring quite a lot of work (for
# example still not using Portal Type as Classes for FormPrintout and
# OOoTemplate) which is likely to break things, so leave it as it
# is. See arnau-RD-Components-ERP5OOo.
'Products.ERP5OOo.OOoUtils'
,
'Products.ERP5OOo.FormPrintout'
,
'Products.ERP5OOo.OOoTemplate'
,
'Products.ERP5OOo.transforms.odt_to_pdf'
,
'Products.ERP5OOo.transforms.odt_to_doc'
,
'Products.ERP5OOo.transforms.html_to_odt'
,
'Products.ERP5OOo.transforms.oood_commandtransform'
,
'Products.ERP5OOo.transforms.odt_to_xml'
,
'Products.ERP5OOo.tests.TestFormPrintoutMixin'
,
'Products.ERP5OOo.tests.testOOoImport'
,
'Products.ERP5OOo.tests.test_document.TEST-en-002'
,
'Products.ERP5OOo.tests.testOOoStyle'
,
'Products.ERP5OOo.tests.testOOoBatchMode'
,
'Products.ERP5OOo.tests.testOOoParser'
,
'Products.ERP5OOo.tests.testDeferredStyle'
,
'Products.ERP5OOo.tests.testFormPrintoutAsODG'
,
'Products.ERP5OOo.tests.testIngestionWithFlare'
,
'Products.ERP5OOo.tests.utils'
,
'Products.ERP5OOo.tests.testOOoStyleWithFlare'
,
'Products.ERP5OOo.tests.testFormPrintoutAsODT'
,
'Products.ERP5OOo.tests.testIngestion'
,
'Products.ERP5OOo.tests.testOOoDynamicStyle'
,
])
])
security
.
declareProtected
(
Permissions
.
ManagePortal
,
security
.
declareProtected
(
Permissions
.
ManagePortal
,
...
...
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