[282] | 1 | <!DOCTYPE html |
---|
| 2 | PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
---|
| 3 | <html lang="en"> |
---|
[586] | 4 | <head profile="http://www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/"> |
---|
[282] | 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
| 6 | <title>Initial Hypertext Transfer Protocol (HTTP) |
---|
| 7 | Method Registrations |
---|
[1522] | 8 | </title><script> |
---|
| 9 | var buttonsAdded = false; |
---|
| 10 | |
---|
| 11 | function init() { |
---|
| 12 | var fb = document.createElement("div"); |
---|
[1552] | 13 | fb.className = "feedback noprint"; |
---|
[1522] | 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 | |
---|
| 21 | function feedback() { |
---|
| 22 | toggleButtonsToElementsByName("h1"); |
---|
| 23 | toggleButtonsToElementsByName("h2"); |
---|
| 24 | toggleButtonsToElementsByName("h3"); |
---|
| 25 | toggleButtonsToElementsByName("h4"); |
---|
| 26 | |
---|
| 27 | buttonsAdded = !buttonsAdded; |
---|
| 28 | } |
---|
| 29 | |
---|
| 30 | function 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 | |
---|
| 37 | function 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 |
---|
[2192] | 64 | var docname = "draft-ietf-httpbis-method-registrations-11"; |
---|
[1522] | 65 | |
---|
| 66 | // section |
---|
| 67 | var section = node.textContent; |
---|
[1552] | 68 | section = section.replace("\u00a0", " "); |
---|
[1522] | 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"); |
---|
[1552] | 76 | button.className = "fbbutton noprint"; |
---|
[1522] | 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); |
---|
[1552] | 85 | if (b.className == "fbbutton noprint") { |
---|
[1522] | 86 | node.removeChild(b); |
---|
| 87 | } |
---|
| 88 | } |
---|
| 89 | } |
---|
| 90 | }</script><style type="text/css" title="Xml2Rfc (sans serif)"> |
---|
[282] | 91 | a { |
---|
| 92 | text-decoration: none; |
---|
| 93 | } |
---|
| 94 | a.smpl { |
---|
| 95 | color: black; |
---|
| 96 | } |
---|
| 97 | a:hover { |
---|
| 98 | text-decoration: underline; |
---|
| 99 | } |
---|
| 100 | a:active { |
---|
| 101 | text-decoration: underline; |
---|
| 102 | } |
---|
| 103 | address { |
---|
| 104 | margin-top: 1em; |
---|
| 105 | margin-left: 2em; |
---|
| 106 | font-style: normal; |
---|
| 107 | } |
---|
| 108 | body { |
---|
| 109 | color: black; |
---|
| 110 | font-family: verdana, helvetica, arial, sans-serif; |
---|
| 111 | font-size: 10pt; |
---|
[1667] | 112 | margin-right: 2em; |
---|
[282] | 113 | } |
---|
| 114 | cite { |
---|
| 115 | font-style: normal; |
---|
| 116 | } |
---|
| 117 | dl { |
---|
| 118 | margin-left: 2em; |
---|
| 119 | } |
---|
[733] | 120 | ul.empty { |
---|
| 121 | list-style-type: none; |
---|
| 122 | } |
---|
| 123 | ul.empty li { |
---|
[282] | 124 | margin-top: .5em; |
---|
| 125 | } |
---|
| 126 | dl p { |
---|
| 127 | margin-left: 0em; |
---|
| 128 | } |
---|
| 129 | dt { |
---|
| 130 | margin-top: .5em; |
---|
| 131 | } |
---|
| 132 | h1 { |
---|
| 133 | font-size: 14pt; |
---|
| 134 | line-height: 21pt; |
---|
| 135 | page-break-after: avoid; |
---|
| 136 | } |
---|
| 137 | h1.np { |
---|
| 138 | page-break-before: always; |
---|
| 139 | } |
---|
| 140 | h1 a { |
---|
| 141 | color: #333333; |
---|
| 142 | } |
---|
| 143 | h2 { |
---|
| 144 | font-size: 12pt; |
---|
| 145 | line-height: 15pt; |
---|
| 146 | page-break-after: avoid; |
---|
| 147 | } |
---|
[446] | 148 | h3, h4, h5, h6 { |
---|
[282] | 149 | font-size: 10pt; |
---|
| 150 | page-break-after: avoid; |
---|
| 151 | } |
---|
[446] | 152 | h2 a, h3 a, h4 a, h5 a, h6 a { |
---|
[282] | 153 | color: black; |
---|
| 154 | } |
---|
| 155 | img { |
---|
| 156 | margin-left: 3em; |
---|
| 157 | } |
---|
| 158 | li { |
---|
| 159 | margin-left: 2em; |
---|
| 160 | } |
---|
| 161 | ol { |
---|
| 162 | margin-left: 2em; |
---|
| 163 | } |
---|
[1145] | 164 | ol.la { |
---|
| 165 | list-style-type: lower-alpha; |
---|
| 166 | } |
---|
| 167 | ol.ua { |
---|
| 168 | list-style-type: upper-alpha; |
---|
| 169 | } |
---|
[282] | 170 | ol p { |
---|
| 171 | margin-left: 0em; |
---|
| 172 | } |
---|
| 173 | p { |
---|
| 174 | margin-left: 2em; |
---|
| 175 | } |
---|
| 176 | pre { |
---|
| 177 | margin-left: 3em; |
---|
| 178 | background-color: lightyellow; |
---|
| 179 | padding: .25em; |
---|
[1667] | 180 | page-break-inside: avoid; |
---|
[282] | 181 | } |
---|
| 182 | pre.text2 { |
---|
| 183 | border-style: dotted; |
---|
| 184 | border-width: 1px; |
---|
| 185 | background-color: #f0f0f0; |
---|
| 186 | width: 69em; |
---|
| 187 | } |
---|
| 188 | pre.inline { |
---|
| 189 | background-color: white; |
---|
| 190 | padding: 0em; |
---|
| 191 | } |
---|
| 192 | pre.text { |
---|
| 193 | border-style: dotted; |
---|
| 194 | border-width: 1px; |
---|
| 195 | background-color: #f8f8f8; |
---|
| 196 | width: 69em; |
---|
| 197 | } |
---|
| 198 | pre.drawing { |
---|
| 199 | border-style: solid; |
---|
| 200 | border-width: 1px; |
---|
| 201 | background-color: #f8f8f8; |
---|
| 202 | padding: 2em; |
---|
| 203 | } |
---|
| 204 | table { |
---|
| 205 | margin-left: 2em; |
---|
| 206 | } |
---|
| 207 | table.tt { |
---|
| 208 | vertical-align: top; |
---|
| 209 | } |
---|
| 210 | table.full { |
---|
| 211 | border-style: outset; |
---|
| 212 | border-width: 1px; |
---|
| 213 | } |
---|
| 214 | table.headers { |
---|
| 215 | border-style: outset; |
---|
| 216 | border-width: 1px; |
---|
| 217 | } |
---|
| 218 | table.tt td { |
---|
| 219 | vertical-align: top; |
---|
| 220 | } |
---|
| 221 | table.full td { |
---|
| 222 | border-style: inset; |
---|
| 223 | border-width: 1px; |
---|
| 224 | } |
---|
| 225 | table.tt th { |
---|
| 226 | vertical-align: top; |
---|
| 227 | } |
---|
| 228 | table.full th { |
---|
| 229 | border-style: inset; |
---|
| 230 | border-width: 1px; |
---|
| 231 | } |
---|
| 232 | table.headers th { |
---|
| 233 | border-style: none none inset none; |
---|
| 234 | border-width: 1px; |
---|
| 235 | } |
---|
[713] | 236 | table.left { |
---|
| 237 | margin-right: auto; |
---|
| 238 | } |
---|
| 239 | table.right { |
---|
| 240 | margin-left: auto; |
---|
| 241 | } |
---|
| 242 | table.center { |
---|
| 243 | margin-left: auto; |
---|
| 244 | margin-right: auto; |
---|
| 245 | } |
---|
[456] | 246 | caption { |
---|
| 247 | caption-side: bottom; |
---|
| 248 | font-weight: bold; |
---|
| 249 | font-size: 9pt; |
---|
| 250 | margin-top: .5em; |
---|
| 251 | } |
---|
| 252 | |
---|
[282] | 253 | table.header { |
---|
[733] | 254 | border-spacing: 1px; |
---|
[282] | 255 | width: 95%; |
---|
| 256 | font-size: 10pt; |
---|
| 257 | color: white; |
---|
| 258 | } |
---|
| 259 | td.top { |
---|
| 260 | vertical-align: top; |
---|
| 261 | } |
---|
| 262 | td.topnowrap { |
---|
| 263 | vertical-align: top; |
---|
| 264 | white-space: nowrap; |
---|
| 265 | } |
---|
[733] | 266 | table.header td { |
---|
[282] | 267 | background-color: gray; |
---|
| 268 | width: 50%; |
---|
| 269 | } |
---|
| 270 | td.reference { |
---|
| 271 | vertical-align: top; |
---|
| 272 | white-space: nowrap; |
---|
| 273 | padding-right: 1em; |
---|
| 274 | } |
---|
| 275 | thead { |
---|
| 276 | display:table-header-group; |
---|
| 277 | } |
---|
[1072] | 278 | ul.toc, ul.toc ul { |
---|
[282] | 279 | list-style: none; |
---|
| 280 | margin-left: 1.5em; |
---|
| 281 | padding-left: 0em; |
---|
| 282 | } |
---|
[1072] | 283 | ul.toc li { |
---|
[282] | 284 | line-height: 150%; |
---|
| 285 | font-weight: bold; |
---|
| 286 | font-size: 10pt; |
---|
| 287 | margin-left: 0em; |
---|
| 288 | } |
---|
[1072] | 289 | ul.toc li li { |
---|
[282] | 290 | line-height: normal; |
---|
| 291 | font-weight: normal; |
---|
| 292 | font-size: 9pt; |
---|
| 293 | margin-left: 0em; |
---|
| 294 | } |
---|
[1072] | 295 | li.excluded { |
---|
[282] | 296 | font-size: 0pt; |
---|
| 297 | } |
---|
| 298 | ul p { |
---|
| 299 | margin-left: 0em; |
---|
| 300 | } |
---|
| 301 | |
---|
| 302 | .comment { |
---|
| 303 | background-color: yellow; |
---|
| 304 | } |
---|
| 305 | .center { |
---|
| 306 | text-align: center; |
---|
| 307 | } |
---|
| 308 | .error { |
---|
| 309 | color: red; |
---|
| 310 | font-style: italic; |
---|
| 311 | font-weight: bold; |
---|
| 312 | } |
---|
| 313 | .figure { |
---|
| 314 | font-weight: bold; |
---|
| 315 | text-align: center; |
---|
| 316 | font-size: 9pt; |
---|
| 317 | } |
---|
| 318 | .filename { |
---|
| 319 | color: #333333; |
---|
| 320 | font-weight: bold; |
---|
| 321 | font-size: 12pt; |
---|
| 322 | line-height: 21pt; |
---|
| 323 | text-align: center; |
---|
| 324 | } |
---|
| 325 | .fn { |
---|
| 326 | font-weight: bold; |
---|
| 327 | } |
---|
| 328 | .hidden { |
---|
| 329 | display: none; |
---|
| 330 | } |
---|
| 331 | .left { |
---|
| 332 | text-align: left; |
---|
| 333 | } |
---|
| 334 | .right { |
---|
| 335 | text-align: right; |
---|
| 336 | } |
---|
| 337 | .title { |
---|
| 338 | color: #990000; |
---|
| 339 | font-size: 18pt; |
---|
| 340 | line-height: 18pt; |
---|
| 341 | font-weight: bold; |
---|
| 342 | text-align: center; |
---|
| 343 | margin-top: 36pt; |
---|
| 344 | } |
---|
| 345 | .vcardline { |
---|
| 346 | display: block; |
---|
| 347 | } |
---|
| 348 | .warning { |
---|
| 349 | font-size: 14pt; |
---|
| 350 | background-color: yellow; |
---|
| 351 | } |
---|
[1522] | 352 | .feedback { |
---|
| 353 | position: fixed; |
---|
| 354 | bottom: 1%; |
---|
| 355 | right: 1%; |
---|
| 356 | padding: 3px 5px; |
---|
| 357 | color: white; |
---|
| 358 | border-radius: 5px; |
---|
| 359 | background: #a00000; |
---|
| 360 | border: 1px solid silver; |
---|
| 361 | } |
---|
| 362 | .fbbutton { |
---|
| 363 | margin-left: 1em; |
---|
| 364 | color: #303030; |
---|
| 365 | font-size: small; |
---|
| 366 | font-weight: normal; |
---|
| 367 | background: #d0d000; |
---|
| 368 | padding: 1px 4px; |
---|
| 369 | border: 1px solid silver; |
---|
| 370 | border-radius: 5px; |
---|
| 371 | } |
---|
[282] | 372 | |
---|
| 373 | @media print { |
---|
| 374 | .noprint { |
---|
| 375 | display: none; |
---|
| 376 | } |
---|
| 377 | |
---|
| 378 | a { |
---|
| 379 | color: black; |
---|
| 380 | text-decoration: none; |
---|
| 381 | } |
---|
| 382 | |
---|
| 383 | table.header { |
---|
| 384 | width: 90%; |
---|
| 385 | } |
---|
| 386 | |
---|
| 387 | td.header { |
---|
| 388 | width: 50%; |
---|
| 389 | color: black; |
---|
| 390 | background-color: white; |
---|
| 391 | vertical-align: top; |
---|
| 392 | font-size: 12pt; |
---|
| 393 | } |
---|
| 394 | |
---|
[1825] | 395 | ul.toc a:nth-child(2)::after { |
---|
[282] | 396 | content: leader('.') target-counter(attr(href), page); |
---|
| 397 | } |
---|
| 398 | |
---|
[1072] | 399 | ul.ind li li a { |
---|
[282] | 400 | content: target-counter(attr(href), page); |
---|
| 401 | } |
---|
| 402 | |
---|
| 403 | .print2col { |
---|
| 404 | column-count: 2; |
---|
[1552] | 405 | -moz-column-count: 2; |
---|
[282] | 406 | column-fill: auto; |
---|
| 407 | } |
---|
| 408 | } |
---|
| 409 | |
---|
| 410 | @page { |
---|
| 411 | @top-left { |
---|
[754] | 412 | content: "Internet-Draft"; |
---|
[282] | 413 | } |
---|
| 414 | @top-right { |
---|
[2177] | 415 | content: "February 2013"; |
---|
[282] | 416 | } |
---|
| 417 | @top-center { |
---|
| 418 | content: "HTTP Method Registrations"; |
---|
| 419 | } |
---|
| 420 | @bottom-left { |
---|
| 421 | content: "Reschke"; |
---|
| 422 | } |
---|
| 423 | @bottom-center { |
---|
[2191] | 424 | content: "Expires August 27, 2013"; |
---|
[282] | 425 | } |
---|
| 426 | @bottom-right { |
---|
| 427 | content: "[Page " counter(page) "]"; |
---|
| 428 | } |
---|
| 429 | } |
---|
| 430 | |
---|
| 431 | @page:first { |
---|
| 432 | @top-left { |
---|
| 433 | content: normal; |
---|
| 434 | } |
---|
| 435 | @top-right { |
---|
| 436 | content: normal; |
---|
| 437 | } |
---|
| 438 | @top-center { |
---|
| 439 | content: normal; |
---|
| 440 | } |
---|
| 441 | } |
---|
| 442 | </style><link rel="Contents" href="#rfc.toc"> |
---|
| 443 | <link rel="Author" href="#rfc.authors"> |
---|
[754] | 444 | <link rel="Copyright" href="#rfc.copyrightnotice"> |
---|
[282] | 445 | <link rel="Chapter" title="1 Introduction" href="#rfc.section.1"> |
---|
| 446 | <link rel="Chapter" title="2 Security Considerations" href="#rfc.section.2"> |
---|
| 447 | <link rel="Chapter" title="3 IANA Considerations" href="#rfc.section.3"> |
---|
| 448 | <link rel="Chapter" href="#rfc.section.4" title="4 Normative References"> |
---|
| 449 | <link rel="Appendix" title="A Initial Registry Contents" href="#rfc.section.A"> |
---|
[414] | 450 | <link rel="Appendix" title="B Change Log (to be removed by RFC Editor before publication)" href="#rfc.section.B"> |
---|
[2177] | 451 | <meta name="generator" content="http://greenbytes.de/tech/webdav/rfc2629.xslt, Revision 1.590, 2013/01/23 17:59:36, XSLT vendor: SAXON 8.9 from Saxonica http://www.saxonica.com/"> |
---|
[754] | 452 | <link rel="schema.dct" href="http://purl.org/dc/terms/"> |
---|
| 453 | <meta name="dct.creator" content="Reschke, J. F."> |
---|
[2192] | 454 | <meta name="dct.identifier" content="urn:ietf:id:draft-ietf-httpbis-method-registrations-11"> |
---|
[2191] | 455 | <meta name="dct.issued" scheme="ISO8601" content="2013-02-23"> |
---|
[754] | 456 | <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."> |
---|
[713] | 457 | <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."> |
---|
[282] | 458 | </head> |
---|
[1522] | 459 | <body onload="init();"> |
---|
[733] | 460 | <table class="header"> |
---|
| 461 | <tbody> |
---|
| 462 | <tr> |
---|
| 463 | <td class="left">HTTPbis Working Group</td> |
---|
[832] | 464 | <td class="right">J. Reschke</td> |
---|
[733] | 465 | </tr> |
---|
| 466 | <tr> |
---|
[754] | 467 | <td class="left">Internet-Draft</td> |
---|
[733] | 468 | <td class="right">greenbytes</td> |
---|
| 469 | </tr> |
---|
| 470 | <tr> |
---|
| 471 | <td class="left">Intended status: Informational</td> |
---|
[2191] | 472 | <td class="right">February 23, 2013</td> |
---|
[733] | 473 | </tr> |
---|
| 474 | <tr> |
---|
[2191] | 475 | <td class="left">Expires: August 27, 2013</td> |
---|
[733] | 476 | <td class="right"></td> |
---|
| 477 | </tr> |
---|
| 478 | </tbody> |
---|
[282] | 479 | </table> |
---|
[2192] | 480 | <p class="title">Initial Hypertext Transfer Protocol (HTTP) Method Registrations<br><span class="filename">draft-ietf-httpbis-method-registrations-11</span></p> |
---|
[725] | 481 | <h1 id="rfc.abstract"><a href="#rfc.abstract">Abstract</a></h1> |
---|
| 482 | <p>This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in standards-track RFCs before |
---|
| 483 | the IANA HTTP Method Registry was established. |
---|
| 484 | </p> |
---|
[984] | 485 | <h1 id="rfc.note.1"><a href="#rfc.note.1">Editorial Note (To be removed by RFC Editor)</a></h1> |
---|
[1764] | 486 | <p>Discussion of this draft takes place on the HTTPBIS working group mailing list (ietf-http-wg@w3.org), which is archived at <<a href="http://lists.w3.org/Archives/Public/ietf-http-wg/">http://lists.w3.org/Archives/Public/ietf-http-wg/</a>>. |
---|
[984] | 487 | </p> |
---|
[1269] | 488 | <p>The current issues list is at <<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>> and related documents (including fancy diffs) can be found at <<a href="http://tools.ietf.org/wg/httpbis/">http://tools.ietf.org/wg/httpbis/</a>>. |
---|
| 489 | </p> |
---|
[2192] | 490 | <p>The changes in this draft are summarized in <a href="#changes.since.10" title="Since draft-ietf-httpbis-method-registrations-10">Appendix B.11</a>. |
---|
[984] | 491 | </p> |
---|
[799] | 492 | <h1><a id="rfc.status" href="#rfc.status">Status of This Memo</a></h1> |
---|
| 493 | <p>This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.</p> |
---|
| 494 | <p>Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute |
---|
| 495 | 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>. |
---|
[282] | 496 | </p> |
---|
| 497 | <p>Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other |
---|
| 498 | documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work |
---|
| 499 | in progress”. |
---|
| 500 | </p> |
---|
[2191] | 501 | <p>This Internet-Draft will expire on August 27, 2013.</p> |
---|
[446] | 502 | <h1><a id="rfc.copyrightnotice" href="#rfc.copyrightnotice">Copyright Notice</a></h1> |
---|
[2080] | 503 | <p>Copyright © 2013 IETF Trust and the persons identified as the document authors. All rights reserved.</p> |
---|
[725] | 504 | <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 |
---|
| 505 | and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License |
---|
[799] | 506 | text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified |
---|
| 507 | BSD License. |
---|
[446] | 508 | </p> |
---|
[282] | 509 | <hr class="noprint"> |
---|
| 510 | <h1 class="np" id="rfc.toc"><a href="#rfc.toc">Table of Contents</a></h1> |
---|
| 511 | <ul class="toc"> |
---|
[1825] | 512 | <li><a href="#rfc.section.1">1.</a> <a href="#introduction">Introduction</a></li> |
---|
| 513 | <li><a href="#rfc.section.2">2.</a> <a href="#security.considerations">Security Considerations</a></li> |
---|
| 514 | <li><a href="#rfc.section.3">3.</a> <a href="#iana.considerations">IANA Considerations</a></li> |
---|
| 515 | <li><a href="#rfc.section.4">4.</a> <a href="#rfc.references">Normative References</a></li> |
---|
[1072] | 516 | <li><a href="#rfc.authors">Author's Address</a></li> |
---|
[1825] | 517 | <li><a href="#rfc.section.A">A.</a> <a href="#updated.registry.contents">Initial Registry Contents</a></li> |
---|
| 518 | <li><a href="#rfc.section.B">B.</a> <a href="#change.log">Change Log (to be removed by RFC Editor before publication)</a><ul> |
---|
| 519 | <li><a href="#rfc.section.B.1">B.1</a> <a href="#rfc.section.B.1">Since draft-ietf-httpbis-method-registrations-00</a></li> |
---|
| 520 | <li><a href="#rfc.section.B.2">B.2</a> <a href="#rfc.section.B.2">Since draft-ietf-httpbis-method-registrations-01</a></li> |
---|
| 521 | <li><a href="#rfc.section.B.3">B.3</a> <a href="#rfc.section.B.3">Since draft-ietf-httpbis-method-registrations-02</a></li> |
---|
| 522 | <li><a href="#rfc.section.B.4">B.4</a> <a href="#rfc.section.B.4">Since draft-ietf-httpbis-method-registrations-03</a></li> |
---|
| 523 | <li><a href="#rfc.section.B.5">B.5</a> <a href="#changes.since.04">Since draft-ietf-httpbis-method-registrations-04</a></li> |
---|
| 524 | <li><a href="#rfc.section.B.6">B.6</a> <a href="#changes.since.05">Since draft-ietf-httpbis-method-registrations-05</a></li> |
---|
| 525 | <li><a href="#rfc.section.B.7">B.7</a> <a href="#changes.since.06">Since draft-ietf-httpbis-method-registrations-06</a></li> |
---|
| 526 | <li><a href="#rfc.section.B.8">B.8</a> <a href="#changes.since.07">Since draft-ietf-httpbis-method-registrations-07</a></li> |
---|
| 527 | <li><a href="#rfc.section.B.9">B.9</a> <a href="#changes.since.08">Since draft-ietf-httpbis-method-registrations-08</a></li> |
---|
| 528 | <li><a href="#rfc.section.B.10">B.10</a> <a href="#changes.since.09">Since draft-ietf-httpbis-method-registrations-09</a></li> |
---|
[2192] | 529 | <li><a href="#rfc.section.B.11">B.11</a> <a href="#changes.since.10">Since draft-ietf-httpbis-method-registrations-10</a></li> |
---|
[414] | 530 | </ul> |
---|
| 531 | </li> |
---|
[282] | 532 | </ul> |
---|
| 533 | <h1 id="rfc.section.1" class="np"><a href="#rfc.section.1">1.</a> <a id="introduction" href="#introduction">Introduction</a></h1> |
---|
[1670] | 534 | <p id="rfc.section.1.p.1">This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in standards-track RFCs other |
---|
[1933] | 535 | than <a href="#draft-ietf-httpbis-p2-semantics"><cite title="Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content">[draft-ietf-httpbis-p2-semantics]</cite></a> before the IANA HTTP Method Registry was established. |
---|
[282] | 536 | </p> |
---|
| 537 | <h1 id="rfc.section.2"><a href="#rfc.section.2">2.</a> <a id="security.considerations" href="#security.considerations">Security Considerations</a></h1> |
---|
| 538 | <p id="rfc.section.2.p.1">There are no security considerations related to the registration itself.</p> |
---|
| 539 | <h1 id="rfc.section.3"><a href="#rfc.section.3">3.</a> <a id="iana.considerations" href="#iana.considerations">IANA Considerations</a></h1> |
---|
[2191] | 540 | <p id="rfc.section.3.p.1"> <a href="#updated.registry.contents" title="Initial Registry Contents">Appendix A</a> provides initial registrations of HTTP method names for the IANA HTTP Method registry at <<a href="http://www.iana.org/assignments/http-methods">http://www.iana.org/assignments/http-methods</a>> (see <a href="../../draft-ietf-httpbis/22/p2-semantics.html#method.registry" title="Method Registry">Section 8.1</a> of <a href="#draft-ietf-httpbis-p2-semantics"><cite title="Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content">[draft-ietf-httpbis-p2-semantics]</cite></a>). |
---|
[282] | 541 | </p> |
---|
| 542 | <h1 id="rfc.references"><a href="#rfc.section.4" id="rfc.section.4">4.</a> Normative References |
---|
| 543 | </h1> |
---|
[713] | 544 | <table> |
---|
[282] | 545 | <tr> |
---|
| 546 | <td class="reference"><b id="RFC2068">[RFC2068]</b></td> |
---|
| 547 | <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 2068, January 1997. |
---|
| 548 | </td> |
---|
| 549 | </tr> |
---|
| 550 | <tr> |
---|
| 551 | <td class="reference"><b id="RFC3253">[RFC3253]</b></td> |
---|
| 552 | <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 3253, March 2002. |
---|
| 553 | </td> |
---|
| 554 | </tr> |
---|
| 555 | <tr> |
---|
| 556 | <td class="reference"><b id="RFC3648">[RFC3648]</b></td> |
---|
[832] | 557 | <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 3648, December 2003. |
---|
[282] | 558 | </td> |
---|
| 559 | </tr> |
---|
| 560 | <tr> |
---|
| 561 | <td class="reference"><b id="RFC3744">[RFC3744]</b></td> |
---|
[832] | 562 | <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 3744, May 2004. |
---|
[282] | 563 | </td> |
---|
| 564 | </tr> |
---|
| 565 | <tr> |
---|
| 566 | <td class="reference"><b id="RFC4437">[RFC4437]</b></td> |
---|
[832] | 567 | <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 Reference Resources</a>”, RFC 4437, March 2006. |
---|
[282] | 568 | </td> |
---|
| 569 | </tr> |
---|
| 570 | <tr> |
---|
| 571 | <td class="reference"><b id="RFC4791">[RFC4791]</b></td> |
---|
[832] | 572 | <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 4791, March 2007. |
---|
[282] | 573 | </td> |
---|
| 574 | </tr> |
---|
| 575 | <tr> |
---|
| 576 | <td class="reference"><b id="RFC4918">[RFC4918]</b></td> |
---|
| 577 | <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 4918, June 2007. |
---|
| 578 | </td> |
---|
| 579 | </tr> |
---|
| 580 | <tr> |
---|
[414] | 581 | <td class="reference"><b id="RFC5323">[RFC5323]</b></td> |
---|
[832] | 582 | <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 5323, November 2008. |
---|
[414] | 583 | </td> |
---|
| 584 | </tr> |
---|
| 585 | <tr> |
---|
[794] | 586 | <td class="reference"><b id="RFC5789">[RFC5789]</b></td> |
---|
[832] | 587 | <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 5789, March 2010. |
---|
[733] | 588 | </td> |
---|
| 589 | </tr> |
---|
| 590 | <tr> |
---|
[811] | 591 | <td class="reference"><b id="RFC5842">[RFC5842]</b></td> |
---|
[832] | 592 | <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 5842, April 2010. |
---|
[282] | 593 | </td> |
---|
| 594 | </tr> |
---|
[749] | 595 | <tr> |
---|
[811] | 596 | <td class="reference"><b id="draft-ietf-httpbis-p2-semantics">[draft-ietf-httpbis-p2-semantics]</b></td> |
---|
[2191] | 597 | <td class="top"><a href="mailto:fielding@gbiv.com" title="Adobe Systems Incorporated">Fielding, R., 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-22">Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</a>”, Internet-Draft draft-ietf-httpbis-p2-semantics-22 (work in progress), February 2013. |
---|
[749] | 598 | </td> |
---|
| 599 | </tr> |
---|
[282] | 600 | </table> |
---|
[662] | 601 | <div class="avoidbreak"> |
---|
| 602 | <h1 id="rfc.authors"><a href="#rfc.authors">Author's Address</a></h1> |
---|
[799] | 603 | <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> <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> |
---|
[662] | 604 | </div> |
---|
| 605 | <h1 id="rfc.section.A" class="np"><a href="#rfc.section.A">A.</a> <a id="updated.registry.contents" href="#updated.registry.contents">Initial Registry Contents</a></h1> |
---|
[282] | 606 | <div id="rfc.table.u.1"> |
---|
[733] | 607 | <table class="tt full left" cellpadding="3" cellspacing="0"> |
---|
[282] | 608 | <thead> |
---|
| 609 | <tr> |
---|
| 610 | <th>Method Name</th> |
---|
[287] | 611 | <th>Safe</th> |
---|
[1729] | 612 | <th>Idempotent</th> |
---|
[282] | 613 | <th>Reference</th> |
---|
| 614 | </tr> |
---|
| 615 | </thead> |
---|
| 616 | <tbody> |
---|
| 617 | <tr> |
---|
[713] | 618 | <td class="left">ACL</td> |
---|
| 619 | <td class="left">no</td> |
---|
[1729] | 620 | <td class="left">yes</td> |
---|
[713] | 621 | <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> |
---|
[282] | 622 | </tr> |
---|
| 623 | <tr> |
---|
[713] | 624 | <td class="left">BASELINE-CONTROL</td> |
---|
| 625 | <td class="left">no</td> |
---|
[1729] | 626 | <td class="left">yes</td> |
---|
[713] | 627 | <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> |
---|
[282] | 628 | </tr> |
---|
| 629 | <tr> |
---|
[749] | 630 | <td class="left">BIND</td> |
---|
| 631 | <td class="left">no</td> |
---|
[1729] | 632 | <td class="left">yes</td> |
---|
[811] | 633 | <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> |
---|
[749] | 634 | </tr> |
---|
| 635 | <tr> |
---|
[713] | 636 | <td class="left">CHECKIN</td> |
---|
| 637 | <td class="left">no</td> |
---|
[1729] | 638 | <td class="left">yes</td> |
---|
[713] | 639 | <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> |
---|
[282] | 640 | </tr> |
---|
| 641 | <tr> |
---|
[713] | 642 | <td class="left">CHECKOUT</td> |
---|
| 643 | <td class="left">no</td> |
---|
[1729] | 644 | <td class="left">yes</td> |
---|
[713] | 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> |
---|
[282] | 646 | </tr> |
---|
| 647 | <tr> |
---|
[713] | 648 | <td class="left">COPY</td> |
---|
| 649 | <td class="left">no</td> |
---|
[1729] | 650 | <td class="left">yes</td> |
---|
[713] | 651 | <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> |
---|
[282] | 652 | </tr> |
---|
| 653 | <tr> |
---|
[713] | 654 | <td class="left">LABEL</td> |
---|
| 655 | <td class="left">no</td> |
---|
[1729] | 656 | <td class="left">yes</td> |
---|
[713] | 657 | <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> |
---|
[282] | 658 | </tr> |
---|
| 659 | <tr> |
---|
[713] | 660 | <td class="left">LINK</td> |
---|
| 661 | <td class="left">no</td> |
---|
[1870] | 662 | <td class="left">yes</td> |
---|
[713] | 663 | <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> |
---|
[282] | 664 | </tr> |
---|
| 665 | <tr> |
---|
[713] | 666 | <td class="left">LOCK</td> |
---|
| 667 | <td class="left">no</td> |
---|
[1729] | 668 | <td class="left">no</td> |
---|
[713] | 669 | <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> |
---|
[282] | 670 | </tr> |
---|
| 671 | <tr> |
---|
[713] | 672 | <td class="left">MERGE</td> |
---|
| 673 | <td class="left">no</td> |
---|
[1729] | 674 | <td class="left">yes</td> |
---|
[713] | 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-11.2">Section 11.2</a></td> |
---|
[282] | 676 | </tr> |
---|
| 677 | <tr> |
---|
[820] | 678 | <td class="left">MKACTIVITY</td> |
---|
[713] | 679 | <td class="left">no</td> |
---|
[1729] | 680 | <td class="left">yes</td> |
---|
[713] | 681 | <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> |
---|
[282] | 682 | </tr> |
---|
| 683 | <tr> |
---|
[713] | 684 | <td class="left">MKCALENDAR</td> |
---|
| 685 | <td class="left">no</td> |
---|
[1729] | 686 | <td class="left">yes</td> |
---|
[713] | 687 | <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> |
---|
[282] | 688 | </tr> |
---|
| 689 | <tr> |
---|
[713] | 690 | <td class="left">MKCOL</td> |
---|
| 691 | <td class="left">no</td> |
---|
[1729] | 692 | <td class="left">yes</td> |
---|
[713] | 693 | <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> |
---|
[282] | 694 | </tr> |
---|
| 695 | <tr> |
---|
[713] | 696 | <td class="left">MKREDIRECTREF</td> |
---|
| 697 | <td class="left">no</td> |
---|
[1729] | 698 | <td class="left">yes</td> |
---|
[713] | 699 | <td class="left"><a href="#RFC4437"><cite title="Web Distributed Authoring and Versioning (WebDAV) Redirect Reference Resources">[RFC4437]</cite></a>, <a href="http://tools.ietf.org/html/rfc4437#section-6">Section 6</a></td> |
---|
[282] | 700 | </tr> |
---|
| 701 | <tr> |
---|
[713] | 702 | <td class="left">MKWORKSPACE</td> |
---|
| 703 | <td class="left">no</td> |
---|
[1729] | 704 | <td class="left">yes</td> |
---|
[713] | 705 | <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> |
---|
[282] | 706 | </tr> |
---|
| 707 | <tr> |
---|
[713] | 708 | <td class="left">MOVE</td> |
---|
| 709 | <td class="left">no</td> |
---|
[1729] | 710 | <td class="left">yes</td> |
---|
[713] | 711 | <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> |
---|
[282] | 712 | </tr> |
---|
| 713 | <tr> |
---|
[713] | 714 | <td class="left">ORDERPATCH</td> |
---|
| 715 | <td class="left">no</td> |
---|
[1729] | 716 | <td class="left">yes</td> |
---|
[713] | 717 | <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> |
---|
[282] | 718 | </tr> |
---|
| 719 | <tr> |
---|
[713] | 720 | <td class="left">PATCH</td> |
---|
| 721 | <td class="left">no</td> |
---|
[1729] | 722 | <td class="left">no</td> |
---|
[794] | 723 | <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> |
---|
[282] | 724 | </tr> |
---|
| 725 | <tr> |
---|
[713] | 726 | <td class="left">PROPFIND</td> |
---|
| 727 | <td class="left">yes</td> |
---|
[1729] | 728 | <td class="left">yes</td> |
---|
[713] | 729 | <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> |
---|
[282] | 730 | </tr> |
---|
| 731 | <tr> |
---|
[713] | 732 | <td class="left">PROPPATCH</td> |
---|
| 733 | <td class="left">no</td> |
---|
[1729] | 734 | <td class="left">yes</td> |
---|
[713] | 735 | <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> |
---|
[282] | 736 | </tr> |
---|
| 737 | <tr> |
---|
[749] | 738 | <td class="left">REBIND</td> |
---|
| 739 | <td class="left">no</td> |
---|
[1729] | 740 | <td class="left">yes</td> |
---|
[811] | 741 | <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> |
---|
[749] | 742 | </tr> |
---|
| 743 | <tr> |
---|
[713] | 744 | <td class="left">REPORT</td> |
---|
| 745 | <td class="left">yes</td> |
---|
[1729] | 746 | <td class="left">yes</td> |
---|
[713] | 747 | <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> |
---|
[282] | 748 | </tr> |
---|
| 749 | <tr> |
---|
[713] | 750 | <td class="left">SEARCH</td> |
---|
| 751 | <td class="left">yes</td> |
---|
[1729] | 752 | <td class="left">yes</td> |
---|
[713] | 753 | <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> |
---|
[414] | 754 | </tr> |
---|
| 755 | <tr> |
---|
[749] | 756 | <td class="left">UNBIND</td> |
---|
| 757 | <td class="left">no</td> |
---|
[1729] | 758 | <td class="left">yes</td> |
---|
[811] | 759 | <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> |
---|
[749] | 760 | </tr> |
---|
| 761 | <tr> |
---|
[713] | 762 | <td class="left">UNCHECKOUT</td> |
---|
| 763 | <td class="left">no</td> |
---|
[1729] | 764 | <td class="left">yes</td> |
---|
[713] | 765 | <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> |
---|
[282] | 766 | </tr> |
---|
| 767 | <tr> |
---|
[713] | 768 | <td class="left">UNLINK</td> |
---|
| 769 | <td class="left">no</td> |
---|
[1870] | 770 | <td class="left">yes</td> |
---|
[713] | 771 | <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> |
---|
[282] | 772 | </tr> |
---|
| 773 | <tr> |
---|
[713] | 774 | <td class="left">UNLOCK</td> |
---|
| 775 | <td class="left">no</td> |
---|
[1729] | 776 | <td class="left">yes</td> |
---|
[713] | 777 | <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> |
---|
[282] | 778 | </tr> |
---|
| 779 | <tr> |
---|
[713] | 780 | <td class="left">UPDATE</td> |
---|
| 781 | <td class="left">no</td> |
---|
[1729] | 782 | <td class="left">yes</td> |
---|
[713] | 783 | <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> |
---|
[282] | 784 | </tr> |
---|
| 785 | <tr> |
---|
[713] | 786 | <td class="left">UPDATEREDIRECTREF</td> |
---|
| 787 | <td class="left">no</td> |
---|
[1729] | 788 | <td class="left">yes</td> |
---|
[713] | 789 | <td class="left"><a href="#RFC4437"><cite title="Web Distributed Authoring and Versioning (WebDAV) Redirect Reference Resources">[RFC4437]</cite></a>, <a href="http://tools.ietf.org/html/rfc4437#section-7">Section 7</a></td> |
---|
[282] | 790 | </tr> |
---|
| 791 | <tr> |
---|
[713] | 792 | <td class="left">VERSION-CONTROL</td> |
---|
| 793 | <td class="left">no</td> |
---|
[1729] | 794 | <td class="left">yes</td> |
---|
[713] | 795 | <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> |
---|
[282] | 796 | </tr> |
---|
| 797 | </tbody> |
---|
| 798 | </table> |
---|
| 799 | </div> |
---|
[414] | 800 | <h1 id="rfc.section.B"><a href="#rfc.section.B">B.</a> <a id="change.log" href="#change.log">Change Log (to be removed by RFC Editor before publication)</a></h1> |
---|
[843] | 801 | <h2 id="rfc.section.B.1"><a href="#rfc.section.B.1">B.1</a> Since draft-ietf-httpbis-method-registrations-00 |
---|
[414] | 802 | </h2> |
---|
| 803 | <p id="rfc.section.B.1.p.1">Added SEARCH method (RFC 5323).</p> |
---|
[843] | 804 | <h2 id="rfc.section.B.2"><a href="#rfc.section.B.2">B.2</a> Since draft-ietf-httpbis-method-registrations-01 |
---|
[415] | 805 | </h2> |
---|
[436] | 806 | <p id="rfc.section.B.2.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p> |
---|
[843] | 807 | <h2 id="rfc.section.B.3"><a href="#rfc.section.B.3">B.3</a> Since draft-ietf-httpbis-method-registrations-02 |
---|
[586] | 808 | </h2> |
---|
[749] | 809 | <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 |
---|
[751] | 810 | are defined in draft-ietf-webdav-bind. Drop the "updates draft-ietf-httpbis-p2-semantics" clause. |
---|
[749] | 811 | </p> |
---|
[843] | 812 | <h2 id="rfc.section.B.4"><a href="#rfc.section.B.4">B.4</a> Since draft-ietf-httpbis-method-registrations-03 |
---|
[775] | 813 | </h2> |
---|
[820] | 814 | <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 |
---|
[843] | 815 | entry. Update draft-ietf-httpbis-p2-semantics reference. Fix change log section titles. |
---|
[820] | 816 | </p> |
---|
[984] | 817 | <h2 id="rfc.section.B.5"><a href="#rfc.section.B.5">B.5</a> <a id="changes.since.04" href="#changes.since.04">Since draft-ietf-httpbis-method-registrations-04</a></h2> |
---|
[977] | 818 | <p id="rfc.section.B.5.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p> |
---|
[1100] | 819 | <h2 id="rfc.section.B.6"><a href="#rfc.section.B.6">B.6</a> <a id="changes.since.05" href="#changes.since.05">Since draft-ietf-httpbis-method-registrations-05</a></h2> |
---|
[1185] | 820 | <p id="rfc.section.B.6.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p> |
---|
[1325] | 821 | <h2 id="rfc.section.B.7"><a href="#rfc.section.B.7">B.7</a> <a id="changes.since.06" href="#changes.since.06">Since draft-ietf-httpbis-method-registrations-06</a></h2> |
---|
[1413] | 822 | <p id="rfc.section.B.7.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p> |
---|
[1502] | 823 | <h2 id="rfc.section.B.8"><a href="#rfc.section.B.8">B.8</a> <a id="changes.since.07" href="#changes.since.07">Since draft-ietf-httpbis-method-registrations-07</a></h2> |
---|
[1595] | 824 | <p id="rfc.section.B.8.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p> |
---|
[1700] | 825 | <h2 id="rfc.section.B.9"><a href="#rfc.section.B.9">B.9</a> <a id="changes.since.08" href="#changes.since.08">Since draft-ietf-httpbis-method-registrations-08</a></h2> |
---|
[1812] | 826 | <p id="rfc.section.B.9.p.1">Added itempotency information. Update draft-ietf-httpbis-p2-semantics reference.</p> |
---|
| 827 | <h2 id="rfc.section.B.10"><a href="#rfc.section.B.10">B.10</a> <a id="changes.since.09" href="#changes.since.09">Since draft-ietf-httpbis-method-registrations-09</a></h2> |
---|
[1870] | 828 | <p id="rfc.section.B.10.p.1">Closed issues: </p> |
---|
| 829 | <ul> |
---|
| 830 | <li> <<a href="http://tools.ietf.org/wg/httpbis/trac/ticket/377">http://tools.ietf.org/wg/httpbis/trac/ticket/377</a>>: "what is the idempotency of LINK and UNLINK?" |
---|
| 831 | </li> |
---|
| 832 | </ul> |
---|
[1933] | 833 | <p id="rfc.section.B.10.p.2">Update draft-ietf-httpbis-p2-semantics reference.</p> |
---|
[2192] | 834 | <h2 id="rfc.section.B.11"><a href="#rfc.section.B.11">B.11</a> <a id="changes.since.10" href="#changes.since.10">Since draft-ietf-httpbis-method-registrations-10</a></h2> |
---|
[2191] | 835 | <p id="rfc.section.B.11.p.1">Update draft-ietf-httpbis-p2-semantics reference.</p> |
---|
[282] | 836 | </body> |
---|
| 837 | </html> |
---|