Commit d62e03ad authored by Arnaud Fontaine's avatar Arnaud Fontaine

ZODB Components: More modules to ignore from migration.

parent 5e11e463
...@@ -6505,6 +6505,7 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -6505,6 +6505,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.ERP5Defaults',
'Products.ERP5Type.mixin.response_header_generator',
'Products.ERP5.ERP5Site', 'Products.ERP5.ERP5Site',
'Products.ERP5Type.XMLObject', 'Products.ERP5Type.XMLObject',
'Products.ERP5Type.ImmediateReindexContextManager', 'Products.ERP5Type.ImmediateReindexContextManager',
...@@ -6513,6 +6514,7 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -6513,6 +6514,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
'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.XMLExportImport',
'Products.ERP5Type.mixin.property_translatable',
'Products.ERP5Type.Base', 'Products.ERP5Type.Base',
'Products.ERP5Type.Tool.BaseTool', 'Products.ERP5Type.Tool.BaseTool',
'Products.ERP5Type.ERP5Type', 'Products.ERP5Type.ERP5Type',
...@@ -6521,6 +6523,9 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -6521,6 +6523,9 @@ Business Template is a set of definitions, such as skins, portal types and categ
'Products.ERP5Type.Globals', 'Products.ERP5Type.Globals',
'Products.ERP5Type.TransactionalVariable', 'Products.ERP5Type.TransactionalVariable',
'Products.ERP5Type.UnrestrictedMethod', 'Products.ERP5Type.UnrestrictedMethod',
'Products.ERP5Type.ConflictFree',
'Products.ERP5Type.Workflow',
'Products.ERP5Type.TranslationProviderBase',
# Dynamic classes # Dynamic classes
'Products.ERP5.interfaces.property_recordable', 'Products.ERP5.interfaces.property_recordable',
'Products.ERP5.mixin.property_recordable', 'Products.ERP5.mixin.property_recordable',
...@@ -6556,7 +6561,10 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -6556,7 +6561,10 @@ 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.mixin.matrix',
'Products.ERP5Type.XMLMatrix', 'Products.ERP5Type.XMLMatrix',
'Products.ERP5.interfaces.variated',
'Products.ERP5.mixin.Variated',
'Products.ERP5.Document.Resource', 'Products.ERP5.Document.Resource',
'Products.ERP5.Document.MetaResource', 'Products.ERP5.Document.MetaResource',
'Products.ERP5.Document.Category', 'Products.ERP5.Document.Category',
...@@ -6601,6 +6609,7 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -6601,6 +6609,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
## Unit Tests ## Unit Tests
'Products.ERP5Type.tests.custom_zodb', 'Products.ERP5Type.tests.custom_zodb',
'Products.ERP5Type.tests.ERP5TypeFunctionalTestCase', 'Products.ERP5Type.tests.ERP5TypeFunctionalTestCase',
'Products.ERP5Type.tests.ProcessingNodeTestCase',
'Products.ERP5Type.tests.ERP5TypeLiveTestCase', 'Products.ERP5Type.tests.ERP5TypeLiveTestCase',
'Products.ERP5Type.tests.ERP5TypeTestCase', 'Products.ERP5Type.tests.ERP5TypeTestCase',
'Products.ERP5Type.tests.ERP5TypeTestSuite', 'Products.ERP5Type.tests.ERP5TypeTestSuite',
...@@ -6608,6 +6617,9 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -6608,6 +6617,9 @@ Business Template is a set of definitions, such as skins, portal types and categ
'Products.ERP5Type.tests.runUnitTest', 'Products.ERP5Type.tests.runUnitTest',
'Products.ERP5Type.tests.SecurityTestCase', 'Products.ERP5Type.tests.SecurityTestCase',
'Products.ERP5Type.tests.Sequence', 'Products.ERP5Type.tests.Sequence',
'Products.ERP5Type.CodingStyle',
'Products.ERP5Type.tests.CodingStyleTest',
'Products.ERP5Type.tests.CodingStyleTestCase',
## Classes which are not actual ERP5 objects and we do not handle that ## Classes which are not actual ERP5 objects and we do not handle that
## in ZODB Components (IOW it should be a Portal Type as class) and ## in ZODB Components (IOW it should be a Portal Type as class) and
## according to jp, this is not needed as everything should be Portal ## according to jp, this is not needed as everything should be Portal
...@@ -6648,6 +6660,10 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -6648,6 +6660,10 @@ Business Template is a set of definitions, such as skins, portal types and categ
'Products.ERP5Form.Interactor.FieldValueCacheInteractor', 'Products.ERP5Form.Interactor.FieldValueCacheInteractor',
## No need to migrate ## No need to migrate
'Products.ERP5Type.PsycoWrapper', 'Products.ERP5Type.PsycoWrapper',
'Products.ERP5.tests.extractMessageCatalog',
'Products.ERP5.tests.erp5_url_checker',
'Products.ERP5Type.tests._testSQLBench',
'Products.ERP5Type.tests._testPystone',
# Deprecated and used only in SimulationTool._solveMovementOrDelivery() # Deprecated and used only in SimulationTool._solveMovementOrDelivery()
'Products.ERP5.DeliverySolver.Copy', 'Products.ERP5.DeliverySolver.Copy',
'Products.ERP5.DeliverySolver.DeliverySolver', 'Products.ERP5.DeliverySolver.DeliverySolver',
...@@ -6668,12 +6684,14 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -6668,12 +6684,14 @@ Business Template is a set of definitions, such as skins, portal types and categ
'Products.ERP5.interfaces.legacy_extensible_traversable', 'Products.ERP5.interfaces.legacy_extensible_traversable',
'Products.ERP5Type.JSON', 'Products.ERP5Type.JSON',
'Products.ERP5Type.JSONEncoder', 'Products.ERP5Type.JSONEncoder',
'Products.ERP5.Variated',
# Monkey patches or used by monkey patches ; Restricted Python # Monkey patches or used by monkey patches ; Restricted Python
'Products.ERP5Type.Calendar', 'Products.ERP5Type.Calendar',
'Products.ERP5Type.Collections', 'Products.ERP5Type.Collections',
'Products.ERP5Type.Timeout', 'Products.ERP5Type.Timeout',
'Products.ERP5Type.ZipFile', 'Products.ERP5Type.ZipFile',
'Products.ERP5Type.ZopePatch', 'Products.ERP5Type.ZopePatch',
'Products.ERP5Type.tests.backportUnittest',
# Replaced by Interaction Workflow for ERP5 object # Replaced by Interaction Workflow for ERP5 object
'Products.ERP5Form.Interactor.FieldValueCacheInteractor', 'Products.ERP5Form.Interactor.FieldValueCacheInteractor',
'Products.ERP5.Interactor.PortalTypeClassInteractor', 'Products.ERP5.Interactor.PortalTypeClassInteractor',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment