Ignore:
Timestamp:
11 Jun 2011, 18:51:17 (13 years ago)
Author:
uli
Message:

Split workflow components (general use stuff goes to w.s.workflow), add some convenience stuff, ...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/interfaces.py

    r6338 r6353  
    11##
    22## interfaces.py
     3from hurry.workflow.interfaces import IWorkflow, IWorkflowInfo
    34from zc.sourcefactory.basic import BasicSourceFactory
    45from zope import schema
     
    430431        """
    431432        pass
     433
     434class IWAeUPWorkflowInfo(IWorkflowInfo):
     435    """A :class:`hurry.workflow.workflow.WorkflowInfo` with additional
     436       methods for convenience.
     437    """
     438    def getManualTransitions():
     439        """Get allowed manual transitions.
     440
     441        Get a sorted list of tuples containing the `transition_id` and
     442        `title` of each allowed transition.
     443        """
     444        pass
Note: See TracChangeset for help on using the changeset viewer.