[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/LocalEventService - configure.zcml:1.5
Gary Poster
garyposter@earthlink.net
Sat, 22 Jun 2002 13:16:43 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/LocalEventService
In directory cvs.zope.org:/tmp/cvs-serv1899/lib/python/Zope/App/OFS/Services/LocalEventService
Modified Files:
configure.zcml
Log Message:
Small changes.
Mucking about with the new creation system, in preparation of deleting the old Addable class, registry, service, et al. ServiceManager now uses new creation system. Disabled Container adder in favor of Folder adder (see Container/Views/Browser/configure.zcml for short discussion).
There are a number of issues, from small to large (in my book) that are still to be worked out with the new creation system. I'm not addressing them, just cleaning up.
Hooked the deletion button in the root folder back up via some zcml (adding a browser page for the deletion ability, which may or may not be kosher).
fixed one zcml zmi_menu error; saw others.
=== Zope3/lib/python/Zope/App/OFS/Services/LocalEventService/configure.zcml 1.4 => 1.5 ===
<content class='.LocalEventService.'>
+ <factory
+ id="EventService"
+ permission="Zope.ManageServices"
+ title="Events"
+ description="Capture events from all the contents of this folder
+ and its entire nested folder structure" />
<require
permission="Zope.View"
attributes="publishEvent notify" />
@@ -16,13 +22,6 @@
<browser:icon name="zmi_icon" for=".LocalEventService.ILocalEventService"
file="./event_service.gif" />
-
- <service:factoryFromClass
- id='Events'
- class='.LocalEventService.'
- permission='Zope.ManageServices'
- title='Events'
- description='An event service: use sparingly' />
<include package=".Views" />