[Zope3-checkins] CVS: Zope3/src/zope/app/http/exception - configure.zcml:1.5

Jim Fulton cvs-admin at zope.org
Fri Nov 21 12:12:54 EST 2003


Update of /cvs-repository/Zope3/src/zope/app/http/exception
In directory cvs.zope.org:/tmp/cvs-serv32535/src/zope/app/http/exception

Modified Files:
	configure.zcml 
Log Message:
Views must now be registered for request rather than presentation
types.


=== Zope3/src/zope/app/http/exception/configure.zcml 1.4 => 1.5 ===
--- Zope3/src/zope/app/http/exception/configure.zcml:1.4	Fri Aug 22 16:02:14 2003
+++ Zope3/src/zope/app/http/exception/configure.zcml	Fri Nov 21 12:12:23 2003
@@ -2,7 +2,7 @@
 
 <defaultView
     for="zope.exceptions.IUnauthorized"
-    type="zope.publisher.interfaces.http.IHTTPPresentation"
+    type="zope.publisher.interfaces.http.IHTTPRequest"
     name="index.html"
     permission="zope.Public"
     factory=".unauthorized.Unauthorized"
@@ -10,7 +10,7 @@
 
 <defaultView
     for="zope.exceptions.INotFoundError"
-    type="zope.publisher.interfaces.http.IHTTPPresentation"
+    type="zope.publisher.interfaces.http.IHTTPRequest"
     name="index.html"
     permission="zope.Public"
     factory=".notfound.NotFound"




More information about the Zope3-Checkins mailing list