[Erp5-report] r28772 - /erp5/trunk/products/ERP5/Document/Movement.py

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Sep 3 11:06:05 CEST 2009


Author: jerome
Date: Thu Sep  3 11:06:05 2009
New Revision: 28772

URL: http://svn.erp5.org?rev=28772&view=rev
Log:
this experimental way of doing has been dropped in favour of IArrowBase

Modified:
    erp5/trunk/products/ERP5/Document/Movement.py

Modified: erp5/trunk/products/ERP5/Document/Movement.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Movement.py?rev=28772&r1=28771&r2=28772&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Movement.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/Movement.py [utf8] Thu Sep  3 11:06:05 2009
@@ -1104,33 +1104,3 @@
     """
     return (self, )
 
-  # Experimental Arrow Interface (will be improved in the future)
-  security.declareProtected(Permissions.AccessContentsInformation, 'getSourceArrowList')
-  def getSourceArrowList(self, context=None):
-    # Naive implementation - XXX
-    return self._getCategoryMembershipList(self, ('source', 'source_section', 'source_project', 
-                                                  'source_trade', 'source_function', ))
-
-  security.declareProtected(Permissions.AccessContentsInformation, 'getDestinationArrowList')
-  def getDestinationArrowList(self, context=None):
-    # Naive implementation - XXX
-    return self._getCategoryMembershipList(self, ('destination', 'destination_section',
-                                                  'destination_project', 
-                                                  'destination_trade', 'destination_function', ))
-
-  security.declareProtected(Permissions.ModifyPortalContent, 'setSourceArrowList')
-  def setSourceArrowList(self, path):
-    # Naive implementation - XXX
-    self.setCategoryMembership(('source', 'source_section', 'source_project', 
-                                                  'source_trade', 'source_function', ),
-                                path)
-
-  security.declareProtected(Permissions.ModifyPortalContent, 'setDestinationArrowList')
-  def setDestinationArrowList(self, path):
-    # Naive implementation - XXX
-    self.setCategoryMembership(('destination', 'destination_section',
-                                                  'destination_project', 
-                                                  'destination_trade', 'destination_function', ),
-                                path)
-
-




More information about the Erp5-report mailing list