[Zope3-checkins] CVS: Zope3/src/zope/app/dav - configure.zcml:1.11
Jim Fulton
cvs-admin at zope.org
Fri Nov 21 12:12:53 EST 2003
Update of /cvs-repository/Zope3/src/zope/app/dav
In directory cvs.zope.org:/tmp/cvs-serv32535/src/zope/app/dav
Modified Files:
configure.zcml
Log Message:
Views must now be registered for request rather than presentation
types.
=== Zope3/src/zope/app/dav/configure.zcml 1.10 => 1.11 ===
--- Zope3/src/zope/app/dav/configure.zcml:1.10 Wed Aug 13 17:28:30 2003
+++ Zope3/src/zope/app/dav/configure.zcml Fri Nov 21 12:12:22 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