Changeset 427 for draft-ietf-httpbis/latest/p6-cache.xml
- Timestamp:
- Nov 22, 2008, 10:21:16 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
draft-ietf-httpbis/latest/p6-cache.xml
r425 r427 2979 2979 </section> 2980 2980 2981 <section title="Collected ABNF" anchor="collected.abnf"> 2982 <figure> 2983 <artwork type="abnf" name="p6-cache.parsed-abnf"> 2984 Age = "Age:" OWS Age-v 2985 Age-v = delta-seconds 2986 Cache-Control = "Cache-Control:" OWS Cache-Control-v 2987 Cache-Control-v = *( "," OWS ) cache-directive *( OWS "," [ OWS 2981 <section xmlns:x="http://purl.org/net/xml2rfc/ext" title="Collected ABNF" anchor="collected.abnf"> 2982 <figure> 2983 <artwork type="abnf" name="p6-cache.parsed-abnf"> 2984 <x:ref>Age</x:ref> = "Age:" OWS Age-v 2985 <x:ref>Age-v</x:ref> = delta-seconds 2986 2987 <x:ref>Cache-Control</x:ref> = "Cache-Control:" OWS Cache-Control-v 2988 <x:ref>Cache-Control-v</x:ref> = *( "," OWS ) cache-directive *( OWS "," [ OWS 2988 2989 cache-directive ] ) 2989 Expires = "Expires:" OWS Expires-v 2990 Expires-v = HTTP-date 2991 HTTP-date = <HTTP-date, defined in [Part1], Section 3.2.1> 2992 OWS = <OWS, defined in [Part1], Section 1.2.2> 2993 Pragma = "Pragma:" OWS Pragma-v 2994 Pragma-v = *( "," OWS ) pragma-directive *( OWS "," [ OWS 2990 <x:ref>Expires</x:ref> = "Expires:" OWS Expires-v 2991 <x:ref>Expires-v</x:ref> = HTTP-date 2992 2993 <x:ref>HTTP-date</x:ref> = <HTTP-date, defined in [Part1], Section 3.2.1> 2994 2995 <x:ref>OWS</x:ref> = <OWS, defined in [Part1], Section 1.2.2> 2996 2997 <x:ref>Pragma</x:ref> = "Pragma:" OWS Pragma-v 2998 <x:ref>Pragma-v</x:ref> = *( "," OWS ) pragma-directive *( OWS "," [ OWS 2995 2999 pragma-directive ] ) 2996 Vary= "Vary:" OWS Vary-v2997 Vary-v= "*" / ( *( "," OWS ) field-name *( OWS "," [ OWS field-name3000 <x:ref>Vary</x:ref> = "Vary:" OWS Vary-v 3001 <x:ref>Vary-v</x:ref> = "*" / ( *( "," OWS ) field-name *( OWS "," [ OWS field-name 2998 3002 ] ) ) 2999 Warning= "Warning:" OWS Warning-v3000 Warning-v= *( "," OWS ) warning-value *( OWS "," [ OWS warning-value3003 <x:ref>Warning</x:ref> = "Warning:" OWS Warning-v 3004 <x:ref>Warning-v</x:ref> = *( "," OWS ) warning-value *( OWS "," [ OWS warning-value 3001 3005 ] ) 3002 cache-directive= cache-request-directive / cache-response-directive3003 cache-extension= token [ "=" ( token / quoted-string ) ]3004 cache-request-directive= "no-cache" / "no-store" / ( "max-age="3006 <x:ref>cache-directive</x:ref> = cache-request-directive / cache-response-directive 3007 <x:ref>cache-extension</x:ref> = token [ "=" ( token / quoted-string ) ] 3008 <x:ref>cache-request-directive</x:ref> = "no-cache" / "no-store" / ( "max-age=" 3005 3009 delta-seconds ) / ( "max-stale" [ "=" delta-seconds ] ) / ( 3006 3010 "min-fresh=" delta-seconds ) / "no-transform" / "only-if-cached" / 3007 3011 cache-extension 3008 cache-response-directive= "public" / ( "private" [ "=" DQUOTE *( ","3012 <x:ref>cache-response-directive</x:ref> = "public" / ( "private" [ "=" DQUOTE *( "," 3009 3013 OWS ) field-name *( OWS "," [ OWS field-name ] ) DQUOTE ] ) / ( 3010 3014 "no-cache" [ "=" DQUOTE *( "," OWS ) field-name *( OWS "," [ OWS … … 3012 3016 "must-revalidate" / "proxy-revalidate" / ( "max-age=" delta-seconds 3013 3017 ) / ( "s-maxage=" delta-seconds ) / cache-extension 3014 delta-seconds = 1*DIGIT 3015 extension-pragma = token [ "=" ( token / quoted-string ) ] 3016 field-name = <field-name, defined in [Part1], Section 4.2> 3017 port = <port, defined in [Part1], Section 2.1> 3018 pragma-directive = "no-cache" / extension-pragma 3019 pseudonym = <pseudonym, defined in [Part1], Section 8.9> 3020 quoted-string = <quoted-string, defined in [Part1], Section 1.2.2> 3021 token = <token, defined in [Part1], Section 1.2.2> 3022 uri-host = <uri-host, defined in [Part1], Section 2.1> 3023 warn-agent = ( uri-host [ ":" port ] ) / pseudonym 3024 warn-code = 3DIGIT 3025 warn-date = DQUOTE HTTP-date DQUOTE 3026 warn-text = quoted-string 3027 warning-value = warn-code SP warn-agent SP warn-text [ SP warn-date 3018 <x:ref>delta-seconds</x:ref> = 1*DIGIT 3019 3020 <x:ref>extension-pragma</x:ref> = token [ "=" ( token / quoted-string ) ] 3021 3022 <x:ref>field-name</x:ref> = <field-name, defined in [Part1], Section 4.2> 3023 3024 <x:ref>port</x:ref> = <port, defined in [Part1], Section 2.1> 3025 <x:ref>pragma-directive</x:ref> = "no-cache" / extension-pragma 3026 <x:ref>pseudonym</x:ref> = <pseudonym, defined in [Part1], Section 8.9> 3027 3028 <x:ref>quoted-string</x:ref> = <quoted-string, defined in [Part1], Section 1.2.2> 3029 3030 <x:ref>token</x:ref> = <token, defined in [Part1], Section 1.2.2> 3031 3032 <x:ref>uri-host</x:ref> = <uri-host, defined in [Part1], Section 2.1> 3033 3034 <x:ref>warn-agent</x:ref> = ( uri-host [ ":" port ] ) / pseudonym 3035 <x:ref>warn-code</x:ref> = 3DIGIT 3036 <x:ref>warn-date</x:ref> = DQUOTE HTTP-date DQUOTE 3037 <x:ref>warn-text</x:ref> = quoted-string 3038 <x:ref>warning-value</x:ref> = warn-code SP warn-agent SP warn-text [ SP warn-date 3028 3039 ] 3029 3040 ; Age defined but not used … … 3033 3044 ; Vary defined but not used 3034 3045 ; Warning defined but not used 3046 3047 3035 3048 </artwork> 3036 3049 </figure> 3037 3050 </section> 3038 3051
Note: See TracChangeset
for help on using the changeset viewer.