Changeset 581 for draft-ietf-httpbis/latest
- Timestamp:
- 17/05/09 11:28:47 (13 years ago)
- Location:
- draft-ietf-httpbis/latest
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
draft-ietf-httpbis/latest/Makefile
r446 r581 78 78 79 79 %.parsed-abnf: %.abnf 80 $(bap)/bap -i $(bap)/core.abnf < $< | sort | $(bap)/bap -i $(bap)/core.abnf -l 69 >$@80 $(bap)/bap -i $(bap)/core.abnf < $< | sort | $(bap)/bap -k -i $(bap)/core.abnf -l 69 >$@ 81 81 82 82 %.abnf-appendix: %.parsed-abnf -
draft-ietf-httpbis/latest/abnf2xml2rfc.xslt
r537 r581 14 14 <xsl:variable name="collected" select="unparsed-text($abnf)"/> 15 15 16 <xsl:variable name="lines" as="xs:string*" select="tokenize($collected, '\r?\n')"/> 16 <xsl:variable name="all-lines" as="xs:string*" select="tokenize($collected, '\r?\n')"/> 17 <xsl:variable name="lines" select="$all-lines[normalize-space(.)!='']"/> 17 18 18 19 <section title="Collected ABNF" anchor="collected.abnf"> -
draft-ietf-httpbis/latest/p1-messaging.html
r580 r581 471 471 <tr> 472 472 <td class="header left"></td> 473 <td class="header right">May 1 0, 2009</td>473 <td class="header right">May 17, 2009</td> 474 474 </tr> 475 475 </table> … … 2659 2659 <a href="#header.date" class="smpl">Date-v</a> = HTTP-date 2660 2660 2661 <a href="#preferred.date.format" class="smpl">GMT</a> = %x47.4D.54 2662 2663 <a href="#http.version" class="smpl">HTTP-Prot-Name</a> = %x48.54.54.50 2661 <a href="#preferred.date.format" class="smpl">GMT</a> = %x47.4D.54 ; GMT 2662 2663 <a href="#http.version" class="smpl">HTTP-Prot-Name</a> = %x48.54.54.50 ; HTTP 2664 2664 <a href="#http.version" class="smpl">HTTP-Version</a> = HTTP-Prot-Name "/" 1*DIGIT "." 1*DIGIT 2665 2665 <a href="#date.time.formats.full.date" class="smpl">HTTP-date</a> = rfc1123-date / obs-date … … 2718 2718 <a href="#rule.comment" class="smpl">comment</a> = "(" *( ctext / quoted-pair / comment ) ")" 2719 2719 <a href="#header.connection" class="smpl">connection-token</a> = token 2720 <a href="#rule.comment" class="smpl">ctext</a> = OWS / %x21-27 / %x2A-5B / %x5D-7E / obs-text 2720 <a href="#rule.comment" class="smpl">ctext</a> = OWS / %x21-27 ; '!'-''' 2721 / %x2A-5B ; '*'-'[' 2722 / %x5D-7E ; ']'-'~' 2723 / obs-text 2721 2724 2722 2725 <a href="#obsolete.date.formats" class="smpl">date1</a> = day SP month SP year … … 2743 2746 <a href="#http.uri" class="smpl">http-URI</a> = "http://" authority path-abempty [ "?" query ] 2744 2747 2745 l-Fri = %x46.72.69.64.61.79 2746 l-Mon = %x4D.6F.6E.64.61.79 2747 l-Sat = %x53.61.74.75.72.64.61.79 2748 l-Sun = %x53.75.6E.64.61.79 2749 l-Thu = %x54.68.75.72.73.64.61.79 2750 l-Tue = %x54.75.65.73.64.61.79 2751 l-Wed = %x57.65.64.6E.65.73.64.61.79 2748 l-Fri = %x46.72.69.64.61.79 ; Friday 2749 l-Mon = %x4D.6F.6E.64.61.79 ; Monday 2750 l-Sat = %x53.61.74.75.72.64.61.79 ; Saturday 2751 l-Sun = %x53.75.6E.64.61.79 ; Sunday 2752 l-Thu = %x54.68.75.72.73.64.61.79 ; Thursday 2753 l-Tue = %x54.75.65.73.64.61.79 ; Tuesday 2754 l-Wed = %x57.65.64.6E.65.73.64.61.79 ; Wednesday 2752 2755 <a href="#chunked.transfer.encoding" class="smpl">last-chunk</a> = 1*"0" *WSP [ chunk-ext ] CRLF 2753 2756 … … 2774 2777 <a href="#header.via" class="smpl">pseudonym</a> = token 2775 2778 2776 <a href="#rule.quoted-string" class="smpl">qdtext</a> = OWS / "!" / %x23-5B / %x5D-7E / obs-text 2779 <a href="#rule.quoted-string" class="smpl">qdtext</a> = OWS / "!" / %x23-5B ; '#'-'[' 2780 / %x5D-7E ; ']'-'~' 2781 / obs-text 2777 2782 <a href="#uri" class="smpl">query</a> = <query, defined in [RFC3986], Section 3.4> 2778 2783 <a href="#rule.quoted-pair" class="smpl">quoted-pair</a> = "\" quoted-text … … 2791 2796 <a href="#obsolete.date.formats" class="smpl">rfc850-date</a> = day-name-l "," SP date2 SP time-of-day SP GMT 2792 2797 2793 s-Apr = %x41.70.72 2794 s-Aug = %x41.75.67 2795 s-Dec = %x44.65.63 2796 s-Feb = %x46.65.62 2797 s-Fri = %x46.72.69 2798 s-Jan = %x4A.61.6E 2799 s-Jul = %x4A.75.6C 2800 s-Jun = %x4A.75.6E 2801 s-Mar = %x4D.61.72 2802 s-May = %x4D.61.79 2803 s-Mon = %x4D.6F.6E 2804 s-Nov = %x4E.6F.76 2805 s-Oct = %x4F.63.74 2806 s-Sat = %x53.61.74 2807 s-Sep = %x53.65.70 2808 s-Sun = %x53.75.6E 2809 s-Thu = %x54.68.75 2810 s-Tue = %x54.75.65 2811 s-Wed = %x57.65.64 2798 s-Apr = %x41.70.72 ; Apr 2799 s-Aug = %x41.75.67 ; Aug 2800 s-Dec = %x44.65.63 ; Dec 2801 s-Feb = %x46.65.62 ; Feb 2802 s-Fri = %x46.72.69 ; Fri 2803 s-Jan = %x4A.61.6E ; Jan 2804 s-Jul = %x4A.75.6C ; Jul 2805 s-Jun = %x4A.75.6E ; Jun 2806 s-Mar = %x4D.61.72 ; Mar 2807 s-May = %x4D.61.79 ; May 2808 s-Mon = %x4D.6F.6E ; Mon 2809 s-Nov = %x4E.6F.76 ; Nov 2810 s-Oct = %x4F.63.74 ; Oct 2811 s-Sat = %x53.61.74 ; Sat 2812 s-Sep = %x53.65.70 ; Sep 2813 s-Sun = %x53.75.6E ; Sun 2814 s-Thu = %x54.68.75 ; Thu 2815 s-Tue = %x54.75.65 ; Tue 2816 s-Wed = %x57.65.64 ; Wed 2812 2817 <a href="#preferred.date.format" class="smpl">second</a> = 2DIGIT 2813 2818 <a href="#message.types" class="smpl">start-line</a> = Request-Line / Status-Line … … 2829 2834 2830 2835 <a href="#preferred.date.format" class="smpl">year</a> = 4DIGIT 2831 2832 2833 2836 </pre> <div id="rfc.figure.u.70"></div> 2834 2837 <p>ABNF diagnostics:</p><pre class="inline">; Chunked-Body defined but not used -
draft-ietf-httpbis/latest/p1-messaging.xml
r580 r581 4399 4399 <x:ref>Date-v</x:ref> = HTTP-date 4400 4400 4401 <x:ref>GMT</x:ref> = %x47.4D.54 4402 4403 <x:ref>HTTP-Prot-Name</x:ref> = %x48.54.54.50 4401 <x:ref>GMT</x:ref> = %x47.4D.54 ; GMT 4402 4403 <x:ref>HTTP-Prot-Name</x:ref> = %x48.54.54.50 ; HTTP 4404 4404 <x:ref>HTTP-Version</x:ref> = HTTP-Prot-Name "/" 1*DIGIT "." 1*DIGIT 4405 4405 <x:ref>HTTP-date</x:ref> = rfc1123-date / obs-date … … 4458 4458 <x:ref>comment</x:ref> = "(" *( ctext / quoted-pair / comment ) ")" 4459 4459 <x:ref>connection-token</x:ref> = token 4460 <x:ref>ctext</x:ref> = OWS / %x21-27 / %x2A-5B / %x5D-7E / obs-text 4460 <x:ref>ctext</x:ref> = OWS / %x21-27 ; '!'-''' 4461 / %x2A-5B ; '*'-'[' 4462 / %x5D-7E ; ']'-'~' 4463 / obs-text 4461 4464 4462 4465 <x:ref>date1</x:ref> = day SP month SP year … … 4483 4486 <x:ref>http-URI</x:ref> = "http://" authority path-abempty [ "?" query ] 4484 4487 4485 l-Fri = %x46.72.69.64.61.79 4486 l-Mon = %x4D.6F.6E.64.61.79 4487 l-Sat = %x53.61.74.75.72.64.61.79 4488 l-Sun = %x53.75.6E.64.61.79 4489 l-Thu = %x54.68.75.72.73.64.61.79 4490 l-Tue = %x54.75.65.73.64.61.79 4491 l-Wed = %x57.65.64.6E.65.73.64.61.79 4488 l-Fri = %x46.72.69.64.61.79 ; Friday 4489 l-Mon = %x4D.6F.6E.64.61.79 ; Monday 4490 l-Sat = %x53.61.74.75.72.64.61.79 ; Saturday 4491 l-Sun = %x53.75.6E.64.61.79 ; Sunday 4492 l-Thu = %x54.68.75.72.73.64.61.79 ; Thursday 4493 l-Tue = %x54.75.65.73.64.61.79 ; Tuesday 4494 l-Wed = %x57.65.64.6E.65.73.64.61.79 ; Wednesday 4492 4495 <x:ref>last-chunk</x:ref> = 1*"0" *WSP [ chunk-ext ] CRLF 4493 4496 … … 4514 4517 <x:ref>pseudonym</x:ref> = token 4515 4518 4516 <x:ref>qdtext</x:ref> = OWS / "!" / %x23-5B / %x5D-7E / obs-text 4519 <x:ref>qdtext</x:ref> = OWS / "!" / %x23-5B ; '#'-'[' 4520 / %x5D-7E ; ']'-'~' 4521 / obs-text 4517 4522 <x:ref>query</x:ref> = <query, defined in [RFC3986], Section 3.4> 4518 4523 <x:ref>quoted-pair</x:ref> = "\" quoted-text … … 4531 4536 <x:ref>rfc850-date</x:ref> = day-name-l "," SP date2 SP time-of-day SP GMT 4532 4537 4533 s-Apr = %x41.70.72 4534 s-Aug = %x41.75.67 4535 s-Dec = %x44.65.63 4536 s-Feb = %x46.65.62 4537 s-Fri = %x46.72.69 4538 s-Jan = %x4A.61.6E 4539 s-Jul = %x4A.75.6C 4540 s-Jun = %x4A.75.6E 4541 s-Mar = %x4D.61.72 4542 s-May = %x4D.61.79 4543 s-Mon = %x4D.6F.6E 4544 s-Nov = %x4E.6F.76 4545 s-Oct = %x4F.63.74 4546 s-Sat = %x53.61.74 4547 s-Sep = %x53.65.70 4548 s-Sun = %x53.75.6E 4549 s-Thu = %x54.68.75 4550 s-Tue = %x54.75.65 4551 s-Wed = %x57.65.64 4538 s-Apr = %x41.70.72 ; Apr 4539 s-Aug = %x41.75.67 ; Aug 4540 s-Dec = %x44.65.63 ; Dec 4541 s-Feb = %x46.65.62 ; Feb 4542 s-Fri = %x46.72.69 ; Fri 4543 s-Jan = %x4A.61.6E ; Jan 4544 s-Jul = %x4A.75.6C ; Jul 4545 s-Jun = %x4A.75.6E ; Jun 4546 s-Mar = %x4D.61.72 ; Mar 4547 s-May = %x4D.61.79 ; May 4548 s-Mon = %x4D.6F.6E ; Mon 4549 s-Nov = %x4E.6F.76 ; Nov 4550 s-Oct = %x4F.63.74 ; Oct 4551 s-Sat = %x53.61.74 ; Sat 4552 s-Sep = %x53.65.70 ; Sep 4553 s-Sun = %x53.75.6E ; Sun 4554 s-Thu = %x54.68.75 ; Thu 4555 s-Tue = %x54.75.65 ; Tue 4556 s-Wed = %x57.65.64 ; Wed 4552 4557 <x:ref>second</x:ref> = 2DIGIT 4553 4558 <x:ref>start-line</x:ref> = Request-Line / Status-Line … … 4569 4574 4570 4575 <x:ref>year</x:ref> = 4DIGIT 4571 4572 4573 4576 </artwork> 4574 4577 </figure> … … 4587 4590 </artwork></figure></section> 4588 4591 4589 4590 4592 <section title="Change Log (to be removed by RFC Editor before publication)" anchor="change.log"> 4591 4593 -
draft-ietf-httpbis/latest/p2-semantics.html
r580 r581 471 471 <tr> 472 472 <td class="header left"></td> 473 <td class="header right">May 1 0, 2009</td>473 <td class="header right">May 17, 2009</td> 474 474 </tr> 475 475 </table> … … 2282 2282 <a href="#header.max-forwards" class="smpl">Max-Forwards</a> = "Max-Forwards:" OWS Max-Forwards-v 2283 2283 <a href="#header.max-forwards" class="smpl">Max-Forwards-v</a> = 1*DIGIT 2284 <a href="#method" class="smpl">Method</a> = %x4F.50.54.49.4F.4E.53 / %x47.45.54 / %x48.45.41.44 / 2285 %x50.4F.54 / %x50.55.54 / %x44.45.4C.45.54.45 / %x54.52.41.43.45 / 2286 %x43.4E.4E.45.43.54 / extension-method 2284 <a href="#method" class="smpl">Method</a> = %x4F.50.54.49.4F.4E.53 ; OPTIONS 2285 / %x47.45.54 ; GET 2286 / %x48.45.41.44 ; HEAD 2287 / %x50.4F.53.54 ; POST 2288 / %x50.55.54 ; PUT 2289 / %x44.45.4C.45.54.45 ; DELETE 2290 / %x54.52.41.43.45 ; TRACE 2291 / %x43.4F.4E.4E.45.43.54 ; CONNECT 2292 / extension-method 2287 2293 2288 2294 <a href="#core.rules" class="smpl">OWS</a> = <OWS, defined in [Part1], Section 1.2.2> … … 2353 2359 2354 2360 <a href="#core.rules" class="smpl">token</a> = <token, defined in [Part1], Section 1.2.2> 2355 2356 2357 2361 </pre> <div id="rfc.figure.u.30"></div> 2358 2362 <p>ABNF diagnostics:</p><pre class="inline">; Reason-Phrase defined but not used -
draft-ietf-httpbis/latest/p2-semantics.xml
r580 r581 3259 3259 <x:ref>Max-Forwards</x:ref> = "Max-Forwards:" OWS Max-Forwards-v 3260 3260 <x:ref>Max-Forwards-v</x:ref> = 1*DIGIT 3261 <x:ref>Method</x:ref> = %x4F.50.54.49.4F.4E.53 / %x47.45.54 / %x48.45.41.44 / 3262 %x50.4F.54 / %x50.55.54 / %x44.45.4C.45.54.45 / %x54.52.41.43.45 / 3263 %x43.4E.4E.45.43.54 / extension-method 3261 <x:ref>Method</x:ref> = %x4F.50.54.49.4F.4E.53 ; OPTIONS 3262 / %x47.45.54 ; GET 3263 / %x48.45.41.44 ; HEAD 3264 / %x50.4F.53.54 ; POST 3265 / %x50.55.54 ; PUT 3266 / %x44.45.4C.45.54.45 ; DELETE 3267 / %x54.52.41.43.45 ; TRACE 3268 / %x43.4F.4E.4E.45.43.54 ; CONNECT 3269 / extension-method 3264 3270 3265 3271 <x:ref>OWS</x:ref> = <OWS, defined in [Part1], Section 1.2.2> … … 3330 3336 3331 3337 <x:ref>token</x:ref> = <token, defined in [Part1], Section 1.2.2> 3332 3333 3334 3338 </artwork> 3335 3339 </figure> -
draft-ietf-httpbis/latest/p4-conditional.html
r580 r581 467 467 <tr> 468 468 <td class="header left"></td> 469 <td class="header right">May 1 0, 2009</td>469 <td class="header right">May 17, 2009</td> 470 470 </tr> 471 471 </table> … … 1186 1186 <a href="#core.rules" class="smpl">quoted-string</a> = <quoted-string, defined in [Part1], Section 1.2.2> 1187 1187 1188 <a href="#entity.tags" class="smpl">weak</a> = %x57.2F 1189 1190 1188 <a href="#entity.tags" class="smpl">weak</a> = %x57.2F ; W/ 1191 1189 </pre> <div id="rfc.figure.u.17"></div> 1192 1190 <p>ABNF diagnostics:</p><pre class="inline">; ETag defined but not used -
draft-ietf-httpbis/latest/p4-conditional.xml
r580 r581 1419 1419 <x:ref>quoted-string</x:ref> = <quoted-string, defined in [Part1], Section 1.2.2> 1420 1420 1421 <x:ref>weak</x:ref> = %x57.2F 1422 1423 1421 <x:ref>weak</x:ref> = %x57.2F ; W/ 1424 1422 </artwork> 1425 1423 </figure>
Note: See TracChangeset
for help on using the changeset viewer.