[Zope-Checkins] CVS: Zope3/lib/python/Zope/ComponentArchitecture - component.zcml:1.1.2.6
Steve Alexander
steve@cat-box.net
Sun, 26 May 2002 08:45:30 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/ComponentArchitecture
In directory cvs.zope.org:/tmp/cvs-serv17123/lib/python/Zope/ComponentArchitecture
Modified Files:
Tag: Zope-3x-branch
component.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/ComponentArchitecture/component.zcml 1.1.2.5 => 1.1.2.6 ===
<service name='Utilities'
component='.GlobalUtilityService.utilityService' />
-<security:protectClass name=".GlobalUtilityService+"
+<security:protectClass class=".GlobalUtilityService+"
permission_id="Zope.Public">
<security:protect interface=".IUtilityService+"
permission_id="Zope.Public" />
@@ -21,7 +21,7 @@
interface='.IAdapterService+' />
<service name='Adapters'
component='.GlobalAdapterService.adapterService' />
-<security:protectClass name=".GlobalAdapterService+"
+<security:protectClass class=".GlobalAdapterService+"
permission_id="Zope.Public">
<security:protect interface=".IAdapterService+"
permission_id="Zope.Public" />
@@ -33,7 +33,7 @@
interface='.IFactoryService+' />
<service name='Factories'
component='.GlobalFactoryService.factoryService' />
-<security:protectClass name=".GlobalFactoryService+"
+<security:protectClass class=".GlobalFactoryService+"
permission_id="Zope.Public">
<security:protect interface=".IFactoryService+"
permission_id="Zope.Public" />
@@ -45,7 +45,7 @@
interface='.ISkinService+' />
<service name='Skins'
component='.GlobalSkinService.skinService' />
-<security:protectClass name=".GlobalSkinService+"
+<security:protectClass class=".GlobalSkinService+"
permission_id="Zope.Public">
<security:protect interface=".ISkinService+"
permission_id="Zope.Public" />
@@ -57,7 +57,7 @@
interface='.IViewService+' />
<service name='Views'
component='.GlobalViewService.viewService' />
-<security:protectClass name=".GlobalViewService+"
+<security:protectClass class=".GlobalViewService+"
permission_id="Zope.Public">
<security:protect interface=".IViewService+"
permission_id="Zope.Public" />
@@ -69,7 +69,7 @@
interface='.IResourceService+' />
<service name='Resources'
component='.GlobalResourceService.resourceService' />
-<security:protectClass name=".GlobalResourceService+"
+<security:protectClass class=".GlobalResourceService+"
permission_id="Zope.Public">
<security:protect interface=".IResourceService+"
permission_id="Zope.Public" />