[Zope3-checkins] CVS: Zope3/src/zope/app/workflow -
configure.zcml:1.16 instance.py:1.13
Stephan Richter
srichter at cosmos.phy.tufts.edu
Sat Mar 13 18:01:46 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/workflow
In directory cvs.zope.org:/tmp/cvs-serv24548/src/zope/app/workflow
Modified Files:
configure.zcml instance.py
Log Message:
Created annotation package in zope.app.
Moved annotation interfaces to zope.app.annotation.interfaces.
Moved attributeannotations to zope.app.annotation.attribute.
=== Zope3/src/zope/app/workflow/configure.zcml 1.15 => 1.16 ===
--- Zope3/src/zope/app/workflow/configure.zcml:1.15 Thu Mar 11 07:38:23 2004
+++ Zope3/src/zope/app/workflow/configure.zcml Sat Mar 13 18:01:15 2004
@@ -38,7 +38,7 @@
listRegistrationNames"
/>
<implements
- interface="zope.app.interfaces.annotation.IAttributeAnnotatable"
+ interface="zope.app.annotation.interfaces.IAttributeAnnotatable"
/>
</content>
@@ -60,7 +60,7 @@
interface="zope.app.utility.interfaces.ILocalUtility"
/>
<implements
- interface="zope.app.interfaces.annotation.IAttributeAnnotatable"
+ interface="zope.app.annotation.interfaces.IAttributeAnnotatable"
/>
<require
permission="zope.ManageServices"
@@ -93,7 +93,7 @@
<implements interface="zope.app.container.interfaces.IContentContainer" />
<implements
- interface="zope.app.interfaces.annotation.IAttributeAnnotatable"
+ interface="zope.app.annotation.interfaces.IAttributeAnnotatable"
/>
<require
@@ -110,7 +110,7 @@
<adapter
factory="zope.app.workflow.instance.ProcessInstanceContainerAdapter"
provides="zope.app.workflow.interfaces.IProcessInstanceContainer"
- for="zope.app.interfaces.annotation.IAnnotatable"
+ for="zope.app.annotation.interfaces.IAnnotatable"
/>
<!-- Workflow Import/Export Utility -->
=== Zope3/src/zope/app/workflow/instance.py 1.12 => 1.13 ===
--- Zope3/src/zope/app/workflow/instance.py:1.12 Sat Mar 6 11:50:36 2004
+++ Zope3/src/zope/app/workflow/instance.py Sat Mar 13 18:01:15 2004
@@ -21,7 +21,7 @@
from persistent.dict import PersistentDict
from zope.proxy import removeAllProxies
-from zope.app.interfaces.annotation import IAnnotatable, IAnnotations
+from zope.app.annotation.interfaces import IAnnotatable, IAnnotations
from zope.app.workflow.interfaces \
import IProcessInstance, IProcessInstanceContainer
More information about the Zope3-Checkins
mailing list