[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Undo - undo.zcml:1.1.2.3.2.1

Jim Fulton jim@zope.com
Mon, 3 Jun 2002 13:15:57 -0400


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

Modified Files:
      Tag: Zope3InWonderland-branch
	undo.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/Undo/undo.zcml 1.1.2.3 => 1.1.2.3.2.1 ===
 
 <security:protectClass class="Zope.App.Undo."
-    permission_id="Zope.ManageContent"
+    permission="Zope.ManageContent"
     names="index, action, getUndoInfo" />
 
 <browser:view name="undo"