[Zope3-checkins] CVS: Zope3/src/zope/app/workflow - workflowactivityinfo.py:1.1.2.2 workflowengine.py:1.1.2.2 workflowevents.py:1.1.2.2 workflowprocessinstance.py:1.1.2.2 workflowservice.py:1.1.2.2 workflowworkitem.py:1.1.2.2

Jim Fulton jim@zope.com
Tue, 24 Dec 2002 07:51:55 -0500


Update of /cvs-repository/Zope3/src/zope/app/workflow
In directory cvs.zope.org:/tmp/cvs-serv1158/src/zope/app/workflow

Modified Files:
      Tag: NameGeddon-branch
	workflowactivityinfo.py workflowengine.py workflowevents.py 
	workflowprocessinstance.py workflowservice.py 
	workflowworkitem.py 
Log Message:
Searched for and changed over 1200 references to Zope.something.

Most of these were either comments, doc strings, or permission ids.

Many were imports or ids in zcml.  (much zcml fixup is still needed.



=== Zope3/src/zope/app/workflow/workflowactivityinfo.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/workflow/workflowactivityinfo.py:1.1.2.1	Mon Dec 23 14:32:38 2002
+++ Zope3/src/zope/app/workflow/workflowactivityinfo.py	Tue Dec 24 07:51:24 2002
@@ -35,10 +35,6 @@
         self._condition = condition
         self._source = source
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowActivityInfo
-
     def getId(self):
         '''See interface IWorkflowActivityInfo'''
         return self.id
@@ -70,5 +66,3 @@
     def getSource(self):
         '''See interface IWorkflowActivityInfo'''
         return self._source
-    #
-    ############################################################


=== Zope3/src/zope/app/workflow/workflowengine.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/workflow/workflowengine.py:1.1.2.1	Mon Dec 23 14:32:38 2002
+++ Zope3/src/zope/app/workflow/workflowengine.py	Tue Dec 24 07:51:24 2002
@@ -17,10 +17,6 @@
 
     __implements__ =  IWorkflowEngine
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowEngine
-
     def getProcessInstance(self, process_id):
         '''See interface IWorkflowEngine'''
 
@@ -29,5 +25,3 @@
 
     def listProcessInstances(self):
         '''See interface IWorkflowEngine'''
-    #
-    ############################################################


=== Zope3/src/zope/app/workflow/workflowevents.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/workflow/workflowevents.py:1.1.2.1	Mon Dec 23 14:32:38 2002
+++ Zope3/src/zope/app/workflow/workflowevents.py	Tue Dec 24 07:51:24 2002
@@ -30,82 +30,34 @@
         '''See interface IWorkflowActionCreatedEvent'''
         return self._action
 
-class WorkflowActionCreatedEvent( WorkflowActionEvent ):
+class WorkflowActionCreatedEvent(WorkflowActionEvent):
 
 
     __implements__ =  IWorkflowActionCreatedEvent
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowEvents.IWorkflowActionCreatedEvent
-    # getAction:  use inherited implementation
 
-    #
-    ############################################################
-
-
-class WorkflowActionAssignedEvent( WorkflowActionEvent ):
+class WorkflowActionAssignedEvent(WorkflowActionEvent):
 
 
     __implements__ =  IWorkflowActionAssignedEvent
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowActionAssignedEvent
-    # getAction:  use inherited implementation
-
-    #
-    ############################################################
 
-
-class WorkflowActionBegunEvent( WorkflowActionEvent ):
+class WorkflowActionBegunEvent(WorkflowActionEvent):
 
 
     __implements__ =  IWorkflowActionBegunEvent
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowActionBegunEvent
-    # getAction:  use inherited implementation
-
-    #
-    ############################################################
-
 
-class WorkflowActionCompletedEvent( WorkflowActionEvent ):
+class WorkflowActionCompletedEvent(WorkflowActionEvent):
 
     __implements__ =  IWorkflowActionCompletedEvent
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowEvents.IWorkflowActionCompletedEvent
-    # getAction:  use inherited implementation
 
-    #
-    ############################################################
-
-
-class WorkflowActionSuspendedEvent( WorkflowActionEvent ):
+class WorkflowActionSuspendedEvent(WorkflowActionEvent):
 
     __implements__ =  IWorkflowActionSuspendedEvent
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowEvents.IWorkflowActionSuspendedEvent
-
-    #getAction -- use inherited
-    #
-    ############################################################
 
-
-class WorkflowActionExceptionEvent( WorkflowActionEvent ):
+class WorkflowActionExceptionEvent(WorkflowActionEvent):
 
     __implements__ =  IWorkflowActionExceptionEvent
-
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowEvents.IWorkflowActionExceptionEvent
-    # getAction:  use inherited implementation
-
-    #
-    ############################################################


=== Zope3/src/zope/app/workflow/workflowprocessinstance.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/workflow/workflowprocessinstance.py:1.1.2.1	Mon Dec 23 14:32:38 2002
+++ Zope3/src/zope/app/workflow/workflowprocessinstance.py	Tue Dec 24 07:51:24 2002
@@ -17,10 +17,6 @@
 
     __implements__ =  IWorkflowProcessInstance
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowProcessInstance.IWorkflowProcessInstance
-
     def listActiveWorkitems(self):
         '''See interface IWorkflowProcessInstance'''
 
@@ -38,6 +34,4 @@
 
     def setCompleted(self):
         '''See interface IWorkflowProcessInstance'''
-    #
-    ############################################################
 


=== Zope3/src/zope/app/workflow/workflowservice.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/workflow/workflowservice.py:1.1.2.1	Mon Dec 23 14:32:38 2002
+++ Zope3/src/zope/app/workflow/workflowservice.py	Tue Dec 24 07:51:24 2002
@@ -17,10 +17,6 @@
 
     __implements__ =  IWorkflowService
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowService
-
     engines = ()
 
     def removeEngine(self, engine):
@@ -51,6 +47,3 @@
             if interface.isImplementedBy(engine):
                 result.append(engine)
         return result
-    
-    #
-    ############################################################


=== Zope3/src/zope/app/workflow/workflowworkitem.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/workflow/workflowworkitem.py:1.1.2.1	Mon Dec 23 14:32:38 2002
+++ Zope3/src/zope/app/workflow/workflowworkitem.py	Tue Dec 24 07:51:24 2002
@@ -24,10 +24,6 @@
         self._assignee = None
         self._state = INIT
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowWorkitem.IWorkflowWorkitem
-
     def getProcessInstance(self):
         '''See interface IWorkflowWorkitem'''
         return self._process_instance
@@ -63,6 +59,3 @@
     def getAssignee(self):
         '''See interface IWorkflowWorkitem'''
         return self._assignee
-
-    #
-    ############################################################