From: André Malo
Date: Mon, 11 Apr 2005 15:10:57 +0000 (+0000)
Subject: update transformation
X-Git-Tag: 2.0.54~5
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b054e3f92dbe14edb9782f2c16631c5dea7bc09;p=thirdparty%2Fapache%2Fhttpd.git
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@160901 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/directives.html.de b/docs/manual/mod/directives.html.de
index 184e12dba83..6a0453aa753 100644
--- a/docs/manual/mod/directives.html.de
+++ b/docs/manual/mod/directives.html.de
@@ -122,6 +122,7 @@
CacheGcMemUsage
CacheGcUnused
CacheIgnoreCacheControl
+CacheIgnoreHeaders
CacheIgnoreNoLastMod
CacheLastModifiedFactor
CacheMaxExpire
@@ -209,6 +210,7 @@
LanguagePriority
LDAPCacheEntries
LDAPCacheTTL
+LDAPConnectionTimeout
LDAPOpCacheEntries
LDAPOpCacheTTL
LDAPSharedCacheFile
diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en
index 0db0d9b24e6..02324db51a9 100644
--- a/docs/manual/mod/directives.html.en
+++ b/docs/manual/mod/directives.html.en
@@ -123,6 +123,7 @@
CacheGcMemUsage
CacheGcUnused
CacheIgnoreCacheControl
+CacheIgnoreHeaders
CacheIgnoreNoLastMod
CacheLastModifiedFactor
CacheMaxExpire
@@ -210,6 +211,7 @@
LanguagePriority
LDAPCacheEntries
LDAPCacheTTL
+LDAPConnectionTimeout
LDAPOpCacheEntries
LDAPOpCacheTTL
LDAPSharedCacheFile
diff --git a/docs/manual/mod/directives.html.es b/docs/manual/mod/directives.html.es
index 2513e03965f..00261bbbd58 100644
--- a/docs/manual/mod/directives.html.es
+++ b/docs/manual/mod/directives.html.es
@@ -125,6 +125,7 @@
CacheGcMemUsage
CacheGcUnused
CacheIgnoreCacheControl
+CacheIgnoreHeaders
CacheIgnoreNoLastMod
CacheLastModifiedFactor
CacheMaxExpire
@@ -212,6 +213,7 @@
LanguagePriority
LDAPCacheEntries
LDAPCacheTTL
+LDAPConnectionTimeout
LDAPOpCacheEntries
LDAPOpCacheTTL
LDAPSharedCacheFile
diff --git a/docs/manual/mod/directives.html.ja.euc-jp b/docs/manual/mod/directives.html.ja.euc-jp
index adcc8ad778e..0b91ffa2a0c 100644
--- a/docs/manual/mod/directives.html.ja.euc-jp
+++ b/docs/manual/mod/directives.html.ja.euc-jp
@@ -120,6 +120,7 @@
CacheGcMemUsage
CacheGcUnused
CacheIgnoreCacheControl
+CacheIgnoreHeaders
CacheIgnoreNoLastMod
CacheLastModifiedFactor
CacheMaxExpire
@@ -207,6 +208,7 @@
LanguagePriority
LDAPCacheEntries
LDAPCacheTTL
+LDAPConnectionTimeout
LDAPOpCacheEntries
LDAPOpCacheTTL
LDAPSharedCacheFile
diff --git a/docs/manual/mod/directives.html.ko.euc-kr b/docs/manual/mod/directives.html.ko.euc-kr
index 0e443f71aa6..c8aceaab836 100644
--- a/docs/manual/mod/directives.html.ko.euc-kr
+++ b/docs/manual/mod/directives.html.ko.euc-kr
@@ -207,6 +207,7 @@
LanguagePriority
LDAPCacheEntries
LDAPCacheTTL
+LDAPConnectionTimeout
LDAPOpCacheEntries
LDAPOpCacheTTL
LDAPSharedCacheFile
diff --git a/docs/manual/mod/directives.html.ru.koi8-r b/docs/manual/mod/directives.html.ru.koi8-r
index a9bc99a88c1..8cadaf0152e 100644
--- a/docs/manual/mod/directives.html.ru.koi8-r
+++ b/docs/manual/mod/directives.html.ru.koi8-r
@@ -124,6 +124,7 @@
CacheGcMemUsage
CacheGcUnused
CacheIgnoreCacheControl
+CacheIgnoreHeaders
CacheIgnoreNoLastMod
CacheLastModifiedFactor
CacheMaxExpire
@@ -211,6 +212,7 @@
LanguagePriority
LDAPCacheEntries
LDAPCacheTTL
+LDAPConnectionTimeout
LDAPOpCacheEntries
LDAPOpCacheTTL
LDAPSharedCacheFile
diff --git a/docs/manual/mod/mod_cache.html.en b/docs/manual/mod/mod_cache.html.en
index 9b27423c483..cb2d53c043b 100644
--- a/docs/manual/mod/mod_cache.html.en
+++ b/docs/manual/mod/mod_cache.html.en
@@ -63,6 +63,7 @@
CacheEnable
CacheForceCompletion
CacheIgnoreCacheControl
+
CacheIgnoreHeaders
CacheIgnoreNoLastMod
CacheLastModifiedFactor
CacheMaxExpire
@@ -240,6 +241,59 @@ cached.
CacheIgnoreCacheControl On
+
+
+
+
+
According to RFC 2616, hop-by-hop HTTP headers are not stored in
+ the cache. The following HTTP headers are hop-by-hop headers and thus
+ do not get stored in the cache in any case regardless of the
+ setting of CacheIgnoreHeaders
:
+
+
+ Connection
+ Keep-Alive
+ Proxy-Authenticate
+ Proxy-Authorization
+ TE
+ Trailers
+ Transfer-Encoding
+ Upgrade
+
+
+
CacheIgnoreHeaders
specifies additional HTTP
+ headers that should not to be stored in the cache. For example, it makes
+ sense in some cases to prevent cookies from being stored in the cache.
+
+
CacheIgnoreHeaders
takes a space separated list
+ of HTTP headers that should not be stored in the cache. If only hop-by-hop
+ headers not should be stored in the cache (the RFC 2616 compliant
+ behaviour), CacheIgnoreHeaders
can be set to
+ None
.
+
+
Example 1
+ CacheIgnoreHeaders Set-Cookie
+
+
+
Example 2
+ CacheIgnoreHeaders None
+
+
+
Warning:
+ If headers like Expires
which are needed for proper cache
+ management are not stored due to a
+ CacheIgnoreHeaders
setting, the behaviour of
+ mod_cache is undefined.
+
+

diff --git a/docs/manual/mod/mod_cache.html.ko.euc-kr b/docs/manual/mod/mod_cache.html.ko.euc-kr
index 52a1756edc6..0bfa72d647e 100644
--- a/docs/manual/mod/mod_cache.html.ko.euc-kr
+++ b/docs/manual/mod/mod_cache.html.ko.euc-kr
@@ -24,6 +24,8 @@
°¡´ÉÇÑ ¾ð¾î: en |
ko
+ÀÌ ¹®¼´Â ÃÖ½ÅÆÇ ¹ø¿ªÀÌ ¾Æ´Õ´Ï´Ù.
+ ÃÖ±Ù¿¡ º¯°æµÈ ³»¿ëÀº ¿µ¾î ¹®¼¸¦ Âü°íÇϼ¼¿ä.
¼³¸í: | Content cache keyed to URIs. |
»óÅÂ: | Experimental |
¸ðµâ¸í: | cache_module |
diff --git a/docs/manual/mod/mod_cache.xml.ko b/docs/manual/mod/mod_cache.xml.ko
index e5d38f9b44b..396a8c576c1 100644
--- a/docs/manual/mod/mod_cache.xml.ko
+++ b/docs/manual/mod/mod_cache.xml.ko
@@ -1,7 +1,7 @@
-
+