Changeset 135 for draft-ietf-httpbis/latest/p2-semantics.xml
- Timestamp:
- 01/01/08 17:15:17 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
draft-ietf-httpbis/latest/p2-semantics.xml
r133 r135 283 283 </t> 284 284 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="product"/><iref primary="true" item="Grammar" subitem="product-version"/> 285 286 285 product = token ["/" product-version] 286 product-version = token 287 287 </artwork></figure> 288 288 <t> … … 309 309 </t> 310 310 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="Method"/><iref primary="true" item="Grammar" subitem="extension-method"/> 311 312 313 314 315 316 317 318 319 320 311 Method = "OPTIONS" ; <xref target="OPTIONS"/> 312 | "GET" ; <xref target="GET"/> 313 | "HEAD" ; <xref target="HEAD"/> 314 | "POST" ; <xref target="POST"/> 315 | "PUT" ; <xref target="PUT"/> 316 | "DELETE" ; <xref target="DELETE"/> 317 | "TRACE" ; <xref target="TRACE"/> 318 | "CONNECT" ; <xref target="CONNECT"/> 319 | extension-method 320 extension-method = token 321 321 </artwork></figure> 322 322 <t> … … 345 345 </t> 346 346 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="request-header"/> 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 347 request-header = Accept ; &header-accept; 348 | Accept-Charset ; &header-accept-charset; 349 | Accept-Encoding ; &header-accept-encoding; 350 | Accept-Language ; &header-accept-language; 351 | Authorization ; &header-authorization; 352 | Expect ; <xref target="header.expect"/> 353 | From ; <xref target="header.from"/> 354 | Host ; &header-host; 355 | If-Match ; &header-if-match; 356 | If-Modified-Since ; &header-if-modified-since; 357 | If-None-Match ; &header-if-none-match; 358 | If-Range ; &header-if-range; 359 | If-Unmodified-Since ; &header-if-unmodified-since; 360 | Max-Forwards ; <xref target="header.max-forwards"/> 361 | Proxy-Authorization ; &header-proxy-authorization; 362 | Range ; &header-range; 363 | Referer ; <xref target="header.referer"/> 364 | TE ; &header-te; 365 | User-Agent ; <xref target="header.user-agent"/> 366 366 </artwork></figure> 367 367 <t> … … 392 392 </t> 393 393 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="Status-Code"/><iref primary="true" item="Grammar" subitem="extension-code"/><iref primary="true" item="Grammar" subitem="Reason-Phrase"/> 394 394 Status-Code = 395 395 "100" ; <xref target="status.100"/>: Continue 396 396 | "101" ; <xref target="status.101"/>: Switching Protocols … … 435 435 | extension-code 436 436 437 438 437 extension-code = 3DIGIT 438 Reason-Phrase = *<TEXT, excluding CR, LF> 439 439 </artwork></figure> 440 440 <t> … … 463 463 </t> 464 464 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="response-header"/> 465 466 467 468 469 470 471 472 473 465 response-header = Accept-Ranges ; &header-accept-ranges; 466 | Age ; &header-age; 467 | ETag ; &header-etag; 468 | Location ; <xref target="header.location"/> 469 | Proxy-Authenticate ; &header-proxy-authenticate; 470 | Retry-After ; <xref target="header.retry-after"/> 471 | Server ; <xref target="header.server"/> 472 | Vary ; &header-vary; 473 | WWW-Authenticate ; &header-www-authenticate; 474 474 </artwork></figure> 475 475 <t> … … 1651 1651 </t> 1652 1652 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="Allow"/> 1653 1653 Allow = "Allow" ":" #Method 1654 1654 </artwork></figure> 1655 1655 <t> … … 1687 1687 </t> 1688 1688 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="Expect"/><iref primary="true" item="Grammar" subitem="expectation"/><iref primary="true" item="Grammar" subitem="expectation-extension"/><iref primary="true" item="Grammar" subitem="expect-params"/> 1689 1690 1691 1692 1693 1694 1689 Expect = "Expect" ":" 1#expectation 1690 1691 expectation = "100-continue" | expectation-extension 1692 expectation-extension = token [ "=" ( token | quoted-string ) 1693 *expect-params ] 1694 expect-params = ";" token [ "=" ( token | quoted-string ) ] 1695 1695 </artwork></figure> 1696 1696 <t> … … 1739 1739 </t> 1740 1740 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="From"/> 1741 1741 From = "From" ":" mailbox 1742 1742 </artwork></figure> 1743 1743 <t> … … 1785 1785 </t> 1786 1786 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="Location"/> 1787 1787 Location = "Location" ":" absoluteURI [ "#" fragment ] 1788 1788 </artwork></figure> 1789 1789 <t> … … 1824 1824 </t> 1825 1825 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="Max-Forwards"/> 1826 1826 Max-Forwards = "Max-Forwards" ":" 1*DIGIT 1827 1827 </artwork></figure> 1828 1828 <t> … … 1861 1861 </t> 1862 1862 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="Referer"/> 1863 1863 Referer = "Referer" ":" ( absoluteURI | relativeURI ) 1864 1864 </artwork></figure> 1865 1865 <t> … … 1889 1889 </t> 1890 1890 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="Retry-After"/> 1891 1891 Retry-After = "Retry-After" ":" ( HTTP-date | delta-seconds ) 1892 1892 </artwork></figure> 1893 1893 <t> … … 1915 1915 </t> 1916 1916 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="Server"/> 1917 1917 Server = "Server" ":" 1*( product | comment ) 1918 1918 </artwork></figure> 1919 1919 <t> … … 1953 1953 </t> 1954 1954 <figure><artwork type="abnf2616"><iref primary="true" item="Grammar" subitem="User-Agent"/> 1955 1955 User-Agent = "User-Agent" ":" 1*( product | comment ) 1956 1956 </artwork></figure> 1957 1957 <t>
Note: See TracChangeset
for help on using the changeset viewer.