[Zope3-checkins] CVS: Zope3/src/zope/app/dublincore - configure.zcml:1.7

Fred L. Drake, Jr. fred at zope.com
Tue Aug 19 16:02:47 EDT 2003


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

Modified Files:
	configure.zcml 
Log Message:
- wire in the fssync adapter for the new Dublin Core annotation
  storage
- normalize whitespace


=== Zope3/src/zope/app/dublincore/configure.zcml 1.6 => 1.7 ===
--- Zope3/src/zope/app/dublincore/configure.zcml:1.6	Fri Aug  8 19:27:19 2003
+++ Zope3/src/zope/app/dublincore/configure.zcml	Tue Aug 19 15:02:43 2003
@@ -1,6 +1,7 @@
 <configure
    xmlns="http://namespaces.zope.org/zope"
-   xmlns:event="http://namespaces.zope.org/event">
+   xmlns:event="http://namespaces.zope.org/event"
+   xmlns:fssync="http://namespaces.zope.org/fssync">
 
   <adapter
       factory=".annotatableadapter.ZDCAnnotatableAdapter"
@@ -14,20 +15,25 @@
              />
   </class>
 
-  <event:subscribe 
+  <event:subscribe
       subscriber = ".timeannotators.ModifiedAnnotator"
       event_types = "zope.app.interfaces.event.IObjectModifiedEvent"
       />
 
-  <event:subscribe 
+  <event:subscribe
       subscriber = ".timeannotators.CreatedAnnotator"
       event_types = "zope.app.interfaces.event.IObjectCreatedEvent"
       />
 
   <event:subscribe
     subscriber=".creatorannotator.CreatorAnnotator"
-    event_types="zope.app.interfaces.event.IObjectModifiedEvent 
+    event_types="zope.app.interfaces.event.IObjectModifiedEvent
                  zope.app.interfaces.event.IObjectCreatedEvent"
+    />
+
+  <fssync:adapter
+    class=".annotatableadapter.ZDCAnnotationData"
+    factory=".annotatableadapter.ZDCAnnotationDataAdapter"
     />
 
 </configure>




More information about the Zope3-Checkins mailing list