[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/dav/configure.zcml
Allow some more fields to be used in WebDAV.
Stephan Richter
srichter at cosmos.phy.tufts.edu
Tue Aug 24 11:07:13 EDT 2004
Log message for revision 27242:
Allow some more fields to be used in WebDAV.
Changed:
U Zope3/trunk/src/zope/app/dav/configure.zcml
-=-
Modified: Zope3/trunk/src/zope/app/dav/configure.zcml
===================================================================
--- Zope3/trunk/src/zope/app/dav/configure.zcml 2004-08-24 13:39:56 UTC (rev 27241)
+++ Zope3/trunk/src/zope/app/dav/configure.zcml 2004-08-24 15:07:13 UTC (rev 27242)
@@ -56,7 +56,7 @@
<view
type="zope.publisher.interfaces.http.IHTTPRequest"
- for="zope.schema.interfaces.ITextLine"
+ for="zope.schema.interfaces.IBytes"
provides="zope.app.dav.interfaces.IDAVWidget"
factory="zope.app.dav.widget.TextDAVWidget"
permission="zope.Public"
@@ -64,6 +64,22 @@
<view
type="zope.publisher.interfaces.http.IHTTPRequest"
+ for="zope.schema.interfaces.IInt"
+ provides="zope.app.dav.interfaces.IDAVWidget"
+ factory="zope.app.dav.widget.TextDAVWidget"
+ permission="zope.Public"
+ />
+
+ <view
+ type="zope.publisher.interfaces.http.IHTTPRequest"
+ for="zope.schema.interfaces.IFloat"
+ provides="zope.app.dav.interfaces.IDAVWidget"
+ factory="zope.app.dav.widget.TextDAVWidget"
+ permission="zope.Public"
+ />
+
+ <view
+ type="zope.publisher.interfaces.http.IHTTPRequest"
for="zope.schema.interfaces.IDatetime"
provides="zope.app.dav.interfaces.IDAVWidget"
factory="zope.app.dav.widget.TextDAVWidget"
More information about the Zope3-Checkins
mailing list