[Zope3-checkins] CVS: Zope3/src/zope/app/services -
configure.zcml:1.79 hub.py:1.34 event.py:NONE
Stephan Richter
srichter at cosmos.phy.tufts.edu
Thu Mar 11 03:14:43 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv12137/src/zope/app/services
Modified Files:
configure.zcml hub.py
Removed Files:
event.py
Log Message:
Moved local event service code into zope.app.event.
=== Zope3/src/zope/app/services/configure.zcml 1.78 => 1.79 ===
--- Zope3/src/zope/app/services/configure.zcml:1.78 Wed Mar 10 18:10:47 2004
+++ Zope3/src/zope/app/services/configure.zcml Thu Mar 11 03:14:10 2004
@@ -1,6 +1,5 @@
<configure
xmlns="http://namespaces.zope.org/zope"
- xmlns:event="http://namespaces.zope.org/event"
xmlns:fssync="http://namespaces.zope.org/fssync"
i18n_domain="zope"
>
@@ -175,27 +174,6 @@
iterRegistrations" />
</content>
-
-<!-- Event Service -->
-<content class="zope.app.services.event.EventService">
- <factory
- id="Events"
- />
- <require
- permission="zope.View"
- attributes="publish notify"
- />
- <require
- permission="zope.ManageServices"
- attributes="bound unbound subscribe unsubscribe subscribeOnBind
- unsubscribedFrom subscribedTo"
- />
-</content>
-
-<serviceType
- id='Subscription'
- interface='zope.app.interfaces.services.event.ISubscriptionService'
- />
<!-- Utility Service -->
<include file="utility.zcml" />
=== Zope3/src/zope/app/services/hub.py 1.33 => 1.34 ===
--- Zope3/src/zope/app/services/hub.py:1.33 Sat Mar 6 11:50:30 2004
+++ Zope3/src/zope/app/services/hub.py Thu Mar 11 03:14:10 2004
@@ -46,7 +46,7 @@
from zope.app.folder.interfaces import IFolder
from zope.app.container.contained import ObjectAddedEvent
from zope.interface import implements
-from zope.app.services.event import ServiceSubscriberEventChannel
+from zope.app.event.localservice import ServiceSubscriberEventChannel
from zope.app.services.servicenames import HubIds
from zope.app.traversing \
=== Removed File Zope3/src/zope/app/services/event.py ===
More information about the Zope3-Checkins
mailing list