cybertools/browser/configure-errorviews.zcml
helmutm 9bd5b369eb provide specialized error views; activate via including configure-errorviews.zcml
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3483 fd906abe-77d9-0310-91a1-e0d9ade77398
2009-08-01 13:37:37 +00:00

21 lines
652 B
XML

<!-- $Id$ -->
<configure
xmlns:zope="http://namespaces.zope.org/zope"
xmlns="http://namespaces.zope.org/browser">
<page for="zope.interface.common.interfaces.IException"
name="index.html"
template="systemerror.pt"
class="zope.app.exception.systemerror.SystemErrorView"
permission="zope.Public"
layer="cybertools.browser.loops.Loops" />
<page for="zope.publisher.interfaces.INotFound"
name="index.html"
permission="zope.Public"
template="notfound.pt"
class="zope.app.exception.browser.notfound.NotFound"
layer="cybertools.browser.loops.Loops" />
</configure>