Changeset 7811 for main/waeup.kofa/trunk/src/waeup/kofa/workflow.py
- Timestamp:
- 8 Mar 2012, 19:00:51 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/workflow.py
r7321 r7811 25 25 from zope.security.interfaces import NoInteraction 26 26 from zope.security.management import getInteraction 27 from waeup. sirp.interfaces import ISIRPWorkflowInfo27 from waeup.kofa.interfaces import IKOFAWorkflowInfo 28 28 29 class SIRPWorkflow(Workflow):29 class KOFAWorkflow(Workflow): 30 30 """A :mod:`hurry.workflow` workflow with more appropriate error 31 31 messages. … … 71 71 return False 72 72 73 class SIRPWorkflowInfo(WorkflowInfo):73 class KOFAWorkflowInfo(WorkflowInfo): 74 74 """A workflow info that provides a convenience transition getter. 75 75 """ 76 76 77 grok.provides(I SIRPWorkflowInfo)77 grok.provides(IKOFAWorkflowInfo) 78 78 79 79 def getManualTransitions(self):
Note: See TracChangeset for help on using the changeset viewer.