[Zope3-checkins] CVS: Zope3/src/zope/app/http - configure.zcml:1.5.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
In directory cvs.zope.org:/tmp/cvs-serv15349/src/zope/app/http

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/configure.zcml 1.5 => 1.5.10.1 ===
--- Zope3/src/zope/app/http/configure.zcml:1.5	Fri Aug 22 16:02:14 2003
+++ Zope3/src/zope/app/http/configure.zcml	Sun Nov  9 11:08:18 2003
@@ -7,7 +7,7 @@
 <view
   for="zope.app.interfaces.container.ISimpleReadContainer"
   name="_traverse"
-  type="zope.publisher.interfaces.http.IHTTPPresentation"
+  type="zope.publisher.interfaces.http.IHTTPRequest"
   factory=".traversal.ContainerTraverser"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.IPublishTraverse"
@@ -16,7 +16,7 @@
 <view
   for="zope.app.interfaces.container.IItemContainer"
   name="_traverse"
-  type="zope.publisher.interfaces.http.IHTTPPresentation"
+  type="zope.publisher.interfaces.http.IHTTPRequest"
   factory=".traversal.ItemTraverser"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.IPublishTraverse"
@@ -25,7 +25,7 @@
 <view
   for="zope.app.interfaces.http.INullResource"
   name="PUT"
-  type="zope.publisher.interfaces.http.IHTTPPresentation"
+  type="zope.publisher.interfaces.http.IHTTPRequest"
   factory=".put.NullPUT"
   permission="zope.Public"
   allowed_attributes="PUT"
@@ -34,7 +34,7 @@
 <view
   for="*"
   name="PUT"
-  type="zope.publisher.interfaces.http.IHTTPPresentation"
+  type="zope.publisher.interfaces.http.IHTTPRequest"
   factory=".put.FilePUT"
   permission="zope.Public"
   allowed_attributes="PUT"
@@ -43,7 +43,7 @@
 <view
   for="*"
   name="DELETE"
-  type="zope.publisher.interfaces.http.IHTTPPresentation"
+  type="zope.publisher.interfaces.http.IHTTPRequest"
   factory=".delete.DELETE"
   permission="zope.Public"
   allowed_attributes="DELETE"
@@ -52,7 +52,7 @@
 <view
   for="*"
   name="OPTIONS"
-  type="zope.publisher.interfaces.http.IHTTPPresentation"
+  type="zope.publisher.interfaces.http.IHTTPRequest"
   factory=".options.OPTIONS"
   permission="zope.ManageContent"
   allowed_attributes="OPTIONS"




More information about the Zope3-Checkins mailing list