Re: Naive question

From: Geoffrey M. Clemm (geoffrey.clemm@rational.com)
Date: Fri, Sep 15 2000

  • Next message: Geoffrey M. Clemm: "Re: Naive question"

    Date: Fri, 15 Sep 2000 08:53:57 -0400 (EDT)
    Message-Id: <200009151253.IAA09678@tantalum.atria.com>
    From: "Geoffrey M. Clemm" <geoffrey.clemm@rational.com>
    To: ietf-dav-versioning@w3.org
    Subject: Re: Naive question
    
    
       From: "Boris Bokowski/OTT/OTI" <Boris_Bokowski@oti.com>
    
       ... when 
       displaying a tree of versioned resources in a GUI, I am interested in 
       getting the value of the selected versions' DAV:version-name property 
       using PROPFIND Depth: infinity. If the live properties of versions were 
       not visible through a version selector, I would have to issue one 
       additional request per resource to get the version name.
    
    This is handled in one request by the DAV:property-report.  For example:
    
    REPORT /ws/foo/mycollection HTTP/1.1
    Host: www.webdav.org
    Depth: infinity
    Content-Type: text/xml; charset="utf-8"
    Content-Length: xxxx 
           
    <?xml version="1.0" encoding="utf-8" ?>
    <D:property-report xmlns:D="DAV:">
      <D:version>
        <D:version-name/>
      </D:version>
    </D:property-report>
    	 	 
    Cheers,
    Geoff