Commit fc3b1a56 authored by Jérome Perrin's avatar Jérome Perrin

getInstanceBaseCategoryList seems a better name for getCategoryList.

renamed getPropertyAndCategoryList to getInstancePropertyAndBaseCategoryList as well



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@9201 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 54783af3
...@@ -76,7 +76,7 @@ for portal_type in module.allowedContentTypes():\n ...@@ -76,7 +76,7 @@ for portal_type in module.allowedContentTypes():\n
#for property in portal_type.getInstancePropertyMap():\n #for property in portal_type.getInstancePropertyMap():\n
#property_string = "%s.%s" % (portal_type.id, property[\'id\'])\n #property_string = "%s.%s" % (portal_type.id, property[\'id\'])\n
#property_list.append(property_string)\n #property_list.append(property_string)\n
for property in portal_type.getPropertyAndCategoryList():\n for property in portal_type.getInstancePropertyAndBaseCategoryList():\n
property_string = "%s.%s" % (portal_type.id, property)\n property_string = "%s.%s" % (portal_type.id, property)\n
property_list.append(property_string)\n property_list.append(property_string)\n
\n \n
......
...@@ -200,7 +200,7 @@ else:\n ...@@ -200,7 +200,7 @@ else:\n
break\n break\n
if ptype_object is None:\n if ptype_object is None:\n
raise \'Portal type %s not found in allowed content types\' % portal_type\n raise \'Portal type %s not found in allowed content types\' % portal_type\n
category_list = ptype_object.getCategoryList()\n category_list = ptype_object.getInstanceBaseCategoryList()\n
new_object = module.newContent( portal_type = portal_type\n new_object = module.newContent( portal_type = portal_type\n
, immediate_reindex = 1\n , immediate_reindex = 1\n
)\n )\n
......
...@@ -248,11 +248,9 @@ class ERP5TypeInformation( FactoryTypeInformation, ...@@ -248,11 +248,9 @@ class ERP5TypeInformation( FactoryTypeInformation,
return self.defined_group_list return self.defined_group_list
security.declareProtected(Permissions.AccessContentsInformation, security.declareProtected(Permissions.AccessContentsInformation,
'getCategoryList') 'getInstanceBaseCategoryList')
def getCategoryList(self): def getInstanceBaseCategoryList(self):
""" """ Return all base categories of the portal type """
Return all the categories of the portal type
"""
current_list = [] current_list = []
ptype_object = self ptype_object = self
# get the klass of the object based on the constructor document # get the klass of the object based on the constructor document
...@@ -286,12 +284,9 @@ class ERP5TypeInformation( FactoryTypeInformation, ...@@ -286,12 +284,9 @@ class ERP5TypeInformation( FactoryTypeInformation,
return current_list return current_list
security.declareProtected(Permissions.AccessContentsInformation, security.declareProtected(Permissions.AccessContentsInformation,
'getPropertyAndCategoryList') 'getInstancePropertyAndBaseCategoryList')
def getPropertyAndCategoryList(self): def getInstancePropertyAndBaseCategoryList(self):
""" """Return all the properties and base categories of the portal type. """
Return all the properties and categories of
the portal type
"""
ptype_object = self ptype_object = self
# get the klass of the object based on the constructor document # get the klass of the object based on the constructor document
m = Products.ERP5Type._m m = Products.ERP5Type._m
......
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