Commit 4aa1234c authored by Nicolas Dumazet's avatar Nicolas Dumazet

* if a property sheet is a string, only try to load it from ZODB

  if it is present overthere (otherwise, it is likely a property sheet
  in ERP5PropertySheetLegacy and it will be loaded by aq_dynamic)
* comment as to why Solver Tool is one of the exceptions
* LOG when Property Sheet Tool is missing



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41637 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 60c9e264
...@@ -39,7 +39,7 @@ from Products.ERP5Type.Utils import setDefaultClassProperties ...@@ -39,7 +39,7 @@ from Products.ERP5Type.Utils import setDefaultClassProperties
from Products.ERP5Type import document_class_registry, mixin_class_registry from Products.ERP5Type import document_class_registry, mixin_class_registry
from zope.interface import classImplements from zope.interface import classImplements
from zLOG import LOG, ERROR, INFO from zLOG import LOG, ERROR, INFO, WARNING
def _importClass(classpath): def _importClass(classpath):
try: try:
...@@ -117,6 +117,9 @@ property_sheet_generating_portal_type_set = set() ...@@ -117,6 +117,9 @@ property_sheet_generating_portal_type_set = set()
# import of 'Types Tool' class without any mixin, interface or # import of 'Types Tool' class without any mixin, interface or
# Property Sheet to allow the outer (which will actually be stored in # Property Sheet to allow the outer (which will actually be stored in
# 'erp5.portal_type') to be fully generated. # 'erp5.portal_type') to be fully generated.
#
# Solver Tool, as a TypeProvider, will also be required to access
# site.portal_types
core_portal_type_class_dict = { core_portal_type_class_dict = {
'Base Type': {'type_class': 'ERP5TypeInformation', 'Base Type': {'type_class': 'ERP5TypeInformation',
'generating': False}, 'generating': False},
...@@ -228,7 +231,10 @@ def generatePortalTypeClass(portal_type_name): ...@@ -228,7 +231,10 @@ def generatePortalTypeClass(portal_type_name):
# The Property Sheet Tool may be None if the code is updated but # The Property Sheet Tool may be None if the code is updated but
# the BT has not been upgraded yet with portal_property_sheets # the BT has not been upgraded yet with portal_property_sheets
if property_sheet_tool is not None: if property_sheet_tool is None:
LOG("ERP5Type.dynamic", WARNING,
"Property Sheet Tool was not found. Please update erp5_core "
"Business Template")
if portal_type is not None: if portal_type is not None:
# Get the Property Sheets defined on the portal_type and use the # Get the Property Sheets defined on the portal_type and use the
# ZODB Property Sheet rather than the filesystem only if it # ZODB Property Sheet rather than the filesystem only if it
...@@ -237,6 +243,8 @@ def generatePortalTypeClass(portal_type_name): ...@@ -237,6 +243,8 @@ def generatePortalTypeClass(portal_type_name):
for property_sheet in portal_type.getTypePropertySheetList(): for property_sheet in portal_type.getTypePropertySheetList():
if property_sheet in zodb_property_sheet_set: if property_sheet in zodb_property_sheet_set:
property_sheet_set.add(property_sheet) property_sheet_set.add(property_sheet)
else:
zodb_property_sheet_set = set()
# Get the Property Sheets defined on the document and its bases # Get the Property Sheets defined on the document and its bases
# recursively. Fallback on the filesystem Property Sheet only and # recursively. Fallback on the filesystem Property Sheet only and
...@@ -248,7 +256,8 @@ def generatePortalTypeClass(portal_type_name): ...@@ -248,7 +256,8 @@ def generatePortalTypeClass(portal_type_name):
# #
# NOTE: The Property Sheets of a document should be given as a # NOTE: The Property Sheets of a document should be given as a
# string from now on # string from now on
if isinstance(property_sheet, basestring): if isinstance(property_sheet, basestring) and \
property_sheet in zodb_property_sheet_set:
property_sheet_name = property_sheet property_sheet_name = property_sheet
property_sheet_set.add(property_sheet_name) property_sheet_set.add(property_sheet_name)
......
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