[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Workflow - IWorkflowEvents.py:1.1.2.8 WorkflowEvents.py:1.1.2.6

Tres Seaver tseaver@zope.com
Tue, 5 Mar 2002 12:39:14 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Workflow
In directory cvs.zope.org:/tmp/cvs-serv23756

Modified Files:
      Tag: Zope-3x-branch
	IWorkflowEvents.py WorkflowEvents.py 
Log Message:
 - Rip out bogus event.

=== Zope3/lib/python/Zope/App/Workflow/IWorkflowEvents.py 1.1.2.7 => 1.1.2.8 ===
     """
 
-class IWorkflowActionTerminatedEvent( IWorkflowActionEvent ):
-    """
-        Note the suspension of a workflow-aware action.
-    """
-
 class IWorkflowActionExceptionEvent(IWorkflowActionEvent):
     """
         Note that the execution of an action had an exceptional termination.


=== Zope3/lib/python/Zope/App/Workflow/WorkflowEvents.py 1.1.2.5 => 1.1.2.6 ===
 from IWorkflowEvents import IWorkflowActionCompletedEvent
 from IWorkflowEvents import IWorkflowActionSuspendedEvent
-from IWorkflowEvents import IWorkflowActionTerminatedEvent
 from IWorkflowEvents import IWorkflowActionExceptionEvent
 
 
@@ -82,19 +81,6 @@
     # Zope.App.Workflow.IWorkflowEvents.IWorkflowActionSuspendedEvent
 
     #getAction -- use inherited
-    #
-    ############################################################
-
-
-class WorkflowActionTerminatedEvent( WorkflowActionEvent ):
-
-    __implements__ =  IWorkflowActionTerminatedEvent
-
-    ############################################################
-    # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowEvents.IWorkflowActionTerminatedEvent
-    # getAction:  use inherited implementation
-
     #
     ############################################################