[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/ZMI - zmi-meta.zcml:1.1.2.7 zmi.zcml:1.1.2.9

Steve Alexander steve@cat-box.net
Sun, 26 May 2002 08:45:28 -0400


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

Modified Files:
      Tag: Zope-3x-branch
	zmi-meta.zcml zmi.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/ZMI/zmi-meta.zcml 1.1.2.6 => 1.1.2.7 ===
   <!-- Zope.App.ZMI.Service -->
   <directives namespace="http://namespaces.zope.org/service">
-   	 <directive name="factoryFromClass"
+       <directive name="factoryFromClass"
                attributes="name, class, permission_id, title, description"
                handler="Zope.App.ZMI.metaConfigure.ServiceClassDir" />
 


=== Zope3/lib/python/Zope/App/ZMI/zmi.zcml 1.1.2.8 => 1.1.2.9 ===
 
   <serviceType name="ZMIViewService"
-	       interface=".IZMIViewService." />
+           interface=".IZMIViewService." />
 
   <service name="ZMIViewService"
-	   component=".ZMIViewService.ZMIViews" />	
+       component=".ZMIViewService.ZMIViews" />
 
   <browser:view name="standard_macros"
                 factory=".StandardMacros." />
@@ -17,15 +17,15 @@
   <browser:view name="ZMIUtility"
                 factory=".ZMIViewUtility." />
 
-  <security:protectClass name=".StandardMacros."
+  <security:protectClass class=".StandardMacros."
                          permission_id="Zope.View"/>
 
-  <security:protectClass name=".ZMIViewUtility."
+  <security:protectClass class=".ZMIViewUtility."
                          permission_id="Zope.View"
                          names="getZMIViews"/>
 
   <security:protectClass 
-    name=".IGenericCreatorMarker."
+    class=".IGenericCreatorMarker."
     interface=".IGenericCreatorMarker."
     permission_id="Zope.ManageContent"  />