[Zope3-checkins] CVS: Zope3/src/zope/app/browser/exception -
configure.zcml:1.6.10.1
Jim Fulton
cvs-admin at zope.org
Tue Nov 18 17:26:50 EST 2003
Update of /cvs-repository/Zope3/src/zope/app/browser/exception
In directory cvs.zope.org:/tmp/cvs-serv19243/src/zope/app/browser/exception
Modified Files:
Tag: adaptergeddon-branch
configure.zcml
Log Message:
Implemented local presentation services.
=== Zope3/src/zope/app/browser/exception/configure.zcml 1.6 => 1.6.10.1 ===
--- Zope3/src/zope/app/browser/exception/configure.zcml:1.6 Mon Aug 25 15:28:33 2003
+++ Zope3/src/zope/app/browser/exception/configure.zcml Tue Nov 18 17:26:19 2003
@@ -2,25 +2,35 @@
xmlns:zope="http://namespaces.zope.org/zope"
xmlns="http://namespaces.zope.org/browser">
+ <page
+ for="zope.interface.common.interfaces.IException"
+ name="index.html"
+ template="default.pt"
+ permission="zope.Public"
+ />
+
<page
for="zope.exceptions.IUnauthorized"
name="index.html"
permission="zope.Public"
template="unauthorized.pt"
- class=".unauthorized.Unauthorized" />
+ class=".unauthorized.Unauthorized"
+ />
<page
for="zope.app.interfaces.exceptions.IUserError"
name="index.html"
permission="zope.Public"
template="user.pt"
- class=".user.UserErrorView" />
+ class=".user.UserErrorView"
+ />
<page
for="zope.app.interfaces.form.IWidgetInputError"
name="snippet"
permission="zope.Public"
class=".form.WidgetInputErrorView"
- attribute="snippet" />
+ attribute="snippet"
+ />
</zope:configure>
More information about the Zope3-Checkins
mailing list