]> err.no Git - sope/blob - sope-appserver/NGObjWeb/WebDAV/README
major improvements in resource/template lookup with SoProduct's
[sope] / sope-appserver / NGObjWeb / WebDAV / README
1 # $Id$
2
3 NGObjWeb WebDAV Implementation for SoObjects
4 ============================================
5
6 PROPFIND, TODO:
7 "A client may choose not to submit a request body.  An empty PROPFIND request 
8  body MUST be treated as a request for the names and values of all properties."
9 - means, an empty request is to be treated as allprop?
10
11 DASL:
12   ---snip---
13   <?xml version="1.0" encoding="utf-8" ?>
14   <D:searchrequest xmlns:D="DAV:">
15     <D:basicsearch>
16       <D:select><D:allprop/></D:select>
17       <D:from>
18         <D:scope>
19           <D:href>/evo/dav/helge/Private.plist/</D:href>
20           <D:depth>infinity</D:depth>
21         </D:scope>
22       </D:from>
23       <D:where>
24         <D:eq>
25           <D:prop><D:sn/></D:prop>
26           <D:literal>Mueller</D:literal>
27         </D:eq>
28       </D:where>
29     </D:basicsearch>
30   </D:searchrequest>
31   ---snap---
32   SQL-search queries use
33     <D:searchrequest><D:sql>
34   instead of
35     <D:searchrequest><D:basicsearch>