[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/workflow - __init__.py:1.14.10.1 stateful.py:1.12.14.1
Grégoire Weber
zope@i-con.ch
Sun, 22 Jun 2003 10:24:16 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces/workflow
In directory cvs.zope.org:/tmp/cvs-serv24874/src/zope/app/interfaces/workflow
Modified Files:
Tag: cw-mail-branch
__init__.py stateful.py
Log Message:
Synced up with HEAD
=== Zope3/src/zope/app/interfaces/workflow/__init__.py 1.14 => 1.14.10.1 ===
--- Zope3/src/zope/app/interfaces/workflow/__init__.py:1.14 Thu May 1 15:35:23 2003
+++ Zope3/src/zope/app/interfaces/workflow/__init__.py Sun Jun 22 10:23:15 2003
@@ -20,9 +20,9 @@
from zope.interface import Interface
from zope.interface import Attribute
from zope.app.interfaces.container import IContainer
-from zope.app.interfaces.services.configuration \
- import INamedComponentConfiguration
-from zope.app.interfaces.services.configuration import ComponentPath
+from zope.app.interfaces.services.registration \
+ import INamedComponentRegistration
+from zope.app.interfaces.services.registration import ComponentPath
class IWorkflowService(Interface):
"""Workflow service.
@@ -49,8 +49,8 @@
"""
-class IProcessDefinitionConfiguration(INamedComponentConfiguration):
- """Configuration for a workflow process definition.
+class IProcessDefinitionRegistration(INamedComponentRegistration):
+ """Registration for a workflow process definition.
"""
componentPath = ComponentPath(
=== Zope3/src/zope/app/interfaces/workflow/stateful.py 1.12 => 1.12.14.1 ===
--- Zope3/src/zope/app/interfaces/workflow/stateful.py:1.12 Thu Apr 10 17:35:54 2003
+++ Zope3/src/zope/app/interfaces/workflow/stateful.py Sun Jun 22 10:23:15 2003
@@ -17,7 +17,7 @@
$Id$
"""
import zope.schema
-from zope.proxy.context import ContextProperty
+from zope.context import ContextProperty
from zope.app.security.permission import PermissionField
from zope.interface import Interface, Attribute