[Zope3-checkins] CVS: Zope3/src/zope/app/dav - configure.zcml:1.10.12.1

Jim Fulton cvs-admin at zope.org
Sun Nov 9 11:08:47 EST 2003


Update of /cvs-repository/Zope3/src/zope/app/dav
In directory cvs.zope.org:/tmp/cvs-serv15349/src/zope/app/dav

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/dav/configure.zcml 1.10 => 1.10.12.1 ===
--- Zope3/src/zope/app/dav/configure.zcml:1.10	Wed Aug 13 17:28:30 2003
+++ Zope3/src/zope/app/dav/configure.zcml	Sun Nov  9 11:08:16 2003
@@ -5,7 +5,7 @@
   <view
       for="*"
       name="PROPFIND"
-      type="zope.publisher.interfaces.http.IHTTPPresentation"
+      type="zope.publisher.interfaces.http.IHTTPRequest"
       factory=".propfind.PROPFIND"
       permission="zope.ManageContent"
       allowed_attributes="PROPFIND setDepth getDepth" />
@@ -13,7 +13,7 @@
   <view
       for="zope.app.interfaces.http.INullResource"
       name="MKCOL"
-      type="zope.publisher.interfaces.http.IHTTPPresentation"
+      type="zope.publisher.interfaces.http.IHTTPRequest"
       factory=".mkcol.NullResource"
       permission="zope.ManageContent"
       allowed_attributes="MKCOL" />
@@ -21,7 +21,7 @@
   <view
       for="*"
       name="MKCOL"
-      type="zope.publisher.interfaces.http.IHTTPPresentation"
+      type="zope.publisher.interfaces.http.IHTTPRequest"
       factory=".mkcol.MKCOL"
       permission="zope.ManageContent"
       allowed_attributes="MKCOL" />
@@ -31,7 +31,7 @@
   <view
       for="*"
       name="MOVE"
-      type="zope.publisher.interfaces.http.IHTTPPresentation"
+      type="zope.publisher.interfaces.http.IHTTPRequest"
       factory=".move.MOVE"
       permission="zope.ManageContent"
       allowed_attributes="MOVE" />
@@ -39,7 +39,7 @@
   <view
       for="*"
       name="COPY"
-      type="zope.publisher.interfaces.http.IHTTPPresentation"
+      type="zope.publisher.interfaces.http.IHTTPRequest"
       factory=".copy.COPY"
       permission="zope.ManageContent"
       allowed_attributes="COPY" />
@@ -50,7 +50,7 @@
       for="zope.schema.interfaces.IText"
       name="view"
       permission="zope.Public"
-      type="zope.publisher.interfaces.http.IHTTPPresentation"
+      type="zope.publisher.interfaces.http.IHTTPRequest"
       factory="zope.app.dav.widget.TextDAVWidget"
       allowed_attributes="getData hasInput setRenderedValue __call__ __str__" />
   
@@ -58,7 +58,7 @@
       for="zope.schema.interfaces.ITextLine"
       name="view"
       permission="zope.Public"
-      type="zope.publisher.interfaces.http.IHTTPPresentation"
+      type="zope.publisher.interfaces.http.IHTTPRequest"
       factory="zope.app.dav.widget.TextDAVWidget"
       allowed_attributes="getData hasInput setRenderedValue __call__ __str__" />
   
@@ -66,7 +66,7 @@
       for="zope.schema.interfaces.IDatetime"
       name="view"
       permission="zope.Public"
-      type="zope.publisher.interfaces.http.IHTTPPresentation"
+      type="zope.publisher.interfaces.http.IHTTPRequest"
       factory="zope.app.dav.widget.TextDAVWidget"
       allowed_attributes="getData hasInput setRenderedValue __call__ __str__" />
   
@@ -74,7 +74,7 @@
       for="zope.schema.interfaces.ISequence"
       name="view"
       permission="zope.Public"
-      type="zope.publisher.interfaces.http.IHTTPPresentation"
+      type="zope.publisher.interfaces.http.IHTTPRequest"
       factory="zope.app.dav.widget.SequenceDAVWidget"
       allowed_attributes="getData hasInput setRenderedValue __call__ __str__" />
   




More information about the Zope3-Checkins mailing list