Changeset 1427
- Timestamp:
- Sep 1, 2011, 1:45:45 AM (8 years ago)
- Location:
- draft-ietf-httpbis/latest
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
draft-ietf-httpbis/latest/p1-messaging.html
r1426 r1427 3145 3145 <a href="#method" class="smpl">Method</a> = token 3146 3146 3147 <a href="#rule.whitespace" class="smpl">OWS</a> = *( [ obs-fold ] WSP)3148 3149 <a href="#rule.whitespace" class="smpl">RWS</a> = 1*( [ obs-fold ] WSP)3150 <a href="#status.code.and.reason.phrase" class="smpl">Reason-Phrase</a> = *( WSP / VCHAR / obs-text )3147 <a href="#rule.whitespace" class="smpl">OWS</a> = *( SP / HTAB / obs-fold ) 3148 3149 <a href="#rule.whitespace" class="smpl">RWS</a> = 1*( SP / HTAB / obs-fold ) 3150 <a href="#status.code.and.reason.phrase" class="smpl">Reason-Phrase</a> = *( HTAB / SP / VCHAR / obs-text ) 3151 3151 <a href="#request" class="smpl">Request</a> = Request-Line *( header-field CRLF ) CRLF [ message-body ] 3152 3152 <a href="#request-line" class="smpl">Request-Line</a> = Method SP request-target SP HTTP-Version CRLF … … 3173 3173 <a href="#uri" class="smpl">authority</a> = <authority, defined in [RFC3986], Section 3.2> 3174 3174 3175 <a href="#chunked.encoding" class="smpl">chunk</a> = chunk-size *WSP[ chunk-ext ] CRLF chunk-data CRLF3175 <a href="#chunked.encoding" class="smpl">chunk</a> = chunk-size [ chunk-ext ] CRLF chunk-data CRLF 3176 3176 <a href="#chunked.encoding" class="smpl">chunk-data</a> = 1*OCTET 3177 <a href="#chunked.encoding" class="smpl">chunk-ext</a> = *( ";" *WSP chunk-ext-name [ "=" chunk-ext-val ] *WSP)3177 <a href="#chunked.encoding" class="smpl">chunk-ext</a> = *( ";" chunk-ext-name [ "=" chunk-ext-val ] ) 3178 3178 <a href="#chunked.encoding" class="smpl">chunk-ext-name</a> = token 3179 3179 <a href="#chunked.encoding" class="smpl">chunk-ext-val</a> = token / quoted-str-nf … … 3205 3205 / %x53.75.6E.64.61.79 ; Sunday 3206 3206 3207 <a href="#header.fields" class="smpl">field-content</a> = *( WSP / VCHAR / obs-text )3207 <a href="#header.fields" class="smpl">field-content</a> = *( HTAB / SP / VCHAR / obs-text ) 3208 3208 <a href="#header.fields" class="smpl">field-name</a> = token 3209 <a href="#header.fields" class="smpl">field-value</a> = *( field-content / OWS)3210 3211 <a href="#header.fields" class="smpl">header-field</a> = field-name ":" OWS field-value OWS3209 <a href="#header.fields" class="smpl">field-value</a> = *( field-content / obs-fold ) 3210 3211 <a href="#header.fields" class="smpl">header-field</a> = field-name ":" OWS field-value BWS 3212 3212 <a href="#preferred.date.format" class="smpl">hour</a> = 2DIGIT 3213 3213 <a href="#http.uri" class="smpl">http-URI</a> = "http://" authority path-abempty [ "?" query ] 3214 3214 <a href="#https.uri" class="smpl">https-URI</a> = "https://" authority path-abempty [ "?" query ] 3215 3215 3216 <a href="#chunked.encoding" class="smpl">last-chunk</a> = 1*"0" *WSP[ chunk-ext ] CRLF3216 <a href="#chunked.encoding" class="smpl">last-chunk</a> = 1*"0" [ chunk-ext ] CRLF 3217 3217 3218 3218 <a href="#message.body" class="smpl">message-body</a> = *OCTET … … 3232 3232 3233 3233 <a href="#obsolete.date.formats" class="smpl">obs-date</a> = rfc850-date / asctime-date 3234 <a href="#rule.whitespace" class="smpl">obs-fold</a> = CRLF 3234 <a href="#rule.whitespace" class="smpl">obs-fold</a> = CRLF ( SP / HTAB ) 3235 3235 <a href="#rule.quoted-string" class="smpl">obs-text</a> = %x80-FF 3236 3236 … … 3248 3248 / %x5D-7E ; ']'-'~' 3249 3249 / obs-text 3250 <a href="#chunked.encoding" class="smpl">qdtext-nf</a> = WSP / "!" / %x23-5B ; '#'-'['3250 <a href="#chunked.encoding" class="smpl">qdtext-nf</a> = HTAB / SP / "!" / %x23-5B ; '#'-'[' 3251 3251 / %x5D-7E ; ']'-'~' 3252 3252 / obs-text 3253 3253 <a href="#uri" class="smpl">query</a> = <query, defined in [RFC3986], Section 3.4> 3254 <a href="#rule.quoted-cpair" class="smpl">quoted-cpair</a> = "\" ( WSP / VCHAR / obs-text )3255 <a href="#rule.quoted-pair" class="smpl">quoted-pair</a> = "\" ( WSP / VCHAR / obs-text )3254 <a href="#rule.quoted-cpair" class="smpl">quoted-cpair</a> = "\" ( HTAB / SP / VCHAR / obs-text ) 3255 <a href="#rule.quoted-pair" class="smpl">quoted-pair</a> = "\" ( HTAB / SP / VCHAR / obs-text ) 3256 3256 <a href="#chunked.encoding" class="smpl">quoted-str-nf</a> = DQUOTE *( qdtext-nf / quoted-pair ) DQUOTE 3257 3257 <a href="#rule.quoted-string" class="smpl">quoted-string</a> = DQUOTE *( qdtext / quoted-pair ) DQUOTE -
draft-ietf-httpbis/latest/p1-messaging.xml
r1426 r1427 5306 5306 <x:ref>Method</x:ref> = token 5307 5307 5308 <x:ref>OWS</x:ref> = *( [ obs-fold ] WSP)5309 5310 <x:ref>RWS</x:ref> = 1*( [ obs-fold ] WSP)5311 <x:ref>Reason-Phrase</x:ref> = *( WSP / VCHAR / obs-text )5308 <x:ref>OWS</x:ref> = *( SP / HTAB / obs-fold ) 5309 5310 <x:ref>RWS</x:ref> = 1*( SP / HTAB / obs-fold ) 5311 <x:ref>Reason-Phrase</x:ref> = *( HTAB / SP / VCHAR / obs-text ) 5312 5312 <x:ref>Request</x:ref> = Request-Line *( header-field CRLF ) CRLF [ message-body ] 5313 5313 <x:ref>Request-Line</x:ref> = Method SP request-target SP HTTP-Version CRLF … … 5334 5334 <x:ref>authority</x:ref> = <authority, defined in [RFC3986], Section 3.2> 5335 5335 5336 <x:ref>chunk</x:ref> = chunk-size *WSP[ chunk-ext ] CRLF chunk-data CRLF5336 <x:ref>chunk</x:ref> = chunk-size [ chunk-ext ] CRLF chunk-data CRLF 5337 5337 <x:ref>chunk-data</x:ref> = 1*OCTET 5338 <x:ref>chunk-ext</x:ref> = *( ";" *WSP chunk-ext-name [ "=" chunk-ext-val ] *WSP)5338 <x:ref>chunk-ext</x:ref> = *( ";" chunk-ext-name [ "=" chunk-ext-val ] ) 5339 5339 <x:ref>chunk-ext-name</x:ref> = token 5340 5340 <x:ref>chunk-ext-val</x:ref> = token / quoted-str-nf … … 5366 5366 / %x53.75.6E.64.61.79 ; Sunday 5367 5367 5368 <x:ref>field-content</x:ref> = *( WSP / VCHAR / obs-text )5368 <x:ref>field-content</x:ref> = *( HTAB / SP / VCHAR / obs-text ) 5369 5369 <x:ref>field-name</x:ref> = token 5370 <x:ref>field-value</x:ref> = *( field-content / OWS)5371 5372 <x:ref>header-field</x:ref> = field-name ":" OWS field-value OWS5370 <x:ref>field-value</x:ref> = *( field-content / obs-fold ) 5371 5372 <x:ref>header-field</x:ref> = field-name ":" OWS field-value BWS 5373 5373 <x:ref>hour</x:ref> = 2DIGIT 5374 5374 <x:ref>http-URI</x:ref> = "http://" authority path-abempty [ "?" query ] 5375 5375 <x:ref>https-URI</x:ref> = "https://" authority path-abempty [ "?" query ] 5376 5376 5377 <x:ref>last-chunk</x:ref> = 1*"0" *WSP[ chunk-ext ] CRLF5377 <x:ref>last-chunk</x:ref> = 1*"0" [ chunk-ext ] CRLF 5378 5378 5379 5379 <x:ref>message-body</x:ref> = *OCTET … … 5393 5393 5394 5394 <x:ref>obs-date</x:ref> = rfc850-date / asctime-date 5395 <x:ref>obs-fold</x:ref> = CRLF 5395 <x:ref>obs-fold</x:ref> = CRLF ( SP / HTAB ) 5396 5396 <x:ref>obs-text</x:ref> = %x80-FF 5397 5397 … … 5409 5409 / %x5D-7E ; ']'-'~' 5410 5410 / obs-text 5411 <x:ref>qdtext-nf</x:ref> = WSP / "!" / %x23-5B ; '#'-'['5411 <x:ref>qdtext-nf</x:ref> = HTAB / SP / "!" / %x23-5B ; '#'-'[' 5412 5412 / %x5D-7E ; ']'-'~' 5413 5413 / obs-text 5414 5414 <x:ref>query</x:ref> = <query, defined in [RFC3986], Section 3.4> 5415 <x:ref>quoted-cpair</x:ref> = "\" ( WSP / VCHAR / obs-text )5416 <x:ref>quoted-pair</x:ref> = "\" ( WSP / VCHAR / obs-text )5415 <x:ref>quoted-cpair</x:ref> = "\" ( HTAB / SP / VCHAR / obs-text ) 5416 <x:ref>quoted-pair</x:ref> = "\" ( HTAB / SP / VCHAR / obs-text ) 5417 5417 <x:ref>quoted-str-nf</x:ref> = DQUOTE *( qdtext-nf / quoted-pair ) DQUOTE 5418 5418 <x:ref>quoted-string</x:ref> = DQUOTE *( qdtext / quoted-pair ) DQUOTE -
draft-ietf-httpbis/latest/p2-semantics.html
r1426 r1427 2810 2810 2811 2811 <a href="#core.rules" class="smpl">RWS</a> = <RWS, defined in [Part1], Section 1.2.2> 2812 <a href="#status.code.and.reason.phrase" class="smpl">Reason-Phrase</a> = *( WSP / VCHAR / obs-text )2812 <a href="#status.code.and.reason.phrase" class="smpl">Reason-Phrase</a> = *( HTAB / SP / VCHAR / obs-text ) 2813 2813 <a href="#header.referer" class="smpl">Referer</a> = absolute-URI / partial-URI 2814 2814 <a href="#header.retry-after" class="smpl">Retry-After</a> = HTTP-date / delta-seconds -
draft-ietf-httpbis/latest/p2-semantics.xml
r1426 r1427 3692 3692 3693 3693 <x:ref>RWS</x:ref> = <RWS, defined in [Part1], Section 1.2.2> 3694 <x:ref>Reason-Phrase</x:ref> = *( WSP / VCHAR / obs-text )3694 <x:ref>Reason-Phrase</x:ref> = *( HTAB / SP / VCHAR / obs-text ) 3695 3695 <x:ref>Referer</x:ref> = absolute-URI / partial-URI 3696 3696 <x:ref>Retry-After</x:ref> = HTTP-date / delta-seconds
Note: See TracChangeset
for help on using the changeset viewer.