[Zope3-checkins] CVS: Zope3/src/zope/app/cache - annotationcacheable.py:1.8 configure.zcml:1.10

Stephan Richter srichter at cosmos.phy.tufts.edu
Sat Mar 13 18:01:45 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/cache
In directory cvs.zope.org:/tmp/cvs-serv24548/src/zope/app/cache

Modified Files:
	annotationcacheable.py configure.zcml 
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/cache/annotationcacheable.py 1.7 => 1.8 ===
--- Zope3/src/zope/app/cache/annotationcacheable.py:1.7	Wed Mar 10 14:41:00 2004
+++ Zope3/src/zope/app/cache/annotationcacheable.py	Sat Mar 13 18:00:44 2004
@@ -18,7 +18,7 @@
 from zope.interface import implements
 
 from zope.app import zapi
-from zope.app.interfaces.annotation import IAnnotations
+from zope.app.annotation.interfaces import IAnnotations
 from zope.app.cache.interfaces import ICacheable, ICache
 
 annotation_key = 'zope.app.cache.CacheManager'


=== Zope3/src/zope/app/cache/configure.zcml 1.9 => 1.10 ===
--- Zope3/src/zope/app/cache/configure.zcml:1.9	Thu Mar 11 07:38:09 2004
+++ Zope3/src/zope/app/cache/configure.zcml	Sat Mar 13 18:00:44 2004
@@ -1,7 +1,7 @@
 <configure xmlns="http://namespaces.zope.org/zope">
 
   <adapter 
-      for="zope.app.interfaces.annotation.IAnnotatable"
+      for="zope.app.annotation.interfaces.IAnnotatable"
       provides="zope.app.cache.interfaces.ICacheable"
       factory="zope.app.cache.annotationcacheable.AnnotationCacheable"
       />
@@ -16,7 +16,7 @@
         />
 
     <implements
-        interface="zope.app.interfaces.annotation.IAttributeAnnotatable"
+        interface="zope.app.annotation.interfaces.IAttributeAnnotatable"
         />
 
     <implements




More information about the Zope3-Checkins mailing list