[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Introspector - introspector.zcml:1.1.2.2
Steve Alexander
steve@cat-box.net
Sun, 26 May 2002 08:45:25 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Introspector
In directory cvs.zope.org:/tmp/cvs-serv17123/lib/python/Zope/App/OFS/Introspector
Modified Files:
Tag: Zope-3x-branch
introspector.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/Introspector/introspector.zcml 1.1.2.1 => 1.1.2.2 ===
title="View Component Description" />
-<security:protectClass name="Zope.App.OFS.Introspector.Views.Browser.IntrospectorView."
- permission_id="Zope.View"
- />
+<security:protectClass
+ class="Zope.App.OFS.Introspector.Views.Browser.IntrospectorView."
+ permission_id="Zope.View" />
<browser:view
- name="api"
- factory="Zope.App.OFS.Introspector. Zope.App.OFS.Introspector.Views.Browser.IntrospectorView." />
+ name="api"
+ factory="Zope.App.OFS.Introspector.
+ Zope.App.OFS.Introspector.Views.Browser.IntrospectorView." />
-<security:protectClass name="Zope.App.OFS.Introspector."
- permission_id="Zope.View"
- interface="Zope.App.OFS.Introspector.IIntrospector."
-/>
+<security:protectClass class="Zope.App.OFS.Introspector."
+ permission_id="Zope.View"
+ interface="Zope.App.OFS.Introspector.IIntrospector." />
<adapter
factory="Zope.App.OFS.Introspector."
provides="Zope.App.OFS.Introspector.IIntrospector." />
-
-
</zopeConfigure>