Network Working Group | J. Reschke |
Internet-Draft | greenbytes |
Intended status: Informational | October 2001 |
Expires: April 2002 |
This document is an Internet-Draft and is in full conformance with all provisions of Section 10 of RFC2026.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF), its areas, and its working groups. Note that other groups may also distribute working documents as Internet-Drafts.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work in progress”.¶
The list of current Internet-Drafts can be accessed at http://www.ietf.org/ietf/1id-abstracts.txt.¶
The list of Internet-Draft Shadow Directories can be accessed at http://www.ietf.org/shadow.html.¶
This Internet-Draft will expire in April 2002.¶
Copyright © The Internet Society (2001). All Rights Reserved.¶
In many cases, a versioning-aware client might want to display/include the URI of the version it's editing while it's being edited. For instance, an editor might include this as meta information, or the author of a document might want to know the URI of the version before it's checked in. A well-known example is the W3C way of referring to document versions in recommendations: it contains references to "the current version", to "this version" and to the "previous version". Something like this is currently impossible with the current draft version of WebDAV deltaV [deltaV], as the version URI is determined at the time of CHECKIN.¶
Distribution of this document is unlimited. Please send comments to the WebDAV versioning (delta-V) working group at ietf-dav-versioning@w3.org, which may be joined by sending a message with subject "subscribe" to ietf-dav-versioning-request@w3.org.¶
Discussions of the delta-V working group are archived at URL: http://lists.w3.org/Archives/Public/ietf-dav-versioning/.¶
In many cases, a versioning-aware client might want to display/include the URI of the version it's editing while it's being edited. For instance, an editor might include this as meta information, or the author of a document might want to know the URI of the version before it's checked in. A well-known example is the W3C way of referring to document versions in recommendations: it contains references to "the current version", to "this version" and to the "previous version". Something like this is currently impossible with the current draft version of WebDAV deltaV [deltaV], as the version URI is determined at the time of CHECKIN.¶
This specification builds on the infrastructure provided by the WebDAV Versioning Protocol, adding support for servers willing to compute an "expected CHECKIN URI" upon CHECKOUT, and using this URI at time of CHECKIN.¶
A client may ask for an "expected CHECKIN URI" upon CHECKOUT. This is done by placing DAV:compute-expected-checkin-URI as top-level element into the request body. The server is free to either ignore the request, or to return it's best guess about what the URI for a version resource created upon CHECKIN would be.¶
The client can detect the "expected CHECKIN URI" by parsing the response body for a top-level element called DAV:expected-checkin-URI.¶
>>Request
CHECKOUT /foo.html HTTP/1.1 Host: www.webdav.org Content-Type: text/xml Content-Length: xxxx <D:checkout xmlns:D="DAV:"> <D:compute-expected-version-URI /> </D:checkout>
>>Response
HTTP/1.1 200 OK Cache-Control: no-cache Content-Type: text/xml Content-Length: xxxx <D:checkout-response xmlns:D="DAV:"> <D:expected-version-URI>http://repo.webdav.org/his/23/ver/32</D:expected-version-URI> </D:checkout-response>
In this example, the server was able to compute the "expected CHECKIN URI" and returned it in the DAV:expected-version-URI element.¶
>>Request
CHECKOUT /foo.html HTTP/1.1 Host: www.webdav.org Content-Type: text/xml Content-Length: xxxx <D:checkout xmlns:D="DAV:"> <D:compute-expected-version-URI /> </D:checkout>
>>Response
HTTP/1.1 200 OK Cache-Control: no-cache
In this case, no response body was returned, and thus no "expected CHECKIN URI" is available. Simarily, the server may also return¶
>>Response
HTTP/1.1 200 OK Cache-Control: no-cache Content-Type: text/xml Content-Length: xxxx <D:checkout-response xmlns:D="DAV:"> ...other content... </D:checkout-response>
where a response body is available, but it doesn't contain the DAV:expected-checkin-URI element.¶
A client may submit the "expected CHECKIN URI" (obtained during CHECKOUT) upon a CHECKIN by placing it into a top-level DAV:expected-checkin-URI element in the request body. A server may ¶
>>Request
CHECKIN /foo.html HTTP/1.1 Host: www.webdav.org Content-Type: text/xml Content-Length: xxxx <D:checkin xmlns:D="DAV:"> <D:expected-version-URI>http://repo.webdav.org/his/23/ver/32</D:expected-version-URI> </D:checkin>
>>Response
HTTP/1.1 201 Created Location: http://repo.webdav.org/his/23/ver/32 Cache-Control: no-cache
>>Request
CHECKIN /foo.html HTTP/1.1 Host: www.webdav.org Content-Type: text/xml Content-Length: xxxx <D:checkin xmlns:D="DAV:"> <D:expected-version-URI>http://repo.webdav.org/his/23/ver/32</D:expected-version-URI> </D:checkin>
>>Response
HTTP/1.1 403 Forbidden Cache-Control: no-cache Content-Type: text/xml Content-Length: xxxx <D:checkin-response xmlns:D="DAV:"> <D:cannot-assign-expected-version-URI /> <D:expected-version-URI>http://repo.webdav.org/his/23/ver/33</D:expected-version-URI> </D:checkin-response>
This specification does introduce new protocol elements for the request and response bodies for CHECKIN and CHECKOUT.¶
Clients not aware of this specification will never submit the new protocol elements in a request and therefore never will see the new response elements.¶
Servers not aware of this specification will ignore the additional two request body elements which is legal behaviour according to this protocol (indicating that the protocol extension is not available).¶
This proposal does not introduce any new IANA considerations, since it does not specify any new namespaces (in the general sense), but merely uses existing ones.¶
To be supplied by the RFC Editor.¶
To be supplied by the RFC Editor.¶
Copyright © The Internet Society (2001). All Rights Reserved.¶
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to the Internet Society or other Internet organizations, except as needed for the purpose of developing Internet standards in which case the procedures for copyrights defined in the Internet Standards process must be followed, or as required to translate it into languages other than English.¶
The limited permissions granted above are perpetual and will not be revoked by the Internet Society or its successors or assigns.¶
This document and the information contained herein is provided on an “AS IS” basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.¶
The IETF takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on the IETF's procedures with respect to rights in standards-track and standards-related documentation can be found in BCP-11. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification can be obtained from the IETF Secretariat.¶
The IETF invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to practice this standard. Please address the information to the IETF Executive Director.¶