Changeset 421 for draft-ietf-httpbis/latest/p3-payload.xml
- Timestamp:
- 21/11/08 15:31:40 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
draft-ietf-httpbis/latest/p3-payload.xml
r391 r421 2606 2606 </section> 2607 2607 2608 <section title="Collected ABNF" anchor="collected.abnf"> 2609 <figure> 2610 <artwork type="abnf" name="p3-payload.parsed-abnf">ALPHA = <ALPHA, defined in [Part1], Section 1.2.2>
 2611 Accept = "Accept:" OWS Accept-v
 2612 Accept-Charset = "Accept-Charset:" OWS Accept-Charset-v
 2613 Accept-Charset-v = *( "," OWS ) ( charset / "*" ) [ OWS ";" OWS "q="
 2614 qvalue ] *( OWS "," [ OWS ( charset / "*" ) [ OWS ";" OWS "q="
 2615 qvalue ] ] )
 2616 Accept-Encoding = "Accept-Encoding:" OWS Accept-Encoding-v
 2617 Accept-Encoding-v = [ ( "," / ( codings [ OWS ";" OWS "q=" qvalue ] )
 2618 ) *( OWS "," [ OWS codings [ OWS ";" OWS "q=" qvalue ] ] ) ]
 2619 Accept-Language = "Accept-Language:" OWS Accept-Language-v
 2620 Accept-Language-v = *( "," OWS ) language-range [ OWS ";" OWS "q="
 2621 qvalue ] *( OWS "," [ OWS language-range [ OWS ";" OWS "q=" qvalue ]
 2622 ] )
 2623 Accept-v = [ ( "," / ( media-range [ accept-params ] ) ) *( OWS "," [
 2624 OWS media-range [ accept-params ] ] ) ]
 2625 Content-Encoding = "Content-Encoding:" OWS Content-Encoding-v
 2626 Content-Encoding-v = *( "," OWS ) content-coding *( OWS "," [ OWS
 2627 content-coding ] )
 2628 Content-Language = "Content-Language:" OWS Content-Language-v
 2629 Content-Language-v = *( "," OWS ) language-tag *( OWS "," [ OWS
 2630 language-tag ] )
 2631 Content-Length = <Content-Length, defined in [Part1], Section 8.2>
 2632 Content-Location = "Content-Location:" OWS Content-Location-v
 2633 Content-Location-v = absolute-URI / partial-URI
 2634 Content-MD5 = "Content-MD5:" OWS Content-MD5-v
 2635 Content-MD5-v = <base64 of 128 bit MD5 digest as per [RFC1864]>
 2636 Content-Range = <Content-Range, defined in [Part5], Section 6.2>
 2637 Content-Type = "Content-Type:" OWS Content-Type-v
 2638 Content-Type-v = media-type
 2639 DIGIT = <DIGIT, defined in [Part1], Section 1.2.2>
 2640 Expires = <Expires, defined in [Part6], Section 16.3>
 2641 Last-Modified = <Last-Modified, defined in [Part4], Section 7.6>
 2642 MIME-Version = "MIME-Version:" OWS MIME-Version-v
 2643 MIME-Version-v = 1*DIGIT "." 1*DIGIT
 2644 OCTET = <OCTET, defined in [Part1], Section 1.2.2>
 2645 OWS = <OWS, defined in [Part1], Section 1.2.2>
 2646 absolute-URI = <absolute-URI, defined in [Part1], Section 2.1>
 2647 accept-ext = OWS ";" OWS token [ "=" ( token / quoted-string ) ]
 2648 accept-params = OWS ";" OWS "q=" qvalue *accept-ext
 2649 attribute = token
 2650 charset = token
 2651 codings = ( content-coding / "*" )
 2652 content-coding = token
 2653 content-disposition = "Content-Disposition:" OWS
 2654 content-disposition-v
 2655 content-disposition-v = disposition-type *( OWS ";" OWS
 2656 disposition-parm )
 2657 disp-extension-parm = token "=" ( token / quoted-string )
 2658 disp-extension-token = token
 2659 disposition-parm = filename-parm / disp-extension-parm
 2660 disposition-type = "attachment" / disp-extension-token
 2661 entity-body = *OCTET
 2662 entity-header = Content-Encoding / Content-Language / Content-Length
 2663 / Content-Location / Content-MD5 / Content-Range / Content-Type /
 2664 Expires / Last-Modified / extension-header
 2665 extension-header = message-header
 2666 filename-parm = "filename=" quoted-string
 2667 language-range = <language-range, defined in [RFC4647], Section 2.1>
 2668 language-tag = primary-tag *( "-" subtag )
 2669 media-range = ( "*/*" / ( type "/*" ) / ( type "/" subtype ) ) *( OWS
 2670 ";" OWS parameter )
 2671 media-type = type "/" subtype *( OWS ";" OWS parameter )
 2672 message-header = <message-header, defined in [Part1], Section 4.2>
 2673 parameter = attribute "=" value
 2674 partial-URI = <partial-URI, defined in [Part1], Section 2.1>
 2675 primary-tag = 1*8ALPHA
 2676 quoted-string = <quoted-string, defined in [Part1], Section 1.2.2>
 2677 qvalue = ( "0" [ "." *3DIGIT ] ) / ( "1" [ "." *3"0" ] )
 2678 subtag = 1*8ALPHA
 2679 subtype = token
 2680 token = <token, defined in [Part1], Section 1.2.2>
 2681 type = token
 2682 value = token / quoted-string
 2683 ; Accept defined but not used
 2684 ; Accept-Charset defined but not used
 2685 ; Accept-Encoding defined but not used
 2686 ; Accept-Language defined but not used
 2687 ; MIME-Version defined but not used
 2688 ; content-disposition defined but not used
 2689 ; entity-body defined but not used
 2690 ; entity-header defined but not used
 2691 </artwork> 2692 </figure> 2693 </section> 2694 2608 2695 <section title="Change Log (to be removed by RFC Editor before publication)" anchor="change.log"> 2609 2696 … … 2777 2864 </list> 2778 2865 </t> 2866 <t> 2867 Ongoing work on ABNF conversion (<eref target="http://tools.ietf.org/wg/httpbis/trac/ticket/36"/>): 2868 <list style="symbols"> 2869 <t> 2870 Add appendix containing collected and expanded ABNF. 2871 </t> 2872 </list> 2873 </t> 2779 2874 </section> 2780 2875
Note: See TracChangeset
for help on using the changeset viewer.