[Erp5-report] r27289 - /erp5/trunk/products/ERP5/interfaces/
nobody at svn.erp5.org
nobody at svn.erp5.org
Mon Jun 1 11:57:05 CEST 2009
Author: kazuhiko
Date: Mon Jun 1 11:57:05 2009
New Revision: 27289
URL: http://svn.erp5.org?rev=27289&view=rev
Log:
interfaces directory now follows zope naming convention.
Modified:
erp5/trunk/products/ERP5/interfaces/Variated.py
erp5/trunk/products/ERP5/interfaces/business_path.py
erp5/trunk/products/ERP5/interfaces/business_process.py
erp5/trunk/products/ERP5/interfaces/business_state.py
erp5/trunk/products/ERP5/interfaces/coordinate.py
erp5/trunk/products/ERP5/interfaces/divergence_tester.py
erp5/trunk/products/ERP5/interfaces/entity.py
erp5/trunk/products/ERP5/interfaces/expandable.py
erp5/trunk/products/ERP5/interfaces/open_order_expander.py
erp5/trunk/products/ERP5/interfaces/predicate.py
erp5/trunk/products/ERP5/interfaces/rule.py
Modified: erp5/trunk/products/ERP5/interfaces/Variated.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/Variated.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/Variated.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/Variated.py [utf8] Mon Jun 1 11:57:05 2009
@@ -28,7 +28,7 @@
from Interface import Interface
-class Variated(Interface):
+class IVariated(Interface):
"""
Common Interface for all objects which can be
variated.
Modified: erp5/trunk/products/ERP5/interfaces/business_path.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/business_path.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/business_path.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/business_path.py [utf8] Mon Jun 1 11:57:05 2009
@@ -26,8 +26,8 @@
#
##############################################################################
-from Products.ERP5.Interface.IBusinessCompletable import IBusinessCompletable
-from Products.ERP5.Interface.IBusinessBuildable import IBusinessBuildable
+from Products.ERP5.interfaces.business_completable import IBusinessCompletable
+from Products.ERP5.interfaces.business_buildable import IBusinessBuildable
class IBusinessPath(IBusinessCompletable, IBusinessBuildable):
"""Business Path interface specification
Modified: erp5/trunk/products/ERP5/interfaces/business_process.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/business_process.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/business_process.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/business_process.py [utf8] Mon Jun 1 11:57:05 2009
@@ -26,8 +26,8 @@
#
##############################################################################
-from Products.ERP5.Interface.IBusinessCompletable import IBusinessCompletable
-from Products.ERP5.Interface.IBusinessBuildable import IBusinessBuildable
+from Products.ERP5.interfaces.business_completable import IBusinessCompletable
+from Products.ERP5.interfaces.business_buildable import IBusinessBuildable
class IBusinessProcess(IBusinessCompletable, IBusinessBuildable):
"""Business Process interface specification
Modified: erp5/trunk/products/ERP5/interfaces/business_state.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/business_state.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/business_state.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/business_state.py [utf8] Mon Jun 1 11:57:05 2009
@@ -26,7 +26,7 @@
#
##############################################################################
-from Products.ERP5.Interface.IBusinessCompletable import IBusinessCompletable
+from Products.ERP5.interfaces.business_completable import IBusinessCompletable
class IBusinessState(IBusinessCompletable):
"""Business State interface specification
Modified: erp5/trunk/products/ERP5/interfaces/coordinate.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/coordinate.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/coordinate.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/coordinate.py [utf8] Mon Jun 1 11:57:05 2009
@@ -28,7 +28,7 @@
from Interface import Interface
-class Coordinate(Interface):
+class ICoordinate(Interface):
"""
Common Interface for all Coordinate objects
"""
Modified: erp5/trunk/products/ERP5/interfaces/divergence_tester.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/divergence_tester.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/divergence_tester.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/divergence_tester.py [utf8] Mon Jun 1 11:57:05 2009
@@ -28,7 +28,7 @@
from Interface import Interface
-class DivergenceTester(Interface):
+class IDivergenceTester(Interface):
"""
ERP5 Divergence Tester
"""
Modified: erp5/trunk/products/ERP5/interfaces/entity.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/entity.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/entity.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/entity.py [utf8] Mon Jun 1 11:57:05 2009
@@ -28,7 +28,7 @@
from Interface import Interface
-class Entity(Interface):
+class IEntity(Interface):
"""
Common Interface for Entity objects
"""
Modified: erp5/trunk/products/ERP5/interfaces/expandable.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/expandable.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/expandable.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/expandable.py [utf8] Mon Jun 1 11:57:05 2009
@@ -28,7 +28,7 @@
from Interface import Interface
-class Expandable(Interface):
+class IExpandable(Interface):
"""
An Expandable class provides methods which trigger
the generation of a root applied rule in the simulation
Modified: erp5/trunk/products/ERP5/interfaces/open_order_expander.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/open_order_expander.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/open_order_expander.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/open_order_expander.py [utf8] Mon Jun 1 11:57:05 2009
@@ -28,7 +28,7 @@
from Interface import Interface
-class OpenOrderExpander(Interface):
+class IOpenOrderExpander(Interface):
"""
Any class capable of expanding an Open Order Rule
follows the OpenOrderExpander interface
Modified: erp5/trunk/products/ERP5/interfaces/predicate.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/predicate.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/predicate.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/predicate.py [utf8] Mon Jun 1 11:57:05 2009
@@ -28,7 +28,7 @@
from Interface import Interface
-class Predicate(Interface):
+class IPredicate(Interface):
"""
A Predicate allows to make a statement about a document.
A statement can be related to:
Modified: erp5/trunk/products/ERP5/interfaces/rule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/rule.py?rev=27289&r1=27288&r2=27289&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/rule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/rule.py [utf8] Mon Jun 1 11:57:05 2009
@@ -28,7 +28,7 @@
from Interface import Interface
-class Rule(Interface):
+class IRule(Interface):
"""A Rule describes transformations of documents.
"""
More information about the Erp5-report
mailing list