[Zope3-checkins] CVS: Zope3/src/zope/app/dublincore -
annotatableadapter.py:1.10 configure.zcml:1.12 interfaces.py:1.2
Stephan Richter
srichter at cosmos.phy.tufts.edu
Sat Mar 13 18:01:23 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/dublincore
In directory cvs.zope.org:/tmp/cvs-serv24548/src/zope/app/dublincore
Modified Files:
annotatableadapter.py configure.zcml interfaces.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/dublincore/annotatableadapter.py 1.9 => 1.10 ===
--- Zope3/src/zope/app/dublincore/annotatableadapter.py:1.9 Mon Mar 8 07:05:56 2004
+++ Zope3/src/zope/app/dublincore/annotatableadapter.py Sat Mar 13 18:00:52 2004
@@ -20,7 +20,7 @@
from zope.fssync.server.entryadapter import ObjectEntryAdapter
from zope.fssync.server.interfaces import IObjectFile
from zope.interface import implements
-from zope.app.interfaces.annotation import IAnnotations, IAnnotatable
+from zope.app.annotation.interfaces import IAnnotations, IAnnotatable
from zope.app.dublincore.zopedublincore import ZopeDublinCore
from zope.xmlpickle import dumps, loads
from persistent.dict import PersistentDict
=== Zope3/src/zope/app/dublincore/configure.zcml 1.11 => 1.12 ===
--- Zope3/src/zope/app/dublincore/configure.zcml:1.11 Thu Mar 4 17:42:03 2004
+++ Zope3/src/zope/app/dublincore/configure.zcml Sat Mar 13 18:00:52 2004
@@ -18,7 +18,7 @@
<adapter
factory=".annotatableadapter.ZDCAnnotatableAdapter"
provides="zope.app.dublincore.interfaces.IWriteZopeDublinCore"
- for="zope.app.interfaces.annotation.IAnnotatable"
+ for="zope.app.annotation.interfaces.IAnnotatable"
/>
<class class=".annotatableadapter.ZDCAnnotatableAdapter">
=== Zope3/src/zope/app/dublincore/interfaces.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/dublincore/interfaces.py:1.1 Mon Mar 1 10:02:49 2004
+++ Zope3/src/zope/app/dublincore/interfaces.py Sat Mar 13 18:00:52 2004
@@ -15,7 +15,7 @@
$Id$
"""
-from zope.app.interfaces.annotation import IAnnotatable
+from zope.app.annotation.interfaces import IAnnotatable
from zope.interface import Interface
from zope.schema import Text, TextLine, Datetime, Sequence
More information about the Zope3-Checkins
mailing list