[Zope3-checkins] CVS: Zope3/src/zope/app/registration -
configure.zcml:1.2 interfaces.py:1.3 registration.py:1.4
Stephan Richter
srichter at cosmos.phy.tufts.edu
Sat Mar 13 18:01:35 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/registration
In directory cvs.zope.org:/tmp/cvs-serv24548/src/zope/app/registration
Modified Files:
configure.zcml interfaces.py registration.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/registration/configure.zcml 1.1 => 1.2 ===
--- Zope3/src/zope/app/registration/configure.zcml:1.1 Sat Mar 13 13:01:16 2004
+++ Zope3/src/zope/app/registration/configure.zcml Sat Mar 13 18:01:04 2004
@@ -49,7 +49,7 @@
"
/>
<implements
- interface="zope.app.interfaces.annotation.IAttributeAnnotatable"
+ interface="zope.app.annotation.interfaces.IAttributeAnnotatable"
/>
</content>
=== Zope3/src/zope/app/registration/interfaces.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/registration/interfaces.py:1.2 Sat Mar 13 14:02:09 2004
+++ Zope3/src/zope/app/registration/interfaces.py Sat Mar 13 18:01:04 2004
@@ -16,8 +16,8 @@
$Id$
"""
from zope.app.i18n import ZopeMessageIDFactory as _
-from zope.app.interfaces.annotation import IAnnotatable
-from zope.app.interfaces.annotation import IAttributeAnnotatable
+from zope.app.annotation.interfaces import IAnnotatable
+from zope.app.annotation.interfaces import IAttributeAnnotatable
from zope.app.container.interfaces import IContainerNamesContainer
from zope.app.container.interfaces import IContained, IContainer
from zope.app.security.permission import PermissionField
=== Zope3/src/zope/app/registration/registration.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/registration/registration.py:1.3 Sat Mar 13 17:02:07 2004
+++ Zope3/src/zope/app/registration/registration.py Sat Mar 13 18:01:04 2004
@@ -20,7 +20,7 @@
from zope.app.container.contained import setitem, contained, uncontained
from zope.app.container.interfaces import IAddNotifiable, IRemoveNotifiable
from zope.app import zapi
-from zope.app.interfaces.annotation import IAttributeAnnotatable
+from zope.app.annotation.interfaces import IAttributeAnnotatable
from zope.app.dependable.interfaces import IDependable, DependencyError
from zope.app.module.interfaces import IModuleManager
from zope.exceptions import DuplicationError
More information about the Zope3-Checkins
mailing list