Changeset 1966 for draft-ietf-httpbis


Ignore:
Timestamp:
03/11/12 13:17:27 (10 years ago)
Author:
julian.reschke@…
Message:

in ctext and qdtext ABNF, say "HTAB / SP" instead of OWS

Location:
draft-ietf-httpbis/latest
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • draft-ietf-httpbis/latest/httpbis.abnf

    r1831 r1966  
    9494content-coding = token
    9595credentials = auth-scheme [ 1*SP ( token68 / [ ( "," / auth-param ) *( OWS "," [ OWS auth-param ] ) ] ) ]
    96 ctext = OWS / %x21-27 ; '!'-'''
     96ctext = HTAB / SP / %x21-27 ; '!'-'''
    9797 / %x2A-5B ; '*'-'['
    9898 / %x5D-7E ; ']'-'~'
     
    181181protocol-version = token
    182182pseudonym = token
    183 qdtext = OWS / "!" / %x23-5B ; '#'-'['
     183qdtext = HTAB / SP / "!" / %x23-5B ; '#'-'['
    184184 / %x5D-7E ; ']'-'~'
    185185 / obs-text
  • draft-ietf-httpbis/latest/p1-messaging.html

    r1965 r1966  
    12971297      </div>
    12981298      <div id="rfc.figure.u.21"></div><pre class="inline"><span id="rfc.iref.g.45"></span><span id="rfc.iref.g.46"></span><span id="rfc.iref.g.47"></span>  <a href="#rule.quoted-string" class="smpl">quoted-string</a>  = <a href="#core.rules" class="smpl">DQUOTE</a> *( <a href="#rule.quoted-string" class="smpl">qdtext</a> / <a href="#rule.quoted-pair" class="smpl">quoted-pair</a> ) <a href="#core.rules" class="smpl">DQUOTE</a>
    1299   <a href="#rule.quoted-string" class="smpl">qdtext</a>         = <a href="#rule.whitespace" class="smpl">OWS</a> / %x21 / %x23-5B / %x5D-7E / <a href="#rule.quoted-string" class="smpl">obs-text</a>
     1299  <a href="#rule.quoted-string" class="smpl">qdtext</a>         = <a href="#core.rules" class="smpl">HTAB</a> / <a href="#core.rules" class="smpl">SP</a> /%x21 / %x23-5B / %x5D-7E / <a href="#rule.quoted-string" class="smpl">obs-text</a>
    13001300  <a href="#rule.quoted-string" class="smpl">obs-text</a>       = %x80-FF
    13011301</pre><div id="rule.quoted-pair">
     
    13131313      </div>
    13141314      <div id="rfc.figure.u.23"></div><pre class="inline"><span id="rfc.iref.g.49"></span><span id="rfc.iref.g.50"></span>  <a href="#rule.comment" class="smpl">comment</a>        = "(" *( <a href="#rule.comment" class="smpl">ctext</a> / <a href="#rule.quoted-cpair" class="smpl">quoted-cpair</a> / <a href="#rule.comment" class="smpl">comment</a> ) ")"
    1315   <a href="#rule.comment" class="smpl">ctext</a>          = <a href="#rule.whitespace" class="smpl">OWS</a> / %x21-27 / %x2A-5B / %x5D-7E / <a href="#rule.quoted-string" class="smpl">obs-text</a>
     1315  <a href="#rule.comment" class="smpl">ctext</a>          = <a href="#core.rules" class="smpl">HTAB</a> / <a href="#core.rules" class="smpl">SP</a> / %x21-27 / %x2A-5B / %x5D-7E / <a href="#rule.quoted-string" class="smpl">obs-text</a>
    13161316</pre><div id="rule.quoted-cpair">
    13171317         <p id="rfc.section.3.2.4.p.11">  The backslash octet ("\") can be used as a single-octet quoting mechanism within comment constructs:</p>
     
    29392939<a href="#rule.comment" class="smpl">comment</a> = "(" *( ctext / quoted-cpair / comment ) ")"
    29402940<a href="#header.connection" class="smpl">connection-option</a> = token
    2941 <a href="#rule.comment" class="smpl">ctext</a> = OWS / %x21-27 ; '!'-'''
     2941<a href="#rule.comment" class="smpl">ctext</a> = HTAB / SP / %x21-27 ; '!'-'''
    29422942 / %x2A-5B ; '*'-'['
    29432943 / %x5D-7E ; ']'-'~'
     
    29702970<a href="#header.via" class="smpl">pseudonym</a> = token
    29712971
    2972 <a href="#rule.quoted-string" class="smpl">qdtext</a> = OWS / "!" / %x23-5B ; '#'-'['
     2972<a href="#rule.quoted-string" class="smpl">qdtext</a> = HTAB / SP / "!" / %x23-5B ; '#'-'['
    29732973 / %x5D-7E ; ']'-'~'
    29742974 / obs-text
  • draft-ietf-httpbis/latest/p1-messaging.xml

    r1965 r1966  
    13741374<figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="quoted-string"/><iref primary="true" item="Grammar" subitem="qdtext"/><iref primary="true" item="Grammar" subitem="obs-text"/>
    13751375  <x:ref>quoted-string</x:ref>  = <x:ref>DQUOTE</x:ref> *( <x:ref>qdtext</x:ref> / <x:ref>quoted-pair</x:ref> ) <x:ref>DQUOTE</x:ref>
    1376   <x:ref>qdtext</x:ref>         = <x:ref>OWS</x:ref> / %x21 / %x23-5B / %x5D-7E / <x:ref>obs-text</x:ref>
     1376  <x:ref>qdtext</x:ref>         = <x:ref>HTAB</x:ref> / <x:ref>SP</x:ref> /%x21 / %x23-5B / %x5D-7E / <x:ref>obs-text</x:ref>
    13771377  <x:ref>obs-text</x:ref>       = %x80-FF
    13781378</artwork></figure>
     
    14021402<figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="comment"/><iref primary="true" item="Grammar" subitem="ctext"/>
    14031403  <x:ref>comment</x:ref>        = "(" *( <x:ref>ctext</x:ref> / <x:ref>quoted-cpair</x:ref> / <x:ref>comment</x:ref> ) ")"
    1404   <x:ref>ctext</x:ref>          = <x:ref>OWS</x:ref> / %x21-27 / %x2A-5B / %x5D-7E / <x:ref>obs-text</x:ref>
     1404  <x:ref>ctext</x:ref>          = <x:ref>HTAB</x:ref> / <x:ref>SP</x:ref> / %x21-27 / %x2A-5B / %x5D-7E / <x:ref>obs-text</x:ref>
    14051405</artwork></figure>
    14061406<t anchor="rule.quoted-cpair">
     
    49314931<x:ref>comment</x:ref> = "(" *( ctext / quoted-cpair / comment ) ")"
    49324932<x:ref>connection-option</x:ref> = token
    4933 <x:ref>ctext</x:ref> = OWS / %x21-27 ; '!'-'''
     4933<x:ref>ctext</x:ref> = HTAB / SP / %x21-27 ; '!'-'''
    49344934 / %x2A-5B ; '*'-'['
    49354935 / %x5D-7E ; ']'-'~'
     
    49624962<x:ref>pseudonym</x:ref> = token
    49634963
    4964 <x:ref>qdtext</x:ref> = OWS / "!" / %x23-5B ; '#'-'['
     4964<x:ref>qdtext</x:ref> = HTAB / SP / "!" / %x23-5B ; '#'-'['
    49654965 / %x5D-7E ; ']'-'~'
    49664966 / obs-text
Note: See TracChangeset for help on using the changeset viewer.