[282] | 1 | <!DOCTYPE html |
---|
| 2 | PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
---|
| 3 | <html lang="en"> |
---|
[2365] | 4 | <head profile="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 | |
---|
[2726] | 11 | function initFeedback() { |
---|
[1522] | 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"); |
---|
[2280] | 26 | |
---|
[1522] | 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) { |
---|
[2280] | 39 | |
---|
[1522] | 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 | } |
---|
[2280] | 62 | |
---|
[1522] | 63 | // docname |
---|
[2620] | 64 | var docname = "draft-ietf-httpbis-method-registrations-15"; |
---|
[1522] | 65 | |
---|
| 66 | // section |
---|
| 67 | var section = node.textContent; |
---|
[1552] | 68 | section = section.replace("\u00a0", " "); |
---|
[2280] | 69 | |
---|
[1522] | 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)); |
---|
[2280] | 74 | |
---|
[1522] | 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; |
---|
[2418] | 110 | font-family: cambria, helvetica, arial, sans-serif; |
---|
| 111 | font-size: 11pt; |
---|
[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 { |
---|
[2418] | 133 | font-size: 130%; |
---|
[282] | 134 | line-height: 21pt; |
---|
| 135 | page-break-after: avoid; |
---|
| 136 | } |
---|
| 137 | h1.np { |
---|
| 138 | page-break-before: always; |
---|
| 139 | } |
---|
| 140 | h2 { |
---|
[2418] | 141 | font-size: 120%; |
---|
[282] | 142 | line-height: 15pt; |
---|
| 143 | page-break-after: avoid; |
---|
| 144 | } |
---|
[2501] | 145 | h3 { |
---|
[2418] | 146 | font-size: 110%; |
---|
[282] | 147 | page-break-after: avoid; |
---|
| 148 | } |
---|
[2501] | 149 | h4, h5, h6 { |
---|
| 150 | page-break-after: avoid; |
---|
| 151 | } |
---|
[2418] | 152 | h1 a, 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; |
---|
[2726] | 209 | border-color: gray; |
---|
[282] | 210 | } |
---|
[2726] | 211 | table.tt th { |
---|
| 212 | border-color: gray; |
---|
| 213 | } |
---|
| 214 | table.tt td { |
---|
| 215 | border-color: gray; |
---|
| 216 | } |
---|
| 217 | table.all { |
---|
| 218 | border-style: solid; |
---|
| 219 | border-width: 2px; |
---|
| 220 | } |
---|
[282] | 221 | table.full { |
---|
[2726] | 222 | border-style: solid; |
---|
| 223 | border-width: 2px; |
---|
[282] | 224 | } |
---|
| 225 | table.tt td { |
---|
| 226 | vertical-align: top; |
---|
| 227 | } |
---|
[2726] | 228 | table.all td { |
---|
| 229 | border-style: solid; |
---|
| 230 | border-width: 1px; |
---|
| 231 | } |
---|
[282] | 232 | table.full td { |
---|
[2726] | 233 | border-style: none solid; |
---|
[282] | 234 | border-width: 1px; |
---|
| 235 | } |
---|
| 236 | table.tt th { |
---|
| 237 | vertical-align: top; |
---|
| 238 | } |
---|
[2726] | 239 | table.all th { |
---|
| 240 | border-style: solid; |
---|
[282] | 241 | border-width: 1px; |
---|
| 242 | } |
---|
[2726] | 243 | table.full th { |
---|
| 244 | border-style: solid; |
---|
| 245 | border-width: 1px 1px 2px 1px; |
---|
| 246 | } |
---|
[282] | 247 | table.headers th { |
---|
[2726] | 248 | border-style: none none solid none; |
---|
| 249 | border-width: 2px; |
---|
[282] | 250 | } |
---|
[713] | 251 | table.left { |
---|
| 252 | margin-right: auto; |
---|
| 253 | } |
---|
| 254 | table.right { |
---|
| 255 | margin-left: auto; |
---|
| 256 | } |
---|
| 257 | table.center { |
---|
| 258 | margin-left: auto; |
---|
| 259 | margin-right: auto; |
---|
| 260 | } |
---|
[456] | 261 | caption { |
---|
| 262 | caption-side: bottom; |
---|
| 263 | font-weight: bold; |
---|
[2418] | 264 | font-size: 10pt; |
---|
[456] | 265 | margin-top: .5em; |
---|
| 266 | } |
---|
| 267 | |
---|
[282] | 268 | table.header { |
---|
[733] | 269 | border-spacing: 1px; |
---|
[282] | 270 | width: 95%; |
---|
[2418] | 271 | font-size: 11pt; |
---|
[282] | 272 | color: white; |
---|
| 273 | } |
---|
| 274 | td.top { |
---|
| 275 | vertical-align: top; |
---|
| 276 | } |
---|
| 277 | td.topnowrap { |
---|
| 278 | vertical-align: top; |
---|
[2280] | 279 | white-space: nowrap; |
---|
[282] | 280 | } |
---|
[733] | 281 | table.header td { |
---|
[282] | 282 | background-color: gray; |
---|
| 283 | width: 50%; |
---|
| 284 | } |
---|
| 285 | td.reference { |
---|
| 286 | vertical-align: top; |
---|
| 287 | white-space: nowrap; |
---|
| 288 | padding-right: 1em; |
---|
| 289 | } |
---|
| 290 | thead { |
---|
| 291 | display:table-header-group; |
---|
| 292 | } |
---|
[1072] | 293 | ul.toc, ul.toc ul { |
---|
[282] | 294 | list-style: none; |
---|
| 295 | margin-left: 1.5em; |
---|
| 296 | padding-left: 0em; |
---|
| 297 | } |
---|
[1072] | 298 | ul.toc li { |
---|
[282] | 299 | line-height: 150%; |
---|
| 300 | font-weight: bold; |
---|
| 301 | margin-left: 0em; |
---|
| 302 | } |
---|
[1072] | 303 | ul.toc li li { |
---|
[282] | 304 | line-height: normal; |
---|
| 305 | font-weight: normal; |
---|
[2418] | 306 | font-size: 10pt; |
---|
[282] | 307 | margin-left: 0em; |
---|
| 308 | } |
---|
[1072] | 309 | li.excluded { |
---|
[282] | 310 | font-size: 0pt; |
---|
| 311 | } |
---|
| 312 | ul p { |
---|
| 313 | margin-left: 0em; |
---|
| 314 | } |
---|
[2418] | 315 | .title, .filename, h1, h2, h3, h4 { |
---|
| 316 | font-family: candara, helvetica, arial, sans-serif; |
---|
| 317 | } |
---|
| 318 | samp, tt, code, pre { |
---|
| 319 | font: consolas, monospace; |
---|
| 320 | } |
---|
[282] | 321 | |
---|
| 322 | .comment { |
---|
| 323 | background-color: yellow; |
---|
| 324 | } |
---|
| 325 | .center { |
---|
| 326 | text-align: center; |
---|
| 327 | } |
---|
| 328 | .error { |
---|
| 329 | color: red; |
---|
| 330 | font-style: italic; |
---|
| 331 | font-weight: bold; |
---|
| 332 | } |
---|
| 333 | .figure { |
---|
| 334 | font-weight: bold; |
---|
| 335 | text-align: center; |
---|
[2418] | 336 | font-size: 10pt; |
---|
[282] | 337 | } |
---|
| 338 | .filename { |
---|
| 339 | color: #333333; |
---|
[2418] | 340 | font-size: 75%; |
---|
[282] | 341 | font-weight: bold; |
---|
| 342 | line-height: 21pt; |
---|
| 343 | text-align: center; |
---|
| 344 | } |
---|
| 345 | .fn { |
---|
| 346 | font-weight: bold; |
---|
| 347 | } |
---|
| 348 | .left { |
---|
| 349 | text-align: left; |
---|
| 350 | } |
---|
| 351 | .right { |
---|
| 352 | text-align: right; |
---|
| 353 | } |
---|
| 354 | .title { |
---|
[2418] | 355 | color: green; |
---|
| 356 | font-size: 150%; |
---|
[282] | 357 | line-height: 18pt; |
---|
| 358 | font-weight: bold; |
---|
| 359 | text-align: center; |
---|
| 360 | margin-top: 36pt; |
---|
| 361 | } |
---|
| 362 | .warning { |
---|
[2418] | 363 | font-size: 130%; |
---|
[282] | 364 | background-color: yellow; |
---|
| 365 | } |
---|
[1522] | 366 | .feedback { |
---|
| 367 | position: fixed; |
---|
| 368 | bottom: 1%; |
---|
| 369 | right: 1%; |
---|
| 370 | padding: 3px 5px; |
---|
| 371 | color: white; |
---|
| 372 | border-radius: 5px; |
---|
| 373 | background: #a00000; |
---|
| 374 | border: 1px solid silver; |
---|
| 375 | } |
---|
| 376 | .fbbutton { |
---|
| 377 | margin-left: 1em; |
---|
| 378 | color: #303030; |
---|
| 379 | font-size: small; |
---|
| 380 | font-weight: normal; |
---|
| 381 | background: #d0d000; |
---|
| 382 | padding: 1px 4px; |
---|
| 383 | border: 1px solid silver; |
---|
| 384 | border-radius: 5px; |
---|
| 385 | } |
---|
[282] | 386 | |
---|
| 387 | @media print { |
---|
| 388 | .noprint { |
---|
| 389 | display: none; |
---|
| 390 | } |
---|
[2280] | 391 | |
---|
[282] | 392 | a { |
---|
| 393 | color: black; |
---|
| 394 | text-decoration: none; |
---|
| 395 | } |
---|
| 396 | |
---|
| 397 | table.header { |
---|
| 398 | width: 90%; |
---|
| 399 | } |
---|
| 400 | |
---|
| 401 | td.header { |
---|
| 402 | width: 50%; |
---|
| 403 | color: black; |
---|
| 404 | background-color: white; |
---|
| 405 | vertical-align: top; |
---|
[2418] | 406 | font-size: 110%; |
---|
[282] | 407 | } |
---|
| 408 | |
---|
[1825] | 409 | ul.toc a:nth-child(2)::after { |
---|
[282] | 410 | content: leader('.') target-counter(attr(href), page); |
---|
| 411 | } |
---|
[2280] | 412 | |
---|
[1072] | 413 | ul.ind li li a { |
---|
[282] | 414 | content: target-counter(attr(href), page); |
---|
| 415 | } |
---|
[2280] | 416 | |
---|
[282] | 417 | .print2col { |
---|
| 418 | column-count: 2; |
---|
[1552] | 419 | -moz-column-count: 2; |
---|
[282] | 420 | column-fill: auto; |
---|
| 421 | } |
---|
| 422 | } |
---|
| 423 | |
---|
| 424 | @page { |
---|
| 425 | @top-left { |
---|
[2280] | 426 | content: "Internet-Draft"; |
---|
| 427 | } |
---|
[282] | 428 | @top-right { |
---|
[2610] | 429 | content: "February 2014"; |
---|
[2280] | 430 | } |
---|
[282] | 431 | @top-center { |
---|
[2280] | 432 | content: "HTTP Method Registrations"; |
---|
| 433 | } |
---|
[282] | 434 | @bottom-left { |
---|
[2280] | 435 | content: "Reschke"; |
---|
| 436 | } |
---|
[282] | 437 | @bottom-center { |
---|
[2618] | 438 | content: "Expires August 10, 2014"; |
---|
[2280] | 439 | } |
---|
[282] | 440 | @bottom-right { |
---|
[2280] | 441 | content: "[Page " counter(page) "]"; |
---|
| 442 | } |
---|
[282] | 443 | } |
---|
| 444 | |
---|
[2280] | 445 | @page:first { |
---|
[282] | 446 | @top-left { |
---|
| 447 | content: normal; |
---|
| 448 | } |
---|
| 449 | @top-right { |
---|
| 450 | content: normal; |
---|
| 451 | } |
---|
| 452 | @top-center { |
---|
| 453 | content: normal; |
---|
| 454 | } |
---|
| 455 | } |
---|
| 456 | </style><link rel="Contents" href="#rfc.toc"> |
---|
| 457 | <link rel="Author" href="#rfc.authors"> |
---|
[754] | 458 | <link rel="Copyright" href="#rfc.copyrightnotice"> |
---|
[282] | 459 | <link rel="Chapter" title="1 Introduction" href="#rfc.section.1"> |
---|
| 460 | <link rel="Chapter" title="2 Security Considerations" href="#rfc.section.2"> |
---|
| 461 | <link rel="Chapter" title="3 IANA Considerations" href="#rfc.section.3"> |
---|
| 462 | <link rel="Chapter" href="#rfc.section.4" title="4 Normative References"> |
---|
[2444] | 463 | <link rel="Appendix" title="A Change Log (to be removed by RFC Editor before publication)" href="#rfc.section.A"> |
---|
[2726] | 464 | <meta name="generator" content="http://greenbytes.de/tech/webdav/rfc2629.xslt, Revision 1.640, 2014/06/13 12:42:58, XSLT vendor: SAXON 8.9 from Saxonica http://www.saxonica.com/"> |
---|
[754] | 465 | <link rel="schema.dct" href="http://purl.org/dc/terms/"> |
---|
| 466 | <meta name="dct.creator" content="Reschke, J. F."> |
---|
[2620] | 467 | <meta name="dct.identifier" content="urn:ietf:id:draft-ietf-httpbis-method-registrations-15"> |
---|
[2618] | 468 | <meta name="dct.issued" scheme="ISO8601" content="2014-02-06"> |
---|
[2513] | 469 | <meta name="dct.abstract" content="This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in RFCs before the IANA HTTP Method Registry was established."> |
---|
| 470 | <meta name="description" content="This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in RFCs before the IANA HTTP Method Registry was established."> |
---|
[282] | 471 | </head> |
---|
[2726] | 472 | <body onload="initFeedback();"> |
---|
[733] | 473 | <table class="header"> |
---|
| 474 | <tbody> |
---|
| 475 | <tr> |
---|
| 476 | <td class="left">HTTPbis Working Group</td> |
---|
[832] | 477 | <td class="right">J. Reschke</td> |
---|
[733] | 478 | </tr> |
---|
| 479 | <tr> |
---|
[754] | 480 | <td class="left">Internet-Draft</td> |
---|
[733] | 481 | <td class="right">greenbytes</td> |
---|
| 482 | </tr> |
---|
| 483 | <tr> |
---|
| 484 | <td class="left">Intended status: Informational</td> |
---|
[2618] | 485 | <td class="right">February 6, 2014</td> |
---|
[733] | 486 | </tr> |
---|
| 487 | <tr> |
---|
[2618] | 488 | <td class="left">Expires: August 10, 2014</td> |
---|
[733] | 489 | <td class="right"></td> |
---|
| 490 | </tr> |
---|
| 491 | </tbody> |
---|
[282] | 492 | </table> |
---|
[2620] | 493 | <p class="title">Initial Hypertext Transfer Protocol (HTTP) Method Registrations<br><span class="filename">draft-ietf-httpbis-method-registrations-15</span></p> |
---|
[2280] | 494 | <h1 id="rfc.abstract"><a href="#rfc.abstract">Abstract</a></h1> |
---|
[2513] | 495 | <p>This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in RFCs before the IANA HTTP |
---|
| 496 | Method Registry was established. |
---|
[2280] | 497 | </p> |
---|
| 498 | <h1 id="rfc.note.1"><a href="#rfc.note.1">Editorial Note (To be removed by RFC Editor)</a></h1> |
---|
[1764] | 499 | <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>>. |
---|
[2280] | 500 | </p> |
---|
[1269] | 501 | <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>>. |
---|
[2280] | 502 | </p> |
---|
[2497] | 503 | <p>The changes in this draft are summarized in <a href="#changes.since.14" title="Since draft-ietf-httpbis-method-registrations-14">Appendix A.2</a>. |
---|
[2280] | 504 | </p> |
---|
[2418] | 505 | <div id="rfc.status"> |
---|
| 506 | <h1><a href="#rfc.status">Status of This Memo</a></h1> |
---|
| 507 | <p>This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.</p> |
---|
| 508 | <p>Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute |
---|
| 509 | 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>. |
---|
| 510 | </p> |
---|
| 511 | <p>Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other |
---|
| 512 | documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work |
---|
| 513 | in progress”. |
---|
| 514 | </p> |
---|
[2618] | 515 | <p>This Internet-Draft will expire on August 10, 2014.</p> |
---|
[2418] | 516 | </div> |
---|
| 517 | <div id="rfc.copyrightnotice"> |
---|
| 518 | <h1><a href="#rfc.copyrightnotice">Copyright Notice</a></h1> |
---|
[2527] | 519 | <p>Copyright © 2014 IETF Trust and the persons identified as the document authors. All rights reserved.</p> |
---|
[2418] | 520 | <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 |
---|
| 521 | and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License |
---|
| 522 | text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified |
---|
| 523 | BSD License. |
---|
| 524 | </p> |
---|
| 525 | </div> |
---|
[282] | 526 | <hr class="noprint"> |
---|
| 527 | <h1 class="np" id="rfc.toc"><a href="#rfc.toc">Table of Contents</a></h1> |
---|
| 528 | <ul class="toc"> |
---|
[1825] | 529 | <li><a href="#rfc.section.1">1.</a> <a href="#introduction">Introduction</a></li> |
---|
| 530 | <li><a href="#rfc.section.2">2.</a> <a href="#security.considerations">Security Considerations</a></li> |
---|
| 531 | <li><a href="#rfc.section.3">3.</a> <a href="#iana.considerations">IANA Considerations</a></li> |
---|
| 532 | <li><a href="#rfc.section.4">4.</a> <a href="#rfc.references">Normative References</a></li> |
---|
[2444] | 533 | <li><a href="#rfc.section.A">A.</a> <a href="#change.log">Change Log (to be removed by RFC Editor before publication)</a><ul> |
---|
[2445] | 534 | <li><a href="#rfc.section.A.1">A.1</a> <a href="#changes.since.13">Since draft-ietf-httpbis-method-registrations-13</a></li> |
---|
[2497] | 535 | <li><a href="#rfc.section.A.2">A.2</a> <a href="#changes.since.14">Since draft-ietf-httpbis-method-registrations-14</a></li> |
---|
[414] | 536 | </ul> |
---|
| 537 | </li> |
---|
[2726] | 538 | <li><a href="#rfc.authors">Author's Address</a></li> |
---|
[282] | 539 | </ul> |
---|
[2418] | 540 | <div id="introduction"> |
---|
| 541 | <h1 id="rfc.section.1" class="np"><a href="#rfc.section.1">1.</a> <a href="#introduction">Introduction</a></h1> |
---|
[2513] | 542 | <p id="rfc.section.1.p.1">This document registers those Hypertext Transfer Protocol (HTTP) methods which have been defined in RFCs other 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. |
---|
[2418] | 543 | </p> |
---|
| 544 | </div> |
---|
| 545 | <div id="security.considerations"> |
---|
| 546 | <h1 id="rfc.section.2"><a href="#rfc.section.2">2.</a> <a href="#security.considerations">Security Considerations</a></h1> |
---|
| 547 | <p id="rfc.section.2.p.1">There are no security considerations related to the registration itself.</p> |
---|
[2516] | 548 | <p id="rfc.section.2.p.2">Security considerations applicable to the individual HTTP methods ought to be discussed in the specifications that define |
---|
| 549 | them. |
---|
| 550 | </p> |
---|
[2418] | 551 | </div> |
---|
| 552 | <div id="iana.considerations"> |
---|
| 553 | <h1 id="rfc.section.3"><a href="#rfc.section.3">3.</a> <a href="#iana.considerations">IANA Considerations</a></h1> |
---|
[2618] | 554 | <p id="rfc.section.3.p.1">The table below provides registrations of HTTP method names to be added to 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/26/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>). |
---|
[2418] | 555 | </p> |
---|
| 556 | <div id="rfc.table.u.1"> |
---|
| 557 | <table class="tt full left" cellpadding="3" cellspacing="0"> |
---|
| 558 | <thead> |
---|
| 559 | <tr> |
---|
| 560 | <th>Method Name</th> |
---|
| 561 | <th>Safe</th> |
---|
| 562 | <th>Idempotent</th> |
---|
| 563 | <th>Reference</th> |
---|
| 564 | </tr> |
---|
| 565 | </thead> |
---|
| 566 | <tbody> |
---|
| 567 | <tr> |
---|
| 568 | <td class="left">ACL</td> |
---|
| 569 | <td class="left">no</td> |
---|
| 570 | <td class="left">yes</td> |
---|
[2726] | 571 | <td class="left"><a href="#RFC3744"><cite title="Web Distributed Authoring and Versioning (WebDAV) Access Control Protocol">[RFC3744]</cite></a>, <a href="https://tools.ietf.org/html/rfc3744#section-8.1">Section 8.1</a></td> |
---|
[2418] | 572 | </tr> |
---|
| 573 | <tr> |
---|
| 574 | <td class="left">BASELINE-CONTROL</td> |
---|
| 575 | <td class="left">no</td> |
---|
| 576 | <td class="left">yes</td> |
---|
[2726] | 577 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://tools.ietf.org/html/rfc3253#section-12.6">Section 12.6</a></td> |
---|
[2418] | 578 | </tr> |
---|
| 579 | <tr> |
---|
| 580 | <td class="left">BIND</td> |
---|
| 581 | <td class="left">no</td> |
---|
| 582 | <td class="left">yes</td> |
---|
[2726] | 583 | <td class="left"><a href="#RFC5842"><cite title="Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)">[RFC5842]</cite></a>, <a href="https://tools.ietf.org/html/rfc5842#section-4">Section 4</a></td> |
---|
[2418] | 584 | </tr> |
---|
| 585 | <tr> |
---|
| 586 | <td class="left">CHECKIN</td> |
---|
| 587 | <td class="left">no</td> |
---|
| 588 | <td class="left">yes</td> |
---|
[2726] | 589 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://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="https://tools.ietf.org/html/rfc3253#section-9.4">Section 9.4</a></td> |
---|
[2418] | 590 | </tr> |
---|
| 591 | <tr> |
---|
| 592 | <td class="left">CHECKOUT</td> |
---|
| 593 | <td class="left">no</td> |
---|
| 594 | <td class="left">yes</td> |
---|
[2726] | 595 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://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="https://tools.ietf.org/html/rfc3253#section-8.8">Section 8.8</a></td> |
---|
[2418] | 596 | </tr> |
---|
| 597 | <tr> |
---|
| 598 | <td class="left">COPY</td> |
---|
| 599 | <td class="left">no</td> |
---|
| 600 | <td class="left">yes</td> |
---|
[2726] | 601 | <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="https://tools.ietf.org/html/rfc4918#section-9.8">Section 9.8</a></td> |
---|
[2418] | 602 | </tr> |
---|
| 603 | <tr> |
---|
| 604 | <td class="left">LABEL</td> |
---|
| 605 | <td class="left">no</td> |
---|
| 606 | <td class="left">yes</td> |
---|
[2726] | 607 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://tools.ietf.org/html/rfc3253#section-8.2">Section 8.2</a></td> |
---|
[2418] | 608 | </tr> |
---|
| 609 | <tr> |
---|
| 610 | <td class="left">LINK</td> |
---|
| 611 | <td class="left">no</td> |
---|
| 612 | <td class="left">yes</td> |
---|
[2726] | 613 | <td class="left"><a href="#RFC2068"><cite title="Hypertext Transfer Protocol -- HTTP/1.1">[RFC2068]</cite></a>, <a href="https://tools.ietf.org/html/rfc2068#section-19.6.1.2">Section 19.6.1.2</a></td> |
---|
[2418] | 614 | </tr> |
---|
| 615 | <tr> |
---|
| 616 | <td class="left">LOCK</td> |
---|
| 617 | <td class="left">no</td> |
---|
| 618 | <td class="left">no</td> |
---|
[2726] | 619 | <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="https://tools.ietf.org/html/rfc4918#section-9.10">Section 9.10</a></td> |
---|
[2418] | 620 | </tr> |
---|
| 621 | <tr> |
---|
| 622 | <td class="left">MERGE</td> |
---|
| 623 | <td class="left">no</td> |
---|
| 624 | <td class="left">yes</td> |
---|
[2726] | 625 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://tools.ietf.org/html/rfc3253#section-11.2">Section 11.2</a></td> |
---|
[2418] | 626 | </tr> |
---|
| 627 | <tr> |
---|
| 628 | <td class="left">MKACTIVITY</td> |
---|
| 629 | <td class="left">no</td> |
---|
| 630 | <td class="left">yes</td> |
---|
[2726] | 631 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://tools.ietf.org/html/rfc3253#section-13.5">Section 13.5</a></td> |
---|
[2418] | 632 | </tr> |
---|
| 633 | <tr> |
---|
| 634 | <td class="left">MKCALENDAR</td> |
---|
| 635 | <td class="left">no</td> |
---|
| 636 | <td class="left">yes</td> |
---|
[2726] | 637 | <td class="left"><a href="#RFC4791"><cite title="Calendaring Extensions to WebDAV (CalDAV)">[RFC4791]</cite></a>, <a href="https://tools.ietf.org/html/rfc4791#section-5.3.1">Section 5.3.1</a></td> |
---|
[2418] | 638 | </tr> |
---|
| 639 | <tr> |
---|
| 640 | <td class="left">MKCOL</td> |
---|
| 641 | <td class="left">no</td> |
---|
| 642 | <td class="left">yes</td> |
---|
[2726] | 643 | <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="https://tools.ietf.org/html/rfc4918#section-9.3">Section 9.3</a></td> |
---|
[2418] | 644 | </tr> |
---|
| 645 | <tr> |
---|
| 646 | <td class="left">MKREDIRECTREF</td> |
---|
| 647 | <td class="left">no</td> |
---|
| 648 | <td class="left">yes</td> |
---|
[2726] | 649 | <td class="left"><a href="#RFC4437"><cite title="Web Distributed Authoring and Versioning (WebDAV) Redirect Reference Resources">[RFC4437]</cite></a>, <a href="https://tools.ietf.org/html/rfc4437#section-6">Section 6</a></td> |
---|
[2418] | 650 | </tr> |
---|
| 651 | <tr> |
---|
| 652 | <td class="left">MKWORKSPACE</td> |
---|
| 653 | <td class="left">no</td> |
---|
| 654 | <td class="left">yes</td> |
---|
[2726] | 655 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://tools.ietf.org/html/rfc3253#section-6.3">Section 6.3</a></td> |
---|
[2418] | 656 | </tr> |
---|
| 657 | <tr> |
---|
| 658 | <td class="left">MOVE</td> |
---|
| 659 | <td class="left">no</td> |
---|
| 660 | <td class="left">yes</td> |
---|
[2726] | 661 | <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="https://tools.ietf.org/html/rfc4918#section-9.9">Section 9.9</a></td> |
---|
[2418] | 662 | </tr> |
---|
| 663 | <tr> |
---|
| 664 | <td class="left">ORDERPATCH</td> |
---|
| 665 | <td class="left">no</td> |
---|
| 666 | <td class="left">yes</td> |
---|
[2726] | 667 | <td class="left"><a href="#RFC3648"><cite title="Web Distributed Authoring and Versioning (WebDAV) Ordered Collections Protocol">[RFC3648]</cite></a>, <a href="https://tools.ietf.org/html/rfc3648#section-7">Section 7</a></td> |
---|
[2418] | 668 | </tr> |
---|
| 669 | <tr> |
---|
| 670 | <td class="left">PATCH</td> |
---|
| 671 | <td class="left">no</td> |
---|
| 672 | <td class="left">no</td> |
---|
[2726] | 673 | <td class="left"><a href="#RFC5789"><cite title="PATCH Method for HTTP">[RFC5789]</cite></a>, <a href="https://tools.ietf.org/html/rfc5789#section-2">Section 2</a></td> |
---|
[2418] | 674 | </tr> |
---|
| 675 | <tr> |
---|
| 676 | <td class="left">PROPFIND</td> |
---|
| 677 | <td class="left">yes</td> |
---|
| 678 | <td class="left">yes</td> |
---|
[2726] | 679 | <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="https://tools.ietf.org/html/rfc4918#section-9.1">Section 9.1</a></td> |
---|
[2418] | 680 | </tr> |
---|
| 681 | <tr> |
---|
| 682 | <td class="left">PROPPATCH</td> |
---|
| 683 | <td class="left">no</td> |
---|
| 684 | <td class="left">yes</td> |
---|
[2726] | 685 | <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="https://tools.ietf.org/html/rfc4918#section-9.2">Section 9.2</a></td> |
---|
[2418] | 686 | </tr> |
---|
| 687 | <tr> |
---|
| 688 | <td class="left">REBIND</td> |
---|
| 689 | <td class="left">no</td> |
---|
| 690 | <td class="left">yes</td> |
---|
[2726] | 691 | <td class="left"><a href="#RFC5842"><cite title="Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)">[RFC5842]</cite></a>, <a href="https://tools.ietf.org/html/rfc5842#section-6">Section 6</a></td> |
---|
[2418] | 692 | </tr> |
---|
| 693 | <tr> |
---|
| 694 | <td class="left">REPORT</td> |
---|
| 695 | <td class="left">yes</td> |
---|
| 696 | <td class="left">yes</td> |
---|
[2726] | 697 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://tools.ietf.org/html/rfc3253#section-3.6">Section 3.6</a></td> |
---|
[2418] | 698 | </tr> |
---|
| 699 | <tr> |
---|
| 700 | <td class="left">SEARCH</td> |
---|
| 701 | <td class="left">yes</td> |
---|
| 702 | <td class="left">yes</td> |
---|
[2726] | 703 | <td class="left"><a href="#RFC5323"><cite title="Web Distributed Authoring and Versioning (WebDAV) SEARCH">[RFC5323]</cite></a>, <a href="https://tools.ietf.org/html/rfc5323#section-2">Section 2</a></td> |
---|
[2418] | 704 | </tr> |
---|
| 705 | <tr> |
---|
| 706 | <td class="left">UNBIND</td> |
---|
| 707 | <td class="left">no</td> |
---|
| 708 | <td class="left">yes</td> |
---|
[2726] | 709 | <td class="left"><a href="#RFC5842"><cite title="Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)">[RFC5842]</cite></a>, <a href="https://tools.ietf.org/html/rfc5842#section-5">Section 5</a></td> |
---|
[2418] | 710 | </tr> |
---|
| 711 | <tr> |
---|
| 712 | <td class="left">UNCHECKOUT</td> |
---|
| 713 | <td class="left">no</td> |
---|
| 714 | <td class="left">yes</td> |
---|
[2726] | 715 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://tools.ietf.org/html/rfc3253#section-4.5">Section 4.5</a></td> |
---|
[2418] | 716 | </tr> |
---|
| 717 | <tr> |
---|
| 718 | <td class="left">UNLINK</td> |
---|
| 719 | <td class="left">no</td> |
---|
| 720 | <td class="left">yes</td> |
---|
[2726] | 721 | <td class="left"><a href="#RFC2068"><cite title="Hypertext Transfer Protocol -- HTTP/1.1">[RFC2068]</cite></a>, <a href="https://tools.ietf.org/html/rfc2068#section-19.6.1.3">Section 19.6.1.3</a></td> |
---|
[2418] | 722 | </tr> |
---|
| 723 | <tr> |
---|
| 724 | <td class="left">UNLOCK</td> |
---|
| 725 | <td class="left">no</td> |
---|
| 726 | <td class="left">yes</td> |
---|
[2726] | 727 | <td class="left"><a href="#RFC4918"><cite title="HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)">[RFC4918]</cite></a>, <a href="https://tools.ietf.org/html/rfc4918#section-9.11">Section 9.11</a></td> |
---|
[2418] | 728 | </tr> |
---|
| 729 | <tr> |
---|
| 730 | <td class="left">UPDATE</td> |
---|
| 731 | <td class="left">no</td> |
---|
| 732 | <td class="left">yes</td> |
---|
[2726] | 733 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://tools.ietf.org/html/rfc3253#section-7.1">Section 7.1</a></td> |
---|
[2418] | 734 | </tr> |
---|
| 735 | <tr> |
---|
| 736 | <td class="left">UPDATEREDIRECTREF</td> |
---|
| 737 | <td class="left">no</td> |
---|
| 738 | <td class="left">yes</td> |
---|
[2726] | 739 | <td class="left"><a href="#RFC4437"><cite title="Web Distributed Authoring and Versioning (WebDAV) Redirect Reference Resources">[RFC4437]</cite></a>, <a href="https://tools.ietf.org/html/rfc4437#section-7">Section 7</a></td> |
---|
[2418] | 740 | </tr> |
---|
| 741 | <tr> |
---|
| 742 | <td class="left">VERSION-CONTROL</td> |
---|
| 743 | <td class="left">no</td> |
---|
| 744 | <td class="left">yes</td> |
---|
[2726] | 745 | <td class="left"><a href="#RFC3253"><cite title="Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)">[RFC3253]</cite></a>, <a href="https://tools.ietf.org/html/rfc3253#section-3.5">Section 3.5</a></td> |
---|
[2418] | 746 | </tr> |
---|
| 747 | </tbody> |
---|
| 748 | </table> |
---|
| 749 | </div> |
---|
[282] | 750 | </div> |
---|
[2444] | 751 | <h1 id="rfc.references"><a href="#rfc.section.4" id="rfc.section.4">4.</a> Normative References |
---|
| 752 | </h1> |
---|
| 753 | <table> |
---|
| 754 | <tr> |
---|
| 755 | <td class="reference"><b id="RFC2068">[RFC2068]</b></td> |
---|
[2726] | 756 | <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="https://tools.ietf.org/html/rfc2068">Hypertext Transfer Protocol -- HTTP/1.1</a>”, RFC 2068, January 1997. |
---|
[2444] | 757 | </td> |
---|
| 758 | </tr> |
---|
| 759 | <tr> |
---|
| 760 | <td class="reference"><b id="RFC3253">[RFC3253]</b></td> |
---|
[2726] | 761 | <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="https://tools.ietf.org/html/rfc3253">Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)</a>”, RFC 3253, March 2002. |
---|
[2444] | 762 | </td> |
---|
| 763 | </tr> |
---|
| 764 | <tr> |
---|
| 765 | <td class="reference"><b id="RFC3648">[RFC3648]</b></td> |
---|
[2726] | 766 | <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="https://tools.ietf.org/html/rfc3648">Web Distributed Authoring and Versioning (WebDAV) Ordered Collections Protocol</a>”, RFC 3648, December 2003. |
---|
[2444] | 767 | </td> |
---|
| 768 | </tr> |
---|
| 769 | <tr> |
---|
| 770 | <td class="reference"><b id="RFC3744">[RFC3744]</b></td> |
---|
[2726] | 771 | <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="https://tools.ietf.org/html/rfc3744">Web Distributed Authoring and Versioning (WebDAV) Access Control Protocol</a>”, RFC 3744, May 2004. |
---|
[2444] | 772 | </td> |
---|
| 773 | </tr> |
---|
| 774 | <tr> |
---|
| 775 | <td class="reference"><b id="RFC4437">[RFC4437]</b></td> |
---|
[2726] | 776 | <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="https://tools.ietf.org/html/rfc4437">Web Distributed Authoring and Versioning (WebDAV) Redirect Reference Resources</a>”, RFC 4437, March 2006. |
---|
[2444] | 777 | </td> |
---|
| 778 | </tr> |
---|
| 779 | <tr> |
---|
| 780 | <td class="reference"><b id="RFC4791">[RFC4791]</b></td> |
---|
[2726] | 781 | <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="https://tools.ietf.org/html/rfc4791">Calendaring Extensions to WebDAV (CalDAV)</a>”, RFC 4791, March 2007. |
---|
[2444] | 782 | </td> |
---|
| 783 | </tr> |
---|
| 784 | <tr> |
---|
| 785 | <td class="reference"><b id="RFC4918">[RFC4918]</b></td> |
---|
[2726] | 786 | <td class="top"><a href="mailto:ldusseault@commerce.net" title="CommerceNet">Dusseault, L., Ed.</a>, “<a href="https://tools.ietf.org/html/rfc4918">HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)</a>”, RFC 4918, June 2007. |
---|
[2444] | 787 | </td> |
---|
| 788 | </tr> |
---|
| 789 | <tr> |
---|
| 790 | <td class="reference"><b id="RFC5323">[RFC5323]</b></td> |
---|
[2726] | 791 | <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="https://tools.ietf.org/html/rfc5323">Web Distributed Authoring and Versioning (WebDAV) SEARCH</a>”, RFC 5323, November 2008. |
---|
[2444] | 792 | </td> |
---|
| 793 | </tr> |
---|
| 794 | <tr> |
---|
| 795 | <td class="reference"><b id="RFC5789">[RFC5789]</b></td> |
---|
[2726] | 796 | <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="https://tools.ietf.org/html/rfc5789">PATCH Method for HTTP</a>”, RFC 5789, March 2010. |
---|
[2444] | 797 | </td> |
---|
| 798 | </tr> |
---|
| 799 | <tr> |
---|
| 800 | <td class="reference"><b id="RFC5842">[RFC5842]</b></td> |
---|
[2726] | 801 | <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="https://tools.ietf.org/html/rfc5842">Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)</a>”, RFC 5842, April 2010. |
---|
[2444] | 802 | </td> |
---|
| 803 | </tr> |
---|
| 804 | <tr> |
---|
| 805 | <td class="reference"><b id="draft-ietf-httpbis-p2-semantics">[draft-ietf-httpbis-p2-semantics]</b></td> |
---|
[2726] | 806 | <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="https://tools.ietf.org/html/draft-ietf-httpbis-p2-semantics-26">Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</a>”, Internet-Draft draft-ietf-httpbis-p2-semantics-26 (work in progress), February 2014. |
---|
[2444] | 807 | </td> |
---|
| 808 | </tr> |
---|
| 809 | </table> |
---|
[2418] | 810 | <div id="change.log"> |
---|
[2444] | 811 | <h1 id="rfc.section.A" class="np"><a href="#rfc.section.A">A.</a> <a href="#change.log">Change Log (to be removed by RFC Editor before publication)</a></h1> |
---|
[2445] | 812 | <p id="rfc.section.A.p.1">Changes up to the IETF Last Call draft are summarized in <<a href="http://trac.tools.ietf.org/html/draft-ietf-httpbis-method-registrations-13#appendix-B">http://trac.tools.ietf.org/html/draft-ietf-httpbis-method-registrations-13#appendix-B</a>>. |
---|
| 813 | </p> |
---|
[2418] | 814 | <div id="changes.since.13"> |
---|
[2445] | 815 | <h2 id="rfc.section.A.1"><a href="#rfc.section.A.1">A.1</a> <a href="#changes.since.13">Since draft-ietf-httpbis-method-registrations-13</a></h2> |
---|
| 816 | <p id="rfc.section.A.1.p.1">Closed issues: </p> |
---|
[2444] | 817 | <ul> |
---|
| 818 | <li><<a href="http://tools.ietf.org/wg/httpbis/trac/ticket/514">http://tools.ietf.org/wg/httpbis/trac/ticket/514</a>>: "registration tables should be inside IANA considerations" |
---|
| 819 | </li> |
---|
| 820 | </ul> |
---|
[2451] | 821 | <p id="rfc.section.A.1.p.2">Clarified the IANA action to say "add".</p> |
---|
[2498] | 822 | <p id="rfc.section.A.1.p.3">Updated httpbis reference.</p> |
---|
[2418] | 823 | </div> |
---|
[2497] | 824 | <div id="changes.since.14"> |
---|
| 825 | <h2 id="rfc.section.A.2"><a href="#rfc.section.A.2">A.2</a> <a href="#changes.since.14">Since draft-ietf-httpbis-method-registrations-14</a></h2> |
---|
[2514] | 826 | <p id="rfc.section.A.2.p.1">Closed issues: </p> |
---|
| 827 | <ul> |
---|
| 828 | <li><<a href="http://tools.ietf.org/wg/httpbis/trac/ticket/529">http://tools.ietf.org/wg/httpbis/trac/ticket/529</a>>: "IESG ballot on draft-ietf-httpbis-method-registrations-14" |
---|
| 829 | </li> |
---|
| 830 | </ul> |
---|
| 831 | <p id="rfc.section.A.2.p.2">Removed misleading statement about "standards-track" RFCs, as some of the methods registered here indeed originate from Experimental |
---|
[2618] | 832 | RFCs, and furthermore the new registry established in <a href="../../draft-ietf-httpbis/26/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> uses "IETF Review". |
---|
[2513] | 833 | </p> |
---|
[2619] | 834 | <p id="rfc.section.A.2.p.3">Updated httpbis reference.</p> |
---|
[2497] | 835 | </div> |
---|
[2418] | 836 | </div> |
---|
[2726] | 837 | <div class="avoidbreak"> |
---|
| 838 | <h1 id="rfc.authors"><a href="#rfc.authors">Author's Address</a></h1> |
---|
| 839 | <p><b>Julian F. Reschke</b><br>greenbytes GmbH<br>Hafenweg 16<br>Muenster, NW 48155<br>Germany<br>Email: <a href="mailto:julian.reschke@greenbytes.de">julian.reschke@greenbytes.de</a><br>URI: <a href="http://greenbytes.de/tech/webdav/">http://greenbytes.de/tech/webdav/</a></p> |
---|
| 840 | </div> |
---|
[282] | 841 | </body> |
---|
| 842 | </html> |
---|