[Zope3-checkins] CVS: Zope3/src/zope/app/browser/skins - configure.zcml:1.5

Tres Seaver tseaver@zope.com
Tue, 11 Mar 2003 18:13:02 -0500


Update of /cvs-repository/Zope3/src/zope/app/browser/skins
In directory cvs.zope.org:/tmp/cvs-serv9444

Modified Files:
	configure.zcml 
Log Message:


  - Add a 'debug' skin layer, with a "traceback display" view registered
    against IException.
    
  - Define a 'Debug' skin, which adds this layer to the two layers of
    the 'Rotterdam' skin.
    
  Usage:
  
    If you have a request which blows an exception out beyond the publisher,
    you can repeat the request, prefixing the path with '++Debug++', to see
    the traceback in the output (rather than having to switch context to the
    error logging service).  Particularly useful during application
    development.


=== Zope3/src/zope/app/browser/skins/configure.zcml 1.4 => 1.5 ===
--- Zope3/src/zope/app/browser/skins/configure.zcml:1.4	Thu Dec 26 18:13:48 2002
+++ Zope3/src/zope/app/browser/skins/configure.zcml	Tue Mar 11 18:12:28 2003
@@ -9,5 +9,6 @@
 <include package=".basic" />
 <include package=".zopetop" />
 <include package=".rotterdam" />
+<include package=".debug" />
 
 </zopeConfigure>