[Erp5-report] r27483 - /erp5/trunk/products/ERP5/Document/

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Jun 10 10:23:16 CEST 2009


Author: jerome
Date: Wed Jun 10 10:23:13 2009
New Revision: 27483

URL: http://svn.erp5.org?rev=27483&view=rev
Log:
change __implements__ to be a tuple

Modified:
    erp5/trunk/products/ERP5/Document/Amount.py
    erp5/trunk/products/ERP5/Document/BankAccount.py
    erp5/trunk/products/ERP5/Document/Coordinate.py
    erp5/trunk/products/ERP5/Document/GeographicAddress.py
    erp5/trunk/products/ERP5/Document/Path.py
    erp5/trunk/products/ERP5/Document/Predicate.py

Modified: erp5/trunk/products/ERP5/Document/Amount.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Amount.py?rev=27483&r1=27482&r2=27483&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Amount.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/Amount.py [utf8] Wed Jun 10 10:23:13 2009
@@ -61,7 +61,7 @@
   security.declareObjectProtected(Permissions.AccessContentsInformation)
 
   # Declarative interfaces
-  __implements__ = (interfaces.IVariated)
+  __implements__ = (interfaces.IVariated,)
 
   property_sheets = ( PropertySheet.Base
                     , PropertySheet.SimpleItem

Modified: erp5/trunk/products/ERP5/Document/BankAccount.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/BankAccount.py?rev=27483&r1=27482&r2=27483&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/BankAccount.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/BankAccount.py [utf8] Wed Jun 10 10:23:13 2009
@@ -68,7 +68,7 @@
                       )
 
     # Declarative interfaces
-    __implements__ = ( interfaces.ICoordinate )
+    __implements__ = ( interfaces.ICoordinate, )
 
 
     security.declareProtected(Permissions.AccessContentsInformation, 'getReference')

Modified: erp5/trunk/products/ERP5/Document/Coordinate.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Coordinate.py?rev=27483&r1=27482&r2=27483&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Coordinate.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/Coordinate.py [utf8] Wed Jun 10 10:23:13 2009
@@ -80,7 +80,7 @@
     isRADContent = 1
     
     # Declarative interface
-    __implements__ = (interfaces.ICoordinate)
+    __implements__ = (interfaces.ICoordinate, )
 
     # Declarative security (replaces __ac_permissions__)
     security = ClassSecurityInfo()

Modified: erp5/trunk/products/ERP5/Document/GeographicAddress.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/GeographicAddress.py?rev=27483&r1=27482&r2=27483&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/GeographicAddress.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/GeographicAddress.py [utf8] Wed Jun 10 10:23:13 2009
@@ -65,7 +65,7 @@
                       )
 
     # Declarative interfaces
-    __implements__ = ( interfaces.ICoordinate )
+    __implements__ = ( interfaces.ICoordinate, )
 
     security.declareProtected(Permissions.AccessContentsInformation, 'asText')
     def asText(self):

Modified: erp5/trunk/products/ERP5/Document/Path.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Path.py?rev=27483&r1=27482&r2=27483&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Path.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/Path.py [utf8] Wed Jun 10 10:23:13 2009
@@ -58,7 +58,7 @@
   security.declareObjectProtected(Permissions.AccessContentsInformation)
 
   # Declarative interfaces
-  __implements__ = ( interfaces.IPredicate )
+  __implements__ = ( interfaces.IPredicate, )
 
   # Declarative properties
   property_sheets = ( PropertySheet.Base

Modified: erp5/trunk/products/ERP5/Document/Predicate.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Predicate.py?rev=27483&r1=27482&r2=27483&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Predicate.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/Predicate.py [utf8] Wed Jun 10 10:23:13 2009
@@ -81,7 +81,7 @@
                     )
 
   # Declarative interfaces
-  __implements__ = ( interfaces.IPredicate )
+  __implements__ = ( interfaces.IPredicate, )
 
   security.declareProtected( Permissions.AccessContentsInformation, 'test' )
   def test(self, context, tested_base_category_list=None, 




More information about the Erp5-report mailing list