Commit 4a63a30a authored by 's avatar

- subversion properties cleanup

parent 5757e34b
......@@ -11,8 +11,6 @@
#
##############################################################################
""" A convenient base class for representing a container as a management tab.
$Id$
"""
from Acquisition import aq_base
......
......@@ -11,8 +11,6 @@
#
##############################################################################
""" External method used for unit tests - do not remove
$Id: test_method.py 37115 2005-07-07 15:50:07Z jens $
"""
def test(self):
......
......@@ -11,8 +11,6 @@
#
##############################################################################
""" Guard conditions in a web-configurable workflow.
$Id$
"""
from cgi import escape
......
......@@ -11,8 +11,6 @@
#
##############################################################################
""" Scripts in a web-configurable workflow.
$Id$
"""
from AccessControl.SecurityInfo import ClassSecurityInfo
......
......@@ -11,8 +11,6 @@
#
##############################################################################
""" States in a web-configurable workflow.
$Id$
"""
from AccessControl.requestmethod import postonly
......
......@@ -11,8 +11,6 @@
#
##############################################################################
""" Variables in a web-configurable workflow.
$Id$
"""
from AccessControl.SecurityInfo import ClassSecurityInfo
......
......@@ -11,8 +11,6 @@
#
##############################################################################
""" Web-configurable workflow UI.
$Id$
"""
import os
......
......@@ -11,8 +11,6 @@
#
##############################################################################
""" Web-configurable workflow.
$Id$
"""
def initialize(context):
......
......@@ -11,6 +11,4 @@
#
##############################################################################
"""DCWorkflow browser views.
$Id$
"""
......@@ -11,8 +11,6 @@
#
##############################################################################
"""DCWorkflowDefinition browser views.
$Id$
"""
from xml.dom.minidom import parseString
......
......@@ -11,8 +11,6 @@
#
##############################################################################
"""DCWorkflow export / import support.
$Id$
"""
import re
......
......@@ -11,24 +11,24 @@
#
##############################################################################
"""DCWorkflow interfaces.
$Id$
"""
from zope.interface import Attribute
from zope.interface import Interface
from zope.component.interfaces import IObjectEvent
class IDCWorkflowDefinition(Interface):
"""Web-configurable workflow definition.
"""
class ITransitionEvent(IObjectEvent):
"""An event that's fired upon a workflow transition.
"""
workflow = Attribute(u"The workflow definition triggering the transition")
old_state = Attribute(u"The state definition of the workflow state before the transition")
new_state = Attribute(u"The state definition of the workflow state before after transition")
......@@ -36,14 +36,15 @@ class ITransitionEvent(IObjectEvent):
"May be None if this is the 'transition' to the initial state.")
status = Attribute(u"The status dict of the object.")
kwargs = Attribute(u"Any keyword arguments passed to doActionFor() when the transition was invoked")
class IBeforeTransitionEvent(ITransitionEvent):
"""An event fired before a workflow transition.
"""
class IAfterTransitionEvent(ITransitionEvent):
"""An event that's fired after a workflow transition.
"""
""" DCWorkflow product permissions
$Id$
"""
from AccessControl import ModuleSecurityInfo
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment