[Erp5-report] r41826 lucas - /erp5/trunk/products/ERP5Configurator/Document/

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Dec 28 14:00:34 CET 2010


Author: lucas
Date: Tue Dec 28 14:00:34 2010
New Revision: 41826

URL: http://svn.erp5.org?rev=41826&view=rev
Log:
Business Configuration should not be a subclass of Url anymore.

Modified:
    erp5/trunk/products/ERP5Configurator/Document/BusinessConfiguration.py

Modified: erp5/trunk/products/ERP5Configurator/Document/BusinessConfiguration.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Configurator/Document/BusinessConfiguration.py?rev=41826&r1=41825&r2=41826&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Configurator/Document/BusinessConfiguration.py [utf8] (original)
+++ erp5/trunk/products/ERP5Configurator/Document/BusinessConfiguration.py [utf8] Tue Dec 28 14:00:34 2010
@@ -36,7 +36,6 @@ from zLOG import LOG, INFO
 from cStringIO import StringIO
 
 from Products.ERP5Configurator.Tool.ConfiguratorTool import _validateFormToRequest
-from Products.ERP5.Document.Url import Url
 from Products.ERP5.Document.Item import Item
 
 ## Workflow states definitions
@@ -44,7 +43,7 @@ INITIAL_STATE_TITLE = 'Start'
 DOWNLOAD_STATE_TITLE = 'Download'
 END_STATE_TITLE = 'End'
 
-class BusinessConfiguration(Item, Url):
+class BusinessConfiguration(Item):
   """
     BusinessConfiguration store the values enter by the wizard. 
   """
@@ -68,7 +67,6 @@ class BusinessConfiguration(Item, Url):
                     , PropertySheet.Arrow
                     , PropertySheet.BusinessConfiguration
                     , PropertySheet.Comment
-                    , PropertySheet.Url
                     , PropertySheet.Version
                     )
 



More information about the Erp5-report mailing list