[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/ServiceManager - service-manager.zcml:1.1.4.2
Steve Alexander
steve@cat-box.net
Sun, 26 May 2002 08:45:26 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/ServiceManager
In directory cvs.zope.org:/tmp/cvs-serv17123/lib/python/Zope/App/OFS/Services/ServiceManager
Modified Files:
Tag: Zope-3x-branch
service-manager.zcml
Log Message:
changed "name" attribute of protectClass and publicClass zcml directives
to "class".
Note that I haven't touched the dummy protectClass directive in
Zope/Configuration/tests/... as it is only used as an arbitrary
directive for testing the directive-processing machinery.
=== Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/service-manager.zcml 1.1.4.1 => 1.1.4.2 ===
>
-<security:protectClass name="Zope.App.OFS.Services.ServiceManager+"
- permission_id="Zope.Public">
+<security:protectClass class="Zope.App.OFS.Services.ServiceManager+"
+ permission_id="Zope.Public">
<security:protect
- interface="Zope.App.OFS.Container.IContainer.IReadContainer"
- permission_id="Zope.Public" />
+ interface="Zope.App.OFS.Container.IContainer.IReadContainer"
+ permission_id="Zope.Public" />
<security:protect
- interface="Zope.App.OFS.Container.IContainer.IWriteContainer"
- permission_id="Zope.ManageServices" />
+ interface="Zope.App.OFS.Container.IContainer.IWriteContainer"
+ permission_id="Zope.ManageServices" />
<security:protect
- interface="Zope.App.OFS.Services.ServiceManager.IServiceManager+"
- permission_id="Zope.ManageServices" />
+ interface="Zope.App.OFS.Services.ServiceManager.IServiceManager+"
+ permission_id="Zope.ManageServices" />
</security:protectClass>
-<include package="Zope.App.OFS.Services.ServiceManager.Views" file="views.zcml" />
+<include package="Zope.App.OFS.Services.ServiceManager.Views"
+ file="views.zcml" />
<hook module="Zope.ComponentArchitecture" name="getServiceManager"
implementation=".hooks.getServiceManager_hook" />