[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/Views/Browser - browser.zcml:1.1.2.3.2.1
Jim Fulton
jim@zope.com
Mon, 3 Jun 2002 13:15:53 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv12372/lib/python/Zope/App/OFS/Content/ZPTPage/Views/Browser
Modified Files:
Tag: Zope3InWonderland-branch
browser.zcml
Log Message:
- Attribute renaming.
In directives that define things, renamed thing_id to id. For
example:
<permission permission_id='xxx' ...
became:
<permission id='xxx' ...
In directives that used things defined in this way, removed the id
suffix. For example:
<view permission_id='xxx' ...
became:
<view permission='xxx' ...
- Changed the way that exceptions from configuration files are
reported. Went back to normal Python tracebacks followed by
"configuration tracebacks". The configuration tracebacks look
somewhat similar to Python tracebacks, with file location
information. The most specific configuration file location is at the
end of the traceback, followed by the original error type and
value.
- Added a testxmlconfig function to the xmlconfig module to support
unit testing. This function suppresses usual configuration error
generation so that the original error is raised. This is needed so
that unit tests can detect that proper low-level errors are raised.
Note that everyone will need to edit their principals.zcml files to
reflect these changes!
=== Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/Views/Browser/browser.zcml 1.1.2.3 => 1.1.2.3.2.1 ===
<security:protectClass
class=".ZPTPageEval."
- permission_id="Zope.View" names="index" />
+ permission="Zope.View" names="index" />
<browser:view name="edit"
for="Zope.App.OFS.Content.ZPTPage.ZPTPage.IZPTPage."
@@ -20,7 +20,7 @@
<security:protectClass
class=".ZPTPageEdit."
- permission_id="Zope.View" names="index, action" />
+ permission="Zope.View" names="index, action" />
<!-- Registering all the field views for the browser -->