Changeset 186 for draft-ietf-httpbis/latest/p1-messaging.xml
- Timestamp:
- 02/02/08 16:29:41 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
draft-ietf-httpbis/latest/p1-messaging.xml
r185 r186 811 811 <x:anchor-alias value="OCTET"/> 812 812 <x:anchor-alias value="CHAR"/> 813 <x:anchor-alias value="UPALPHA"/>814 <x:anchor-alias value="LOALPHA"/>815 813 <x:anchor-alias value="ALPHA"/> 816 814 <x:anchor-alias value="DIGIT"/> … … 836 834 is defined by ANSI X3.4-1986 <xref target="USASCII"/>. 837 835 </t> 838 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="OCTET"/><iref primary="true" item="Grammar" subitem="CHAR"/><iref primary="true" item="Grammar" subitem="UPALPHA"/><iref primary="true" item="Grammar" subitem="LOALPHA"/><iref primary="true" item="Grammar" subitem="ALPHA"/><iref primary="true" item="Grammar" subitem="DIGIT"/><iref primary="true" item="Grammar" subitem="CTL"/><iref primary="true" item="Grammar" subitem="CR"/><iref primary="true" item="Grammar" subitem="LF"/><iref primary="true" item="Grammar" subitem="SP"/><iref primary="true" item="Grammar" subitem="HTAB"/><iref primary="true" item="Grammar" subitem="DQUOTE"/> 839 OCTET = <any 8-bit sequence of data> 840 CHAR = <any US-ASCII character (octets 0 - 127)> 841 UPALPHA = <any US-ASCII uppercase letter "A".."Z"> 842 LOALPHA = <any US-ASCII lowercase letter "a".."z"> 843 ALPHA = UPALPHA | LOALPHA 844 DIGIT = <any US-ASCII digit "0".."9"> 845 CTL = <any US-ASCII control character 846 (octets 0 - 31) and DEL (127)> 847 CR = <US-ASCII CR, carriage return (13)> 848 LF = <US-ASCII LF, linefeed (10)> 849 SP = <US-ASCII SP, space (32)> 850 HTAB = <US-ASCII HT, horizontal-tab (9)> 851 DQUOTE = <US-ASCII double-quote mark (34)> 836 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="OCTET"/><iref primary="true" item="Grammar" subitem="CHAR"/><iref primary="true" item="Grammar" subitem="ALPHA"/><iref primary="true" item="Grammar" subitem="DIGIT"/><iref primary="true" item="Grammar" subitem="CTL"/><iref primary="true" item="Grammar" subitem="CR"/><iref primary="true" item="Grammar" subitem="LF"/><iref primary="true" item="Grammar" subitem="SP"/><iref primary="true" item="Grammar" subitem="HTAB"/><iref primary="true" item="Grammar" subitem="DQUOTE"/> 837 OCTET = %x00-FF 838 ; any 8-bit sequence of data 839 CHAR = %x00-7F 840 ; any US-ASCII character 841 ALPHA = %x41-5A / %x61-7A 842 ; A-Z / a-z 843 DIGIT = %x30-39 844 ; any US-ASCII digit "0".."9" 845 CTL = %x00-1F | %x7F 846 ; (octets 0 - 31) and DEL (127) 847 CR = %x0D 848 ; US-ASCII CR, carriage return (13) 849 LF = %x0A 850 ; US-ASCII LF, linefeed (10) 851 SP = %x20 852 ; US-ASCII SP, space (32) 853 HTAB = %x09 854 ; US-ASCII HT, horizontal-tab (9) 855 DQUOTE = %x22 856 ; US-ASCII double-quote mark (34) 852 857 </artwork></figure> 853 858 <t> … … 878 883 </t> 879 884 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="TEXT"/> 880 TEXT = <any OCTET except CTLs, 881 but including LWS> 885 TEXT = <any OCTET except CTLs, but including LWS> 882 886 </artwork></figure> 883 887 <t> … … 1387 1391 field-name = token 1388 1392 field-value = *( field-content | LWS ) 1389 field-content = <the OCTETs making up the field-value 1390 and consisting of either *TEXT or combinations 1391 of token, separators, and quoted-string> 1393 field-content = <field content> 1394 ; the OCTETs making up the field-value 1395 ; and consisting of either *TEXT or combinations 1396 ; of token, separators, and quoted-string 1392 1397 </artwork></figure> 1393 1398 <t> … … 4182 4187 </t> 4183 4188 <t> 4184 O ther changes:4189 Ongoing work on ABNF conversion (<eref target="http://www3.tools.ietf.org/wg/httpbis/trac/ticket/36"/>): 4185 4190 <list style="symbols"> 4186 4191 <t> 4187 4192 Get rid of duplicate BNF rule names ("host" -> "uri-host", "trailer" -> 4188 "trailer-part"), avoid underscore character in rule names ("http_URL" -> 4189 "http-URL", "abs_path" -> "path-absolute"), add rules for terms 4190 imported from URI spec ("absoluteURI", "authority", "path-absolute", 4191 "port", "query", "relativeURI", "host) -- these will have to be updated 4192 when switching over to RFC3986 4193 (work in progress on <eref target="http://www3.tools.ietf.org/wg/httpbis/trac/ticket/36"/>) 4193 "trailer-part"). 4194 </t> 4195 <t> 4196 Avoid underscore character in rule names ("http_URL" -> 4197 "http-URL", "abs_path" -> "path-absolute"). 4198 </t> 4199 <t> 4200 Add rules for terms imported from URI spec ("absoluteURI", "authority", 4201 "path-absolute", "port", "query", "relativeURI", "host) -- these will 4202 have to be updated when switching over to RFC3986. 4203 </t> 4204 <t> 4205 Synchronize core rules with RFC5234. 4206 </t> 4207 <t> 4208 Get rid of prose rules that span multiple lines. 4209 </t> 4210 <t> 4211 Get rid of unused rules LOALPHA and UPALPHA. 4194 4212 </t> 4195 4213 </list>
Note: See TracChangeset
for help on using the changeset viewer.