[Erp5-report] r30771 - /erp5/trunk/products/ERP5/interfaces/

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Nov 19 16:54:31 CET 2009


Author: kazuhiko
Date: Thu Nov 19 16:54:28 2009
New Revision: 30771

URL: http://svn.erp5.org?rev=30771&view=rev
Log:
fix typos only.

Modified:
    erp5/trunk/products/ERP5/interfaces/amount_generator.py
    erp5/trunk/products/ERP5/interfaces/movement_generator.py

Modified: erp5/trunk/products/ERP5/interfaces/amount_generator.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/amount_generator.py?rev=30771&r1=30770&r2=30771&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/amount_generator.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/amount_generator.py [utf8] Thu Nov 19 16:54:28 2009
@@ -24,39 +24,39 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 #
 ##############################################################################
 """
+Products.ERP5.interfaces.amount_generator
 """
 
 from zope.interface import Interface
 
 class IAmountGenerator(Interface):
   """Amount Generator interface specification
-  
+
   Documents which implement IAmountGenerator
   can be used to generate an IAmountList from
   an existing IMovementCollection, IAmountList or
-  IAmount. Typical IMovementGenerator are Transformations
+  IAmount. Typical IAmountGenerator are Transformations
   and Trade Conditions.
   """
 
   def getAggregatedAmountList(context, movement_list=None, rounding=False):
     """
-    Returns an IAmountList generated by a model a model applied to the
-    context.
+    Returns an IAmountList generated by a model applied to the context.
 
     context - an IMovementCollection, an IAmountList or an IAmount
 
-    movement_list - optional IAmountList which can be passed explicitely
+    movement_list - optional IAmountList which can be passed explicitly
                     whenever context is an IMovementCollection and whenever
-                    we want to filter context.geMovementList
+                    we want to filter context.getMovementList
 
     rounding - boolean argument, which controls if rounding shall be applied on
                generated movements or not
 
     NOTE:
-      - implement rounding appropriately (True or False seems 
+      - implement rounding appropriately (True or False seems
         simplistic)
     """

Modified: erp5/trunk/products/ERP5/interfaces/movement_generator.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/movement_generator.py?rev=30771&r1=30770&r2=30771&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/movement_generator.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/movement_generator.py [utf8] Thu Nov 19 16:54:28 2009
@@ -24,15 +24,18 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 #
 ##############################################################################
+"""
+Products.ERP5.interfaces.movement_generator
+"""
 
 from zope.interface import Interface
 
 class IMovementGenerator(Interface):
   """Movement Generator interface specification
-  
+
   Documents which implement IMovementGenerator
   can be used to generate an IMovementList from
   an existing IMovementCollection, IMovementList or
@@ -42,19 +45,18 @@
 
   def getAggregatedMovementList(context, movement_list=None, rounding=False):
     """
-    Returns an IMovementList generated by a model a model applied to the
-    context.
+    Returns an IMovementList generated by a model applied to the context.
 
     context - an IMovementCollection, an IMovementList or an IMovement
 
     movement_list - optional IMovementList which can be passed explicitely
                     whenever context is an IMovementCollection and whenever
-                    we want to filter context.geMovementList
+                    we want to filter context.getMovementList
 
     rounding - boolean argument, which controls if rounding shall be applied on
                generated movements or not
 
     NOTE:
-      - implement rounding appropriately (True or False seems 
+      - implement rounding appropriately (True or False seems
         simplistic)
     """




More information about the Erp5-report mailing list