├── .gitignore ├── DEV.md ├── HTTP2中英对照版(06-29).md ├── Makefile ├── README.md ├── SUBMITTING.md ├── draft-ietf-httpbis-header-compression.xml ├── draft-ietf-httpbis-http2-zh.xml ├── draft-ietf-httpbis-http2.xml ├── lib ├── clean-for-DTD.xslt ├── myxml2rfc.xslt ├── rfc2629.xslt ├── saxonb9-1-0-8j │ ├── saxon9-dom.jar │ ├── saxon9-dom4j.jar │ ├── saxon9-jdom.jar │ ├── saxon9-s9api.jar │ ├── saxon9-sql.jar │ ├── saxon9-xom.jar │ ├── saxon9-xpath.jar │ ├── saxon9-xqj.jar │ └── saxon9.jar └── style.css └── refs ├── draft-ietf-httpbis-p1-messaging-22.xml ├── draft-ietf-httpbis-p1-messaging-23.xml ├── draft-ietf-httpbis-p1-messaging-24.xml ├── draft-ietf-httpbis-p1-messaging-25.xml ├── draft-ietf-httpbis-p1-messaging-26.xml ├── draft-ietf-httpbis-p2-semantics-22.xml ├── draft-ietf-httpbis-p2-semantics-23.xml ├── draft-ietf-httpbis-p2-semantics-24.xml ├── draft-ietf-httpbis-p2-semantics-25.xml ├── draft-ietf-httpbis-p2-semantics-26.xml ├── draft-ietf-httpbis-p6-cache-24.xml ├── draft-ietf-httpbis-p6-cache-25.xml ├── draft-ietf-httpbis-p6-cache-26.xml ├── draft-ietf-httpbis-p7-auth-22.xml ├── draft-ietf-httpbis-p7-auth-23.xml ├── draft-ietf-httpbis-p7-auth-24.xml ├── draft-ietf-httpbis-p7-auth-25.xml └── draft-ietf-httpbis-p7-auth-26.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.redxml 2 | *.txt 3 | *.html 4 | *~ 5 | *-[0-9][0-9].xml 6 | issues.json 7 | 8 | -------------------------------------------------------------------------------- /DEV.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## 生成 html 的方法 4 | 5 | 在命令行下运行 6 | 7 | java -classpath lib/saxonb9-1-0-8j/saxon9.jar net.sf.saxon.Transform -s:draft-ietf-httpbis-http2-zh.xml -xsl:lib/rfc2629.xslt -o:draft-ietf-httpbis-http2-zh.html -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | xml2rfc ?= "/usr/local/bin/xml2rfc" 2 | saxpath ?= "$(HOME)/java/saxon-8-9-j/saxon8.jar" 3 | saxon ?= java -classpath $(saxpath) net.sf.saxon.Transform -novw -l 4 | 5 | names := http2 header-compression 6 | drafts := $(addprefix draft-ietf-httpbis-,$(names)) 7 | current_ver = $(shell git tag | grep "$(draft)" | sort | tail -1 | awk -F- '{print $$NF}') 8 | next_ver := $(foreach draft, $(drafts), -$(shell printf "%.2d" $$((1$(current_ver)-99)) ) ) 9 | next := $(join $(drafts),$(next_ver)) 10 | 11 | TARGETS := $(addsuffix .txt,$(drafts)) \ 12 | $(addsuffix .html,$(drafts)) 13 | 14 | .PHONY: latest submit idnits clean issues $(names) hpack 15 | .INTERMEDIATE: $(addsuffix .redxml,$(drafts)) 16 | 17 | latest: $(TARGETS) 18 | 19 | # build rules for specific targets 20 | makerule = $(join $(addsuffix :: ,$(names)),$(addsuffix .$(1),$(drafts))) 21 | $(foreach rule,$(call makerule,txt) $(call makerule,html),$(eval $(rule))) 22 | hpack: header-compression 23 | 24 | submit: $(addsuffix .txt,$(next)) 25 | 26 | idnits: $(addsuffix .txt,$(next)) 27 | idnits $< 28 | 29 | clean: 30 | -rm -f $(addsuffix .redxml,$(drafts)) 31 | -rm -f $(addsuffix *.txt,$(drafts)) 32 | -rm -f $(addsuffix *-[0-9][0-9].xml,$(drafts)) 33 | -rm -f $(addsuffix *.html,$(drafts)) 34 | 35 | define makerule_submit_xml = 36 | $(1) 37 | sed -e"s/$$(basename $$<)-latest/$$(basename $$@)/" $$< > $$@ 38 | endef 39 | submit_deps := $(join $(addsuffix .xml: ,$(next)),$(addsuffix .redxml,$(drafts))) 40 | $(foreach rule,$(submit_deps),$(eval $(call makerule_submit_xml,$(rule)))) 41 | 42 | $(addsuffix .txt,$(next)): %.txt: %.xml 43 | $(xml2rfc) $< $@ 44 | 45 | %.txt: %.redxml 46 | $(xml2rfc) $< $@ 47 | 48 | stylesheet := lib/myxml2rfc.xslt 49 | extra_css := lib/style.css 50 | css_content = $(shell cat $(extra_css)) 51 | %.htmltmp: %.xml $(stylesheet) $(extra_css) 52 | $(saxon) $< $(stylesheet) > $@ 53 | 54 | %.html: %.htmltmp 55 | sed -e's~~~' $< > $@ 56 | 57 | reduction := lib/clean-for-DTD.xslt 58 | %.redxml: %.xml $(reduction) 59 | $(saxon) $< $(reduction) > $@ 60 | 61 | %.xhtml: %.xml ../../rfc2629xslt/rfc2629toXHTML.xslt 62 | $(saxon) $< ../../rfc2629xslt/rfc2629toXHTML.xslt > $@ 63 | 64 | # backup issues 65 | issues: 66 | curl https://api.github.com/repos/http2/http2-spec/issues?state=open > issues.json 67 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | HTTP/2 Draft Specifications 3 | ============================= 4 | 5 | This is the working area for the [IETF HTTPbis Working 6 | Group](http://trac.tools.ietf.org/wg/httpbis/trac/wiki) draft of 7 | [HTTP/2](http://http2.github.io/). 8 | 9 | HTTP/2 specification: 10 | * [Editor's copy](http://http2.github.com/http2-spec/index.html) (HTML) 11 | * [Editor's copy](http://http2.github.com/http2-spec/index.txt) (plain text) 12 | * [Working Group Draft](http://tools.ietf.org/html/draft-ietf-httpbis-http2) (less recent, more official) 13 | 14 | Header Compression (HPACK) specification: 15 | * [Editor's copy](http://http2.github.com/http2-spec/compression.html) (HTML) 16 | * [Editor's copy](http://http2.github.com/http2-spec/compression.txt) (plain text) 17 | * [Working Group Draft](http://tools.ietf.org/html/draft-ietf-httpbis-header-compression) (less recent, more official) 18 | 19 | Alternative Services specification: 20 | * [Editor's copy](http://http2.github.com/http2-spec/alt-svc.html) (HTML) 21 | * [Editor's copy](http://http2.github.com/http2-spec/alt-svc.txt) (plain text) 22 | * [Working Group Draft](http://tools.ietf.org/html/draft-ietf-httpbis-alt-svc) (less recent, more official) 23 | 24 | 25 | Contributing 26 | ------------ 27 | 28 | Before submitting feedback, please familiarize yourself with our current issues 29 | list and review the [HTTP/2 page](http://http2.github.io/) and the [working 30 | group home page](http://trac.tools.ietf.org/wg/httpbis/trac/wiki). If you're 31 | new to this, you may also want to read the [Tao of the 32 | IETF](http://www.ietf.org/tao.html). 33 | 34 | Be aware that all contributions to the specification fall under the "NOTE WELL" 35 | terms outlined below. 36 | 37 | 1. The best way to provide feedback (editorial or design) and ask questions is 38 | sending an e-mail to [our mailing 39 | list](http://lists.w3.org/Archives/Public/ietf-http-wg/). This will assure that 40 | the entire Working Group sees your input in a timely fashion. 41 | 42 | 2. If you have **editorial** suggestions (i.e., those that do not change the 43 | meaning of the specification), you can either: 44 | 45 | a) Fork this repository and submit a pull request; this is the lowest 46 | friction way to get editorial changes in. 47 | 48 | b) Submit a new issue to Github, and mention that you believe it is editorial 49 | in the issue body. It is not necessary to notify the mailing list for 50 | editorial issues. 51 | 52 | c) Make comments on individual commits in Github. Note that this feedback is 53 | processed only with best effort by the editors, so it should only be used for 54 | quick editorial suggestions or questions. 55 | 56 | 3. For non-editorial (i.e., **design**) issues, you can also create an issue on 57 | Github. However, you **must notify the mailing list** when creating such issues, 58 | providing a link to the issue in the message body. 59 | 60 | Note that **github issues are not for substantial discussions**; the only 61 | appropriate place to discuss design issues is on the mailing list itself. 62 | 63 | 64 | Working With the Drafts 65 | ----------------------- 66 | 67 | The source for our current draft is 68 | [draft-ietf-httpbis-http2.xml](draft-ietf-httpbis-http2.xml), using the 69 | [RFC2629 format](http://xml.resource.org/public/rfc/html/rfc2629.html). 70 | 71 | If you're an editor, or forking a copy of the draft, a few things to know: 72 | 73 | * Pushing to the master branch will automatically generate the HTML on the 74 | gh-pages branch. 75 | * You'll need xml2rfc, Java and Saxon-HE available. You can override the 76 | default locations in the environment. On a Mac with 77 | [Homebrew](http://mxcl.github.io/homebrew/), "saxon-b" is the right package. 78 | * Some of the make targets require GNU Make 4.0 79 | * Making the txt and html for the latest drafts is done with "make". 80 | * Output for a specific draft can be made using "make http2" or 81 | "make hpack". 82 | 83 | 84 | NOTE WELL 85 | --------- 86 | 87 | Any submission to the [IETF](http://www.ietf.org/) intended by the Contributor 88 | for publication as all or part of an IETF Internet-Draft or RFC and any 89 | statement made within the context of an IETF activity is considered an "IETF 90 | Contribution". Such statements include oral statements in IETF sessions, as 91 | well as written and electronic communications made at any time or place, which 92 | are addressed to: 93 | 94 | * The IETF plenary session 95 | * The IESG, or any member thereof on behalf of the IESG 96 | * Any IETF mailing list, including the IETF list itself, any working group 97 | or design team list, or any other list functioning under IETF auspices 98 | * Any IETF working group or portion thereof 99 | * Any Birds of a Feather (BOF) session 100 | * The IAB or any member thereof on behalf of the IAB 101 | * The RFC Editor or the Internet-Drafts function 102 | * All IETF Contributions are subject to the rules of 103 | [RFC 5378](http://tools.ietf.org/html/rfc5378) and 104 | [RFC 3979](http://tools.ietf.org/html/rfc3979) 105 | (updated by [RFC 4879](http://tools.ietf.org/html/rfc4879)). 106 | 107 | Statements made outside of an IETF session, mailing list or other function, 108 | that are clearly not intended to be input to an IETF activity, group or 109 | function, are not IETF Contributions in the context of this notice. 110 | 111 | Please consult [RFC 5378](http://tools.ietf.org/html/rfc5378) and [RFC 112 | 3979](http://tools.ietf.org/html/rfc3979) for details. 113 | 114 | A participant in any IETF activity is deemed to accept all IETF rules of 115 | process, as documented in Best Current Practices RFCs and IESG Statements. 116 | 117 | A participant in any IETF activity acknowledges that written, audio and video 118 | records of meetings may be made and may be available to the public. 119 | -------------------------------------------------------------------------------- /SUBMITTING.md: -------------------------------------------------------------------------------- 1 | Submitting 2 | ========== 3 | 4 | When you're ready to submit a new version of a draft: 5 | 6 | 0. git status <-- all changes should be committed and pushed. 7 | 8 | 1. Double-check the year on the date element to make sure it's current. 9 | 10 | 2. Check the "Changes" section for this draft to make sure it's appropriate 11 | (e.g., replace "None yet" with "None"). 12 | 13 | 3. make submit 14 | 15 | 4. Submit draft-ietf-httpbis--NN to https://datatracker.ietf.org/submit/ 16 | 17 | 5. make clean 18 | 19 | 6. git tag draft-ietf-httpbis--NN; 20 | git push --tags 21 | 22 | 7. Add "Since draft-ietf-httpbis--...-NN" subsection to "Changes". 23 | 24 | 8. Add/remove any "implementation draft" notices from the abstract. 25 | -------------------------------------------------------------------------------- /lib/clean-for-DTD.xslt: -------------------------------------------------------------------------------- 1 | 31 | 32 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | This XML document is the output of clean-for-DTD.xslt; a tool that strips 56 | extensions to RFC2629(bis) from documents for processing with xml2rfc. 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 |
96 | 97 | Issues that were either rejected or resolved in this version of this 98 | document. 99 | 100 | 101 |
102 |
103 | 104 |
105 | 106 |
107 |
108 |
109 |
110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | %x 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | Converted from rfc2629.xslt x:prose extension 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | FATAL: multiple x:ref targets found for . 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | couldn't create the link as does not support the anchor attribute. 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | internal link target for '' does not exist. 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | " 236 | 237 | " 238 | 239 | 240 | 241 | 242 | 246 | 247 | 248 | 249 | 250 | ^ 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | (see Authors Section) 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | Appendix 293 | Section 294 | 295 | 296 | 297 | 298 | 299 | 300 | , 301 | of 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | , 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | ( 328 | 329 | 330 | 331 | ) 332 | 333 | 334 | 335 | 336 | 337 | of 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | Unsupported x:fmt attribute. 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | Broken xref due to target being filtered out. 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 |
454 | 455 | 456 | 457 | 458 | 459 | 460 | In Section : 461 | 462 | 463 | 464 | 465 | Type: 466 | 467 | 468 | 469 | 470 | 471 | < 472 | 473 | > 474 | 475 | , < 476 | 477 | > 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 |
510 | 511 |
512 |
513 | 514 | 515 | 516 | 517 | 518 |
519 |
520 |
521 |
522 | 523 | 524 | Resolution 525 | () 526 | : 527 | 528 | 529 | 530 |
531 |
532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | " 544 | 545 | " 546 | 547 | -- 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | <del> 559 | 560 | </del> 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | <ins> 571 | 572 | </ins> 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | < 581 | 582 | > 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 |
625 | 626 | 627 | 628 |
629 |
630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | <CODE BEGINS> 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | <CODE ENDS> 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | , 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | < 707 | 708 | > 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | Dropping annotation on element. 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 |
-------------------------------------------------------------------------------- /lib/myxml2rfc.xslt: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lib/saxonb9-1-0-8j/saxon9-dom.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/http2-spec/d269b36a3caac4fbcc605773cc85ad0b18e38388/lib/saxonb9-1-0-8j/saxon9-dom.jar -------------------------------------------------------------------------------- /lib/saxonb9-1-0-8j/saxon9-dom4j.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/http2-spec/d269b36a3caac4fbcc605773cc85ad0b18e38388/lib/saxonb9-1-0-8j/saxon9-dom4j.jar -------------------------------------------------------------------------------- /lib/saxonb9-1-0-8j/saxon9-jdom.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/http2-spec/d269b36a3caac4fbcc605773cc85ad0b18e38388/lib/saxonb9-1-0-8j/saxon9-jdom.jar -------------------------------------------------------------------------------- /lib/saxonb9-1-0-8j/saxon9-s9api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/http2-spec/d269b36a3caac4fbcc605773cc85ad0b18e38388/lib/saxonb9-1-0-8j/saxon9-s9api.jar -------------------------------------------------------------------------------- /lib/saxonb9-1-0-8j/saxon9-sql.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/http2-spec/d269b36a3caac4fbcc605773cc85ad0b18e38388/lib/saxonb9-1-0-8j/saxon9-sql.jar -------------------------------------------------------------------------------- /lib/saxonb9-1-0-8j/saxon9-xom.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/http2-spec/d269b36a3caac4fbcc605773cc85ad0b18e38388/lib/saxonb9-1-0-8j/saxon9-xom.jar -------------------------------------------------------------------------------- /lib/saxonb9-1-0-8j/saxon9-xpath.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/http2-spec/d269b36a3caac4fbcc605773cc85ad0b18e38388/lib/saxonb9-1-0-8j/saxon9-xpath.jar -------------------------------------------------------------------------------- /lib/saxonb9-1-0-8j/saxon9-xqj.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/http2-spec/d269b36a3caac4fbcc605773cc85ad0b18e38388/lib/saxonb9-1-0-8j/saxon9-xqj.jar -------------------------------------------------------------------------------- /lib/saxonb9-1-0-8j/saxon9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/http2-spec/d269b36a3caac4fbcc605773cc85ad0b18e38388/lib/saxonb9-1-0-8j/saxon9.jar -------------------------------------------------------------------------------- /lib/style.css: -------------------------------------------------------------------------------- 1 | @viewport { 2 | zoom: 1.0; 3 | width: extend-to-zoom; 4 | } 5 | 6 | @-ms-viewport { 7 | width: extend-to-zoom; 8 | zoom: 1.0; 9 | } 10 | 11 | body { 12 | font: 11pt cambria, helvetica, arial, sans-serif; 13 | font-size-adjust: 0.5; 14 | line-height: 130%; 15 | margin: 1em auto; 16 | max-width: 700px; 17 | } 18 | 19 | .title, .filename, h1, h2, h3, h4 { 20 | font-family: candara, helvetica, arial, sans-serif; 21 | font-size-adjust: 0.5; 22 | } 23 | .title { font-size: 150%; } 24 | h1 { font-size: 130%; } 25 | h2 { font-size: 120%; } 26 | h3, h4 { font-size: 110%; } 27 | ul.toc >li { font-size: 95%; } 28 | ul.toc >li >ul, .figure, caption { font-size: 90%; } 29 | 30 | table { 31 | margin-left: 0em; 32 | } 33 | table.header { 34 | width: 100%; 35 | } 36 | 37 | table.header td { 38 | background-color: inherit; 39 | color: black; 40 | } 41 | 42 | samp, tt, code, pre { 43 | font: 11pt consolas, monospace; 44 | font-size-adjust: none; 45 | } 46 | 47 | pre.text, pre.text2 { 48 | width: 90%; 49 | } 50 | 51 | dt { 52 | float: left; clear: left; 53 | margin: 0.5em 0.5em 0 0; 54 | } 55 | dt:first-child { 56 | margin-top: 0; 57 | } 58 | dd { 59 | margin: 0.5em 0 0 2em; 60 | } 61 | dd p, dd ul { 62 | margin-top: 0; margin-bottom: 0; 63 | } 64 | dd *+p { 65 | margin-top: 0.5em; 66 | } 67 | 68 | ol, ul { 69 | padding: 0; 70 | margin: 0.5em 0 0.5em 2em; 71 | } 72 | ul.toc, ul.toc ul { 73 | margin: 0 0 0 1.5em; 74 | } 75 | ul.toc a:first-child { 76 | display: inline-block; 77 | min-width: 1.2em; 78 | } -------------------------------------------------------------------------------- /refs/draft-ietf-httpbis-p7-auth-22.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | MAY"> 5 | MUST"> 6 | MUST NOT"> 7 | OPTIONAL"> 8 | RECOMMENDED"> 9 | REQUIRED"> 10 | SHALL"> 11 | SHALL NOT"> 12 | SHOULD"> 13 | SHOULD NOT"> 14 | 15 | 16 | 17 | 18 | Note:"> 19 | "> 20 | "> 21 | "> 22 | "> 23 | "> 24 | "> 25 | "> 26 | "> 27 | "> 28 | "> 29 | "> 30 | "> 31 | "> 32 | "> 33 | ]> 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 49 | 1167 | -------------------------------------------------------------------------------- /refs/draft-ietf-httpbis-p7-auth-23.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | MAY"> 5 | MUST"> 6 | MUST NOT"> 7 | OPTIONAL"> 8 | RECOMMENDED"> 9 | REQUIRED"> 10 | SHALL"> 11 | SHALL NOT"> 12 | SHOULD"> 13 | SHOULD NOT"> 14 | 15 | 16 | 17 | 18 | Note:"> 19 | "> 20 | "> 21 | "> 22 | "> 23 | "> 24 | "> 25 | "> 26 | "> 27 | "> 28 | "> 29 | "> 30 | "> 31 | "> 32 | "> 33 | "> 34 | "> 35 | ]> 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 51 | 1185 | -------------------------------------------------------------------------------- /refs/draft-ietf-httpbis-p7-auth-25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | MAY"> 5 | MUST"> 6 | MUST NOT"> 7 | OPTIONAL"> 8 | RECOMMENDED"> 9 | REQUIRED"> 10 | SHALL"> 11 | SHALL NOT"> 12 | SHOULD"> 13 | SHOULD NOT"> 14 | 15 | 16 | 17 | 18 | Note:"> 19 | "> 20 | "> 21 | "> 22 | "> 23 | "> 24 | "> 25 | "> 26 | "> 27 | "> 28 | "> 29 | "> 30 | "> 31 | "> 32 | "> 33 | "> 34 | "> 35 | ]> 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 51 | 1112 | --------------------------------------------------------------------------------