[Zope3-checkins] CVS: Zope3/src/zope/app/http/exception -
configure.zcml:1.4.10.1
Jim Fulton
cvs-admin at zope.org
Sun Nov 9 11:08:50 EST 2003
Update of /cvs-repository/Zope3/src/zope/app/http/exception
In directory cvs.zope.org:/tmp/cvs-serv15349/src/zope/app/http/exception
Modified Files:
Tag: adaptergeddon-branch
configure.zcml
Log Message:
Created a global presentation service that replaces the
global view, resource, and skin services.
Now look up presentation components by adapting from a request type,
rather than adapting to a presentation type.
=== Zope3/src/zope/app/http/exception/configure.zcml 1.4 => 1.4.10.1 ===
--- 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 Sun Nov 9 11:08:19 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