Commit 4a63a30a authored by 's avatar

- subversion properties cleanup

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