[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Formulator/Widgets/Browser - browser.zcml:1.1.4.3
Steve Alexander
steve@cat-box.net
Sun, 26 May 2002 08:45:20 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/Formulator/Widgets/Browser
In directory cvs.zope.org:/tmp/cvs-serv17123/lib/python/Zope/App/Formulator/Widgets/Browser
Modified Files:
Tag: Zope-3x-branch
browser.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/Formulator/Widgets/Browser/browser.zcml 1.1.4.2 => 1.1.4.3 ===
>
- <security:protectClass name=".FileWidget."
- permission_id="Zope.ManageContent"
- names="render, getContext" />
+ <security:protectClass class=".FileWidget."
+ permission_id="Zope.ManageContent"
+ names="render, getContext" />
- <security:protectClass name=".TextAreaWidget."
- permission_id="Zope.ManageContent"
- names="render, getContext" />
+ <security:protectClass class=".TextAreaWidget."
+ permission_id="Zope.ManageContent"
+ names="render, getContext" />
- <security:protectClass name=".TextWidget."
- permission_id="Zope.ManageContent"
- names="render, getContext" />
+ <security:protectClass class=".TextWidget."
+ permission_id="Zope.ManageContent"
+ names="render, getContext" />
</zopeConfigure>