[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/DublinCore - configure.zcml:1.3

Gary Poster gary@zope.com
Sat, 21 Dec 2002 10:33:15 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/DublinCore
In directory cvs.zope.org:/tmp/cvs-serv30423/lib/python/Zope/App/DublinCore

Modified Files:
	configure.zcml 
Log Message:
Moves ObjectEvent, GlobalEventService, and Logger from the Zope.Event package to the Zope.App.Event package.

Does *not* redesign/refactor LocalEventService to accept paths and hubids and reject non-wrapped objects.  Maybe later.

This checkin may require you to hose your Data.fs.

For quadruple checking, I'll send a note to zope3-dev when I've confirmed that a fresh checkout works.




=== Zope3/lib/python/Zope/App/DublinCore/configure.zcml 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/App/DublinCore/configure.zcml:1.2	Fri Oct  4 15:05:50 2002
+++ Zope3/lib/python/Zope/App/DublinCore/configure.zcml	Sat Dec 21 10:32:44 2002
@@ -10,12 +10,12 @@
 
   <event:subscribe 
       subscriber = ".TimeAnnotators.ModifiedAnnotator"
-      event_types = "Zope.Event.IObjectEvent.IObjectModifiedEvent"
+      event_types = "Zope.App.Event.IObjectEvent.IObjectModifiedEvent"
       />
 
   <event:subscribe 
       subscriber = ".TimeAnnotators.CreatedAnnotator"
-      event_types = "Zope.Event.IObjectEvent.IObjectCreatedEvent"
+      event_types = "Zope.App.Event.IObjectEvent.IObjectCreatedEvent"
       />
 
   <include package=".Browser" />