source: draft-ietf-httpbis-method-registrations/latest/draft-ietf-httpbis-method-registrations.html @ 1607

Last change on this file since 1607 was 1595, checked in by julian.reschke@…, 11 years ago

update references

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/html;charset=utf-8
File size: 37.7 KB
Line 
1<!DOCTYPE html
2  PUBLIC "-//W3C//DTD HTML 4.01//EN">
3<html lang="en">
4   <head profile="http://www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">
5      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6      <title>Initial Hypertext&nbsp;Transfer&nbsp;Protocol&nbsp;(HTTP)
7         Method&nbsp;Registrations
8      </title><script>
9var buttonsAdded = false;
10
11function init() {
12  var fb = document.createElement("div");
13  fb.className = "feedback noprint";
14  fb.setAttribute("onclick", "feedback();");
15  fb.appendChild(document.createTextNode("feedback"));
16
17  var bodyl = document.getElementsByTagName("body");
18  bodyl.item(0).appendChild(fb);
19}
20
21function feedback() {
22  toggleButtonsToElementsByName("h1");
23  toggleButtonsToElementsByName("h2");
24  toggleButtonsToElementsByName("h3");
25  toggleButtonsToElementsByName("h4");
26 
27  buttonsAdded = !buttonsAdded;
28}
29
30function toggleButtonsToElementsByName(name) {
31  var list = document.getElementsByTagName(name);
32  for (var i = 0; i < list.length; i++) {
33    toggleButton(list.item(i));
34  }
35}
36
37function toggleButton(node) {
38  if (! buttonsAdded) {
39 
40    // docname
41    var template = "mailto:ietf-http-wg@w3.org?subject={docname},%20%22{section}%22&body=<{ref}>:";
42
43    var id = node.getAttribute("id");
44    // better id available?
45    var titlelinks = node.getElementsByTagName("a");
46    for (var i = 0; i < titlelinks.length; i++) {
47      var tl = titlelinks.item(i);
48      if (tl.getAttribute("id")) {
49        id = tl.getAttribute("id");
50      }
51    }
52
53    // ref
54    var ref = window.location.toString();
55    var hash = ref.indexOf("#");
56    if (hash != -1) {
57      ref = ref.substring(0, hash);
58    }
59    if (id != "") {
60      ref += "#" + id;
61    }
62   
63    // docname
64    var docname = "draft-ietf-httpbis-method-registrations-latest";
65
66    // section
67    var section = node.textContent;
68    section = section.replace("\u00a0", " ");
69   
70    // build URI from template
71    var uri = template.replace("{docname}", encodeURIComponent(docname));
72    uri = uri.replace("{section}", encodeURIComponent(section));
73    uri = uri.replace("{ref}", encodeURIComponent(ref));
74 
75    var button = document.createElement("a");
76    button.className = "fbbutton noprint";
77    button.setAttribute("href", uri);
78    button.appendChild(document.createTextNode("send feedback"));
79    node.appendChild(button);
80  }
81  else {
82    var buttons = node.getElementsByTagName("a");
83    for (var i = 0; i < buttons.length; i++) {
84      var b = buttons.item(i);
85      if (b.className == "fbbutton noprint") {
86        node.removeChild(b);
87      }
88    }
89  }
90}</script><style type="text/css" title="Xml2Rfc (sans serif)">
91a {
92  text-decoration: none;
93}
94a.smpl {
95  color: black;
96}
97a:hover {
98  text-decoration: underline;
99}
100a:active {
101  text-decoration: underline;
102}
103address {
104  margin-top: 1em;
105  margin-left: 2em;
106  font-style: normal;
107}
108body {
109  color: black;
110  font-family: verdana, helvetica, arial, sans-serif;
111  font-size: 10pt;
112}
113cite {
114  font-style: normal;
115}
116dd {
117  margin-right: 2em;
118}
119dl {
120  margin-left: 2em;
121}
122
123ul.empty {
124  list-style-type: none;
125}
126ul.empty li {
127  margin-top: .5em;
128}
129dl p {
130  margin-left: 0em;
131}
132dt {
133  margin-top: .5em;
134}
135h1 {
136  font-size: 14pt;
137  line-height: 21pt;
138  page-break-after: avoid;
139}
140h1.np {
141  page-break-before: always;
142}
143h1 a {
144  color: #333333;
145}
146h2 {
147  font-size: 12pt;
148  line-height: 15pt;
149  page-break-after: avoid;
150}
151h3, h4, h5, h6 {
152  font-size: 10pt;
153  page-break-after: avoid;
154}
155h2 a, h3 a, h4 a, h5 a, h6 a {
156  color: black;
157}
158img {
159  margin-left: 3em;
160}
161li {
162  margin-left: 2em;
163  margin-right: 2em;
164}
165ol {
166  margin-left: 2em;
167  margin-right: 2em;
168}
169ol.la {
170  list-style-type: lower-alpha;
171}
172ol.ua {
173  list-style-type: upper-alpha;
174}
175ol p {
176  margin-left: 0em;
177}
178p {
179  margin-left: 2em;
180  margin-right: 2em;
181}
182pre {
183  margin-left: 3em;
184  background-color: lightyellow;
185  padding: .25em;
186}
187pre.text2 {
188  border-style: dotted;
189  border-width: 1px;
190  background-color: #f0f0f0;
191  width: 69em;
192}
193pre.inline {
194  background-color: white;
195  padding: 0em;
196}
197pre.text {
198  border-style: dotted;
199  border-width: 1px;
200  background-color: #f8f8f8;
201  width: 69em;
202}
203pre.drawing {
204  border-style: solid;
205  border-width: 1px;
206  background-color: #f8f8f8;
207  padding: 2em;
208}
209table {
210  margin-left: 2em;
211}
212table.tt {
213  vertical-align: top;
214}
215table.full {
216  border-style: outset;
217  border-width: 1px;
218}
219table.headers {
220  border-style: outset;
221  border-width: 1px;
222}
223table.tt td {
224  vertical-align: top;
225}
226table.full td {
227  border-style: inset;
228  border-width: 1px;
229}
230table.tt th {
231  vertical-align: top;
232}
233table.full th {
234  border-style: inset;
235  border-width: 1px;
236}
237table.headers th {
238  border-style: none none inset none;
239  border-width: 1px;
240}
241table.left {
242  margin-right: auto;
243}
244table.right {
245  margin-left: auto;
246}
247table.center {
248  margin-left: auto;
249  margin-right: auto;
250}
251caption {
252  caption-side: bottom;
253  font-weight: bold;
254  font-size: 9pt;
255  margin-top: .5em;
256}
257
258table.header {
259  border-spacing: 1px;
260  width: 95%;
261  font-size: 10pt;
262  color: white;
263}
264td.top {
265  vertical-align: top;
266}
267td.topnowrap {
268  vertical-align: top;
269  white-space: nowrap;
270}
271table.header td {
272  background-color: gray;
273  width: 50%;
274}
275td.reference {
276  vertical-align: top;
277  white-space: nowrap;
278  padding-right: 1em;
279}
280thead {
281  display:table-header-group;
282}
283ul.toc, ul.toc ul {
284  list-style: none;
285  margin-left: 1.5em;
286  margin-right: 0em;
287  padding-left: 0em;
288}
289ul.toc li {
290  line-height: 150%;
291  font-weight: bold;
292  font-size: 10pt;
293  margin-left: 0em;
294  margin-right: 0em;
295}
296ul.toc li li {
297  line-height: normal;
298  font-weight: normal;
299  font-size: 9pt;
300  margin-left: 0em;
301  margin-right: 0em;
302}
303li.excluded {
304  font-size: 0pt;
305}
306ul p {
307  margin-left: 0em;
308}
309
310.comment {
311  background-color: yellow;
312}
313.center {
314  text-align: center;
315}
316.error {
317  color: red;
318  font-style: italic;
319  font-weight: bold;
320}
321.figure {
322  font-weight: bold;
323  text-align: center;
324  font-size: 9pt;
325}
326.filename {
327  color: #333333;
328  font-weight: bold;
329  font-size: 12pt;
330  line-height: 21pt;
331  text-align: center;
332}
333.fn {
334  font-weight: bold;
335}
336.hidden {
337  display: none;
338}
339.left {
340  text-align: left;
341}
342.right {
343  text-align: right;
344}
345.title {
346  color: #990000;
347  font-size: 18pt;
348  line-height: 18pt;
349  font-weight: bold;
350  text-align: center;
351  margin-top: 36pt;
352}
353.vcardline {
354  display: block;
355}
356.warning {
357  font-size: 14pt;
358  background-color: yellow;
359}
360.feedback {
361  position: fixed;
362  bottom: 1%;
363  right: 1%;
364  padding: 3px 5px;
365  color: white;
366  border-radius: 5px;
367  background: #a00000;
368  border: 1px solid silver;
369}
370.fbbutton {
371  margin-left: 1em;
372  color: #303030;
373  font-size: small;
374  font-weight: normal;
375  background: #d0d000;
376  padding: 1px 4px;
377  border: 1px solid silver;
378  border-radius: 5px;
379}
380
381@media print {
382  .noprint {
383    display: none;
384  }
385 
386  a {
387    color: black;
388    text-decoration: none;
389  }
390
391  table.header {
392    width: 90%;
393  }
394
395  td.header {
396    width: 50%;
397    color: black;
398    background-color: white;
399    vertical-align: top;
400    font-size: 12pt;
401  }
402
403  ul.toc a::after {
404    content: leader('.') target-counter(attr(href), page);
405  }
406 
407  ul.ind li li a {
408    content: target-counter(attr(href), page);
409  }
410 
411  .print2col {
412    column-count: 2;
413    -moz-column-count: 2;
414    column-fill: auto;
415  }
416}
417
418@page {
419  @top-left {
420       content: "Internet-Draft";
421  }
422  @top-right {
423       content: "March 2012";
424  }
425  @top-center {
426       content: "HTTP Method Registrations";
427  }
428  @bottom-left {
429       content: "Reschke";
430  }
431  @bottom-center {
432       content: "Expires September 13, 2012";
433  }
434  @bottom-right {
435       content: "[Page " counter(page) "]";
436  }
437}
438
439@page:first {
440    @top-left {
441      content: normal;
442    }
443    @top-right {
444      content: normal;
445    }
446    @top-center {
447      content: normal;
448    }
449}
450</style><link rel="Contents" href="#rfc.toc">
451      <link rel="Author" href="#rfc.authors">
452      <link rel="Copyright" href="#rfc.copyrightnotice">
453      <link rel="Chapter" title="1 Introduction" href="#rfc.section.1">
454      <link rel="Chapter" title="2 Security Considerations" href="#rfc.section.2">
455      <link rel="Chapter" title="3 IANA Considerations" href="#rfc.section.3">
456      <link rel="Chapter" href="#rfc.section.4" title="4 Normative References">
457      <link rel="Appendix" title="A Initial Registry Contents" href="#rfc.section.A">
458      <link rel="Appendix" title="B Change Log (to be removed by RFC Editor before publication)" href="#rfc.section.B">
459      <meta name="generator" content="http://greenbytes.de/tech/webdav/rfc2629.xslt, Revision 1.570, 2012-02-13 19:17:35, XSLT vendor: SAXON 8.9 from Saxonica http://www.saxonica.com/">
460      <link rel="schema.dct" href="http://purl.org/dc/terms/">
461      <meta name="dct.creator" content="Reschke, J. F.">
462      <meta name="dct.identifier" content="urn:ietf:id:draft-ietf-httpbis-method-registrations-latest">
463      <meta name="dct.issued" scheme="ISO8601" content="2012-03-12">
464      <meta name="dct.abstract" content="This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in standards-track RFCs before the IANA HTTP Method Registry was established.">
465      <meta name="description" content="This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in standards-track RFCs before the IANA HTTP Method Registry was established.">
466   </head>
467   <body onload="init();">
468      <table class="header">
469         <tbody>
470            <tr>
471               <td class="left">HTTPbis Working Group</td>
472               <td class="right">J. Reschke</td>
473            </tr>
474            <tr>
475               <td class="left">Internet-Draft</td>
476               <td class="right">greenbytes</td>
477            </tr>
478            <tr>
479               <td class="left">Intended status: Informational</td>
480               <td class="right">March 12, 2012</td>
481            </tr>
482            <tr>
483               <td class="left">Expires: September 13, 2012</td>
484               <td class="right"></td>
485            </tr>
486         </tbody>
487      </table>
488      <p class="title">Initial Hypertext&nbsp;Transfer&nbsp;Protocol&nbsp;(HTTP) Method&nbsp;Registrations<br><span class="filename">draft-ietf-httpbis-method-registrations-latest</span></p>
489      <h1 id="rfc.abstract"><a href="#rfc.abstract">Abstract</a></h1>
490      <p>This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in standards-track RFCs before
491         the IANA HTTP Method Registry was established.
492      </p>
493      <h1 id="rfc.note.1"><a href="#rfc.note.1">Editorial Note (To be removed by RFC Editor)</a></h1>
494      <p>Discussion of this draft should take place on the HTTPBIS working group mailing list (ietf-http-wg@w3.org), which is archived
495         at &lt;<a href="http://lists.w3.org/Archives/Public/ietf-http-wg/">http://lists.w3.org/Archives/Public/ietf-http-wg/</a>&gt;.
496      </p> 
497      <p>The current issues list is at &lt;<a href="http://trac.tools.ietf.org/wg/httpbis/trac/query?component=method-registrations">http://trac.tools.ietf.org/wg/httpbis/trac/query?component=method-registrations</a>&gt; and related documents (including fancy diffs) can be found at &lt;<a href="http://tools.ietf.org/wg/httpbis/">http://tools.ietf.org/wg/httpbis/</a>&gt;.
498      </p> 
499      <p>The changes in this draft are summarized in <a href="#changes.since.07" title="Since draft-ietf-httpbis-method-registrations-07">Appendix&nbsp;B.8</a>.
500      </p>
501      <h1><a id="rfc.status" href="#rfc.status">Status of This Memo</a></h1>
502      <p>This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.</p>
503      <p>Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute
504         working documents as Internet-Drafts. The list of current Internet-Drafts is at <a href="http://datatracker.ietf.org/drafts/current/">http://datatracker.ietf.org/drafts/current/</a>.
505      </p>
506      <p>Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other
507         documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work
508         in progress”.
509      </p>
510      <p>This Internet-Draft will expire on September 13, 2012.</p>
511      <h1><a id="rfc.copyrightnotice" href="#rfc.copyrightnotice">Copyright Notice</a></h1>
512      <p>Copyright © 2012 IETF Trust and the persons identified as the document authors. All rights reserved.</p>
513      <p>This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights
514         and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License
515         text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified
516         BSD License.
517      </p>
518      <hr class="noprint">
519      <h1 class="np" id="rfc.toc"><a href="#rfc.toc">Table of Contents</a></h1>
520      <ul class="toc">
521         <li>1.&nbsp;&nbsp;&nbsp;<a href="#introduction">Introduction</a></li>
522         <li>2.&nbsp;&nbsp;&nbsp;<a href="#security.considerations">Security Considerations</a></li>
523         <li>3.&nbsp;&nbsp;&nbsp;<a href="#iana.considerations">IANA Considerations</a></li>
524         <li>4.&nbsp;&nbsp;&nbsp;<a href="#rfc.references">Normative References</a></li>
525         <li><a href="#rfc.authors">Author's Address</a></li>
526         <li>A.&nbsp;&nbsp;&nbsp;<a href="#updated.registry.contents">Initial Registry Contents</a></li>
527         <li>B.&nbsp;&nbsp;&nbsp;<a href="#change.log">Change Log (to be removed by RFC Editor before publication)</a><ul>
528               <li>B.1&nbsp;&nbsp;&nbsp;<a href="#rfc.section.B.1">Since draft-ietf-httpbis-method-registrations-00</a></li>
529               <li>B.2&nbsp;&nbsp;&nbsp;<a href="#rfc.section.B.2">Since draft-ietf-httpbis-method-registrations-01</a></li>
530               <li>B.3&nbsp;&nbsp;&nbsp;<a href="#rfc.section.B.3">Since draft-ietf-httpbis-method-registrations-02</a></li>
531               <li>B.4&nbsp;&nbsp;&nbsp;<a href="#rfc.section.B.4">Since draft-ietf-httpbis-method-registrations-03</a></li>
532               <li>B.5&nbsp;&nbsp;&nbsp;<a href="#changes.since.04">Since draft-ietf-httpbis-method-registrations-04</a></li>
533               <li>B.6&nbsp;&nbsp;&nbsp;<a href="#changes.since.05">Since draft-ietf-httpbis-method-registrations-05</a></li>
534               <li>B.7&nbsp;&nbsp;&nbsp;<a href="#changes.since.06">Since draft-ietf-httpbis-method-registrations-06</a></li>
535               <li>B.8&nbsp;&nbsp;&nbsp;<a href="#changes.since.07">Since draft-ietf-httpbis-method-registrations-07</a></li>
536            </ul>
537         </li>
538      </ul>
539      <h1 id="rfc.section.1" class="np"><a href="#rfc.section.1">1.</a>&nbsp;<a id="introduction" href="#introduction">Introduction</a></h1>
540      <p id="rfc.section.1.p.1">This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in standards-track RFCs before
541         the IANA HTTP Method Registry was established.
542      </p>
543      <h1 id="rfc.section.2"><a href="#rfc.section.2">2.</a>&nbsp;<a id="security.considerations" href="#security.considerations">Security Considerations</a></h1>
544      <p id="rfc.section.2.p.1">There are no security considerations related to the registration itself.</p>
545      <h1 id="rfc.section.3"><a href="#rfc.section.3">3.</a>&nbsp;<a id="iana.considerations" href="#iana.considerations">IANA Considerations</a></h1>
546      <p id="rfc.section.3.p.1"> <a href="#updated.registry.contents" title="Initial Registry Contents">Appendix&nbsp;A</a> provides initial registrations of HTTP method names for the IANA HTTP Method registry at &lt;<a href="http://www.iana.org/assignments/http-methods">http://www.iana.org/assignments/http-methods</a>&gt; (see <a href="../../draft-ietf-httpbis/19/p2-semantics.html#method.registry" title="Method Registry">Section 2.2</a> of <a href="#draft-ietf-httpbis-p2-semantics"><cite title="HTTP/1.1, part 2: Message Semantics">[draft-ietf-httpbis-p2-semantics]</cite></a>).
547      </p>
548      <h1 id="rfc.references"><a href="#rfc.section.4" id="rfc.section.4">4.</a> Normative References
549      </h1>
550      <table>                     
551         <tr>
552            <td class="reference"><b id="RFC2068">[RFC2068]</b></td>
553            <td class="top"><a href="mailto:fielding@ics.uci.edu" title="University of California, Irvine, Department of Information and Computer Science">Fielding, R.</a>, <a href="mailto:jg@w3.org" title="MIT Laboratory for Computer Science">Gettys, J.</a>, <a href="mailto:mogul@wrl.dec.com" title="Digital Equipment Corporation, Western Research Laboratory">Mogul, J.</a>, <a href="mailto:frystyk@w3.org" title="MIT Laboratory for Computer Science">Nielsen, H.</a>, and <a href="mailto:timbl@w3.org" title="MIT Laboratory for Computer Science">T. Berners-Lee</a>, “<a href="http://tools.ietf.org/html/rfc2068">Hypertext Transfer Protocol -- HTTP/1.1</a>”, RFC&nbsp;2068, January&nbsp;1997.
554            </td>
555         </tr>
556         <tr>
557            <td class="reference"><b id="RFC3253">[RFC3253]</b></td>
558            <td class="top"><a href="mailto:geoffrey.clemm@rational.com" title="Rational Software">Clemm, G.</a>, <a href="mailto:jamsden@us.ibm.com" title="IBM">Amsden, J.</a>, <a href="mailto:tim_ellison@uk.ibm.com" title="IBM">Ellison, T.</a>, <a href="mailto:ckaler@microsoft.com" title="Microsoft">Kaler, C.</a>, and <a href="mailto:ejw@cse.ucsc.edu" title="UC Santa Cruz, Dept. of Computer Science">J. Whitehead</a>, “<a href="http://tools.ietf.org/html/rfc3253">Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)</a>”, RFC&nbsp;3253, March&nbsp;2002.
559            </td>
560         </tr>
561         <tr>
562            <td class="reference"><b id="RFC3648">[RFC3648]</b></td>
563            <td class="top"><a href="mailto:ejw@cse.ucsc.edu" title="UC Santa Cruz, Dept. of Computer Science">Whitehead, J.</a> and <a href="mailto:julian.reschke@greenbytes.de" title="greenbytes GmbH">J. Reschke, Ed.</a>, “<a href="http://tools.ietf.org/html/rfc3648">Web Distributed Authoring and Versioning (WebDAV) Ordered Collections Protocol</a>”, RFC&nbsp;3648, December&nbsp;2003.
564            </td>
565         </tr>
566         <tr>
567            <td class="reference"><b id="RFC3744">[RFC3744]</b></td>
568            <td class="top"><a href="mailto:geoffrey.clemm@us.ibm.com" title="IBM">Clemm, G.</a>, <a href="mailto:julian.reschke@greenbytes.de" title="greenbytes GmbH">Reschke, J.</a>, <a href="mailto:eric.sedlar@oracle.com" title="Oracle Corporation">Sedlar, E.</a>, and <a href="mailto:ejw@cse.ucsc.edu" title="U.C. Santa Cruz, Dept. of Computer Science">J. Whitehead</a>, “<a href="http://tools.ietf.org/html/rfc3744">Web Distributed Authoring and Versioning (WebDAV) Access Control Protocol</a>”, RFC&nbsp;3744, May&nbsp;2004.
569            </td>
570         </tr>
571         <tr>
572            <td class="reference"><b id="RFC4437">[RFC4437]</b></td>
573            <td class="top"><a href="mailto:ejw@cse.ucsc.edu" title="UC Santa Cruz, Dept. of Computer Science">Whitehead, J.</a>, <a href="mailto:geoffrey.clemm@us.ibm.com" title="IBM">Clemm, G.</a>, and <a href="mailto:julian.reschke@greenbytes.de" title="greenbytes GmbH">J. Reschke, Ed.</a>, “<a href="http://tools.ietf.org/html/rfc4437">Web Distributed Authoring and Versioning (WebDAV) Redirect&nbsp;Reference&nbsp;Resources</a>”, RFC&nbsp;4437, March&nbsp;2006.
574            </td>
575         </tr>
576         <tr>
577            <td class="reference"><b id="RFC4791">[RFC4791]</b></td>
578            <td class="top"><a href="mailto:cyrus@daboo.name" title="Apple Inc.">Daboo, C.</a>, <a href="mailto:bernard.desruisseaux@oracle.com" title="Oracle Corporation">Desruisseaux, B.</a>, and <a href="mailto:ldusseault@commerce.net" title="CommerceNet">L. Dusseault</a>, “<a href="http://tools.ietf.org/html/rfc4791">Calendaring Extensions to WebDAV (CalDAV)</a>”, RFC&nbsp;4791, March&nbsp;2007.
579            </td>
580         </tr>
581         <tr>
582            <td class="reference"><b id="RFC4918">[RFC4918]</b></td>
583            <td class="top"><a href="mailto:ldusseault@commerce.net" title="CommerceNet">Dusseault, L., Ed.</a>, “<a href="http://tools.ietf.org/html/rfc4918">HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)</a>”, RFC&nbsp;4918, June&nbsp;2007.
584            </td>
585         </tr>
586         <tr>
587            <td class="reference"><b id="RFC5323">[RFC5323]</b></td>
588            <td class="top"><a href="mailto:julian.reschke@greenbytes.de" title="greenbytes GmbH">Reschke, J., Ed.</a>, <a href="mailto:Surendra.Reddy@mitrix.com" title="Mitrix, Inc.">Reddy, S.</a>, <a href="mailto:jrd3@alum.mit.edu">Davis, J.</a>, and <a href="mailto:ababich@us.ibm.com" title="IBM Corporation">A. Babich</a>, “<a href="http://tools.ietf.org/html/rfc5323">Web Distributed Authoring and Versioning (WebDAV) SEARCH</a>”, RFC&nbsp;5323, November&nbsp;2008.
589            </td>
590         </tr>
591         <tr>
592            <td class="reference"><b id="RFC5789">[RFC5789]</b></td>
593            <td class="top"><a href="mailto:lisa.dusseault@gmail.com" title="Linden Lab">Dusseault, L.</a> and <a href="mailto:jasnell@gmail.com">J. Snell</a>, “<a href="http://tools.ietf.org/html/rfc5789">PATCH Method for HTTP</a>”, RFC&nbsp;5789, March&nbsp;2010.
594            </td>
595         </tr>
596         <tr>
597            <td class="reference"><b id="RFC5842">[RFC5842]</b></td>
598            <td class="top"><a href="mailto:geoffrey.clemm@us.ibm.com" title="IBM">Clemm, G.</a>, <a href="mailto:ccjason@us.ibm.com" title="IBM Research">Crawford, J.</a>, <a href="mailto:julian.reschke@greenbytes.de" title="greenbytes GmbH">Reschke, J., Ed.</a>, and <a href="mailto:ejw@cse.ucsc.edu" title="UC Santa Cruz, Dept. of Computer Science">J. Whitehead</a>, “<a href="http://tools.ietf.org/html/rfc5842">Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)</a>”, RFC&nbsp;5842, April&nbsp;2010.
599            </td>
600         </tr>
601         <tr>
602            <td class="reference"><b id="draft-ietf-httpbis-p2-semantics">[draft-ietf-httpbis-p2-semantics]</b></td>
603            <td class="top"><a href="mailto:fielding@gbiv.com" title="Adobe Systems Incorporated">Fielding, R., Ed.</a>, <a href="mailto:ylafon@w3.org" title="World Wide Web Consortium">Lafon, Y., Ed.</a>, and <a href="mailto:julian.reschke@greenbytes.de" title="greenbytes GmbH">J. Reschke, Ed.</a>, “<a href="http://tools.ietf.org/html/draft-ietf-httpbis-p2-semantics-19">HTTP/1.1, part 2: Message Semantics</a>”, Internet-Draft&nbsp;draft-ietf-httpbis-p2-semantics-19 (work in progress), March&nbsp;2012.
604            </td>
605         </tr>
606      </table>
607      <div class="avoidbreak">
608         <h1 id="rfc.authors"><a href="#rfc.authors">Author's Address</a></h1>
609         <address class="vcard"><span class="vcardline"><span class="fn">Julian F. Reschke</span><span class="n hidden"><span class="family-name">Reschke</span><span class="given-name">Julian F.</span></span></span><span class="org vcardline">greenbytes GmbH</span><span class="adr"><span class="street-address vcardline">Hafenweg 16</span><span class="vcardline"><span class="locality">Muenster</span>, <span class="region">NW</span>&nbsp;<span class="postal-code">48155</span></span><span class="country-name vcardline">Germany</span></span><span class="vcardline">Email: <a href="mailto:julian.reschke@greenbytes.de"><span class="email">julian.reschke@greenbytes.de</span></a></span><span class="vcardline">URI: <a href="http://greenbytes.de/tech/webdav/" class="url">http://greenbytes.de/tech/webdav/</a></span></address>
610      </div>
611      <h1 id="rfc.section.A" class="np"><a href="#rfc.section.A">A.</a>&nbsp;<a id="updated.registry.contents" href="#updated.registry.contents">Initial Registry Contents</a></h1>
612      <div id="rfc.table.u.1">
613         <table class="tt full left" cellpadding="3" cellspacing="0">
614            <thead>
615               <tr>
616                  <th>Method Name</th>
617                  <th>Safe</th>
618                  <th>Reference</th>
619               </tr>
620            </thead>
621            <tbody>
622               <tr>
623                  <td class="left">ACL</td>
624                  <td class="left">no</td>
625                  <td class="left"><a href="#RFC3744"><cite title="Web Distributed Authoring and Versioning (WebDAV) Access Control Protocol">[RFC3744]</cite></a>, <a href="http://tools.ietf.org/html/rfc3744#section-8.1">Section 8.1</a></td>
626               </tr>
627               <tr>
628                  <td class="left">BASELINE-CONTROL</td>
629                  <td class="left">no</td>
630                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-12.6">Section 12.6</a></td>
631               </tr>
632               <tr>
633                  <td class="left">BIND</td>
634                  <td class="left">no</td>
635                  <td class="left"><a href="#RFC5842"><cite title="Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)">[RFC5842]</cite></a>, <a href="http://tools.ietf.org/html/rfc5842#section-4">Section 4</a></td>
636               </tr>
637               <tr>
638                  <td class="left">CHECKIN</td>
639                  <td class="left">no</td>
640                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-4.4">Section 4.4</a> and <a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-9.4">Section 9.4</a></td>
641               </tr>
642               <tr>
643                  <td class="left">CHECKOUT</td>
644                  <td class="left">no</td>
645                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-4.3">Section 4.3</a> and <a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-8.8">Section 8.8</a></td>
646               </tr>
647               <tr>
648                  <td class="left">COPY</td>
649                  <td class="left">no</td>
650                  <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="http://tools.ietf.org/html/rfc4918#section-9.8">Section 9.8</a></td>
651               </tr>
652               <tr>
653                  <td class="left">LABEL</td>
654                  <td class="left">no</td>
655                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-8.2">Section 8.2</a></td>
656               </tr>
657               <tr>
658                  <td class="left">LINK</td>
659                  <td class="left">no</td>
660                  <td class="left"><a href="#RFC2068"><cite title="Hypertext Transfer Protocol -- HTTP/1.1">[RFC2068]</cite></a>, <a href="http://tools.ietf.org/html/rfc2068#section-19.6.1.2">Section 19.6.1.2</a></td>
661               </tr>
662               <tr>
663                  <td class="left">LOCK</td>
664                  <td class="left">no</td>
665                  <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="http://tools.ietf.org/html/rfc4918#section-9.10">Section 9.10</a></td>
666               </tr>
667               <tr>
668                  <td class="left">MERGE</td>
669                  <td class="left">no</td>
670                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-11.2">Section 11.2</a></td>
671               </tr>
672               <tr>
673                  <td class="left">MKACTIVITY</td>
674                  <td class="left">no</td>
675                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-13.5">Section 13.5</a></td>
676               </tr>
677               <tr>
678                  <td class="left">MKCALENDAR</td>
679                  <td class="left">no</td>
680                  <td class="left"><a href="#RFC4791"><cite title="Calendaring Extensions to WebDAV (CalDAV)">[RFC4791]</cite></a>, <a href="http://tools.ietf.org/html/rfc4791#section-5.3.1">Section 5.3.1</a></td>
681               </tr>
682               <tr>
683                  <td class="left">MKCOL</td>
684                  <td class="left">no</td>
685                  <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="http://tools.ietf.org/html/rfc4918#section-9.3">Section 9.3</a></td>
686               </tr>
687               <tr>
688                  <td class="left">MKREDIRECTREF</td>
689                  <td class="left">no</td>
690                  <td class="left"><a href="#RFC4437"><cite title="Web Distributed Authoring and Versioning (WebDAV) Redirect&nbsp;Reference&nbsp;Resources">[RFC4437]</cite></a>, <a href="http://tools.ietf.org/html/rfc4437#section-6">Section 6</a></td>
691               </tr>
692               <tr>
693                  <td class="left">MKWORKSPACE</td>
694                  <td class="left">no</td>
695                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-6.3">Section 6.3</a></td>
696               </tr>
697               <tr>
698                  <td class="left">MOVE</td>
699                  <td class="left">no</td>
700                  <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="http://tools.ietf.org/html/rfc4918#section-9.9">Section 9.9</a></td>
701               </tr>
702               <tr>
703                  <td class="left">ORDERPATCH</td>
704                  <td class="left">no</td>
705                  <td class="left"><a href="#RFC3648"><cite title="Web Distributed Authoring and Versioning (WebDAV) Ordered Collections Protocol">[RFC3648]</cite></a>, <a href="http://tools.ietf.org/html/rfc3648#section-7">Section 7</a></td>
706               </tr>
707               <tr>
708                  <td class="left">PATCH</td>
709                  <td class="left">no</td>
710                  <td class="left"><a href="#RFC5789"><cite title="PATCH Method for HTTP">[RFC5789]</cite></a>, <a href="http://tools.ietf.org/html/rfc5789#section-2">Section 2</a></td>
711               </tr>
712               <tr>
713                  <td class="left">PROPFIND</td>
714                  <td class="left">yes</td>
715                  <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="http://tools.ietf.org/html/rfc4918#section-9.1">Section 9.1</a></td>
716               </tr>
717               <tr>
718                  <td class="left">PROPPATCH</td>
719                  <td class="left">no</td>
720                  <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="http://tools.ietf.org/html/rfc4918#section-9.2">Section 9.2</a></td>
721               </tr>
722               <tr>
723                  <td class="left">REBIND</td>
724                  <td class="left">no</td>
725                  <td class="left"><a href="#RFC5842"><cite title="Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)">[RFC5842]</cite></a>, <a href="http://tools.ietf.org/html/rfc5842#section-6">Section 6</a></td>
726               </tr>
727               <tr>
728                  <td class="left">REPORT</td>
729                  <td class="left">yes</td>
730                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-3.6">Section 3.6</a></td>
731               </tr>
732               <tr>
733                  <td class="left">SEARCH</td>
734                  <td class="left">yes</td>
735                  <td class="left"><a href="#RFC5323"><cite title="Web Distributed Authoring and Versioning (WebDAV) SEARCH">[RFC5323]</cite></a>, <a href="http://tools.ietf.org/html/rfc5323#section-2">Section 2</a></td>
736               </tr>
737               <tr>
738                  <td class="left">UNBIND</td>
739                  <td class="left">no</td>
740                  <td class="left"><a href="#RFC5842"><cite title="Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)">[RFC5842]</cite></a>, <a href="http://tools.ietf.org/html/rfc5842#section-5">Section 5</a></td>
741               </tr>
742               <tr>
743                  <td class="left">UNCHECKOUT</td>
744                  <td class="left">no</td>
745                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-4.5">Section 4.5</a></td>
746               </tr>
747               <tr>
748                  <td class="left">UNLINK</td>
749                  <td class="left">no</td>
750                  <td class="left"><a href="#RFC2068"><cite title="Hypertext Transfer Protocol -- HTTP/1.1">[RFC2068]</cite></a>, <a href="http://tools.ietf.org/html/rfc2068#section-19.6.1.3">Section 19.6.1.3</a></td>
751               </tr>
752               <tr>
753                  <td class="left">UNLOCK</td>
754                  <td class="left">no</td>
755                  <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="http://tools.ietf.org/html/rfc4918#section-9.11">Section 9.11</a></td>
756               </tr>
757               <tr>
758                  <td class="left">UPDATE</td>
759                  <td class="left">no</td>
760                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-7.1">Section 7.1</a></td>
761               </tr>
762               <tr>
763                  <td class="left">UPDATEREDIRECTREF</td>
764                  <td class="left">no</td>
765                  <td class="left"><a href="#RFC4437"><cite title="Web Distributed Authoring and Versioning (WebDAV) Redirect&nbsp;Reference&nbsp;Resources">[RFC4437]</cite></a>, <a href="http://tools.ietf.org/html/rfc4437#section-7">Section 7</a></td>
766               </tr>
767               <tr>
768                  <td class="left">VERSION-CONTROL</td>
769                  <td class="left">no</td>
770                  <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="http://tools.ietf.org/html/rfc3253#section-3.5">Section 3.5</a></td>
771               </tr>
772            </tbody>
773         </table>
774      </div>
775      <h1 id="rfc.section.B"><a href="#rfc.section.B">B.</a>&nbsp;<a id="change.log" href="#change.log">Change Log (to be removed by RFC Editor before publication)</a></h1>
776      <h2 id="rfc.section.B.1"><a href="#rfc.section.B.1">B.1</a>&nbsp;Since draft-ietf-httpbis-method-registrations-00
777      </h2>
778      <p id="rfc.section.B.1.p.1">Added SEARCH method (RFC 5323).</p>
779      <h2 id="rfc.section.B.2"><a href="#rfc.section.B.2">B.2</a>&nbsp;Since draft-ietf-httpbis-method-registrations-01
780      </h2>
781      <p id="rfc.section.B.2.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p>
782      <h2 id="rfc.section.B.3"><a href="#rfc.section.B.3">B.3</a>&nbsp;Since draft-ietf-httpbis-method-registrations-02
783      </h2>
784      <p id="rfc.section.B.3.p.1">Update draft-ietf-httpbis-p2-semantics reference. PATCH is now defined in draft-dusseault-http-patch. BIND, UNBIND and REBIND
785         are defined in draft-ietf-webdav-bind. Drop the "updates draft-ietf-httpbis-p2-semantics" clause.
786      </p>
787      <h2 id="rfc.section.B.4"><a href="#rfc.section.B.4">B.4</a>&nbsp;Since draft-ietf-httpbis-method-registrations-03
788      </h2>
789      <p id="rfc.section.B.4.p.1">draft-dusseault-http-patch was published as RFC 5789. draft-ietf-webdav-bind was published as RFC 5842. Fix typo in MKACTIVITY
790         entry. Update draft-ietf-httpbis-p2-semantics reference. Fix change log section titles.
791      </p>
792      <h2 id="rfc.section.B.5"><a href="#rfc.section.B.5">B.5</a>&nbsp;<a id="changes.since.04" href="#changes.since.04">Since draft-ietf-httpbis-method-registrations-04</a></h2>
793      <p id="rfc.section.B.5.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p>
794      <h2 id="rfc.section.B.6"><a href="#rfc.section.B.6">B.6</a>&nbsp;<a id="changes.since.05" href="#changes.since.05">Since draft-ietf-httpbis-method-registrations-05</a></h2>
795      <p id="rfc.section.B.6.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p>
796      <h2 id="rfc.section.B.7"><a href="#rfc.section.B.7">B.7</a>&nbsp;<a id="changes.since.06" href="#changes.since.06">Since draft-ietf-httpbis-method-registrations-06</a></h2>
797      <p id="rfc.section.B.7.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p>
798      <h2 id="rfc.section.B.8"><a href="#rfc.section.B.8">B.8</a>&nbsp;<a id="changes.since.07" href="#changes.since.07">Since draft-ietf-httpbis-method-registrations-07</a></h2>
799      <p id="rfc.section.B.8.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p>
800   </body>
801</html>
Note: See TracBrowser for help on using the repository browser.