diff options
author | Lucien Gentis <lgentis@apache.org> | 2015-05-01 18:44:05 +0200 |
---|---|---|
committer | Lucien Gentis <lgentis@apache.org> | 2015-05-01 18:44:05 +0200 |
commit | d69c37b60b07e69d295da3050bcf380564839b67 (patch) | |
tree | 1d82bc937ece67edef1a46dedbce88f07a7446ef /docs/manual/mod/mod_cache.xml.fr | |
parent | mod_ssl namespacing: SSL_X509_INFO_load_file -> modssl_X509_INFO_load_file (diff) | |
download | apache2-d69c37b60b07e69d295da3050bcf380564839b67.tar.xz apache2-d69c37b60b07e69d295da3050bcf380564839b67.zip |
XML updates.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1677177 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_cache.xml.fr')
-rw-r--r-- | docs/manual/mod/mod_cache.xml.fr | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/manual/mod/mod_cache.xml.fr b/docs/manual/mod/mod_cache.xml.fr index d75c10daf9..e318342a4d 100644 --- a/docs/manual/mod/mod_cache.xml.fr +++ b/docs/manual/mod/mod_cache.xml.fr @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?> -<!-- English Revision: 1590566:1674195 (outdated) --> +<!-- English Revision: 1674195 --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> @@ -371,10 +371,10 @@ AddOutputFilterByType INCLUDES;CACHE;DEFLATE text/html suivant :</p> <highlight language="config"> -CustomLog cached-requests.log common env=cache-hit -CustomLog uncached-requests.log common env=cache-miss -CustomLog revalidated-requests.log common env=cache-revalidate -CustomLog invalidated-requests.log common env=cache-invalidate +CustomLog "cached-requests.log" common env=cache-hit +CustomLog "uncached-requests.log" common env=cache-miss +CustomLog "revalidated-requests.log" common env=cache-revalidate +CustomLog "invalidated-requests.log" common env=cache-invalidate </highlight> <p>Pour les concepteurs de modules, une accroche (hook) nommée @@ -435,13 +435,13 @@ en mandat direct dans les versions 2.2 et antérieures.</compatibility> <highlight language="config"> # Mise en cache de contenu (gestionnaire normal seulement) CacheQuickHandler off -<Location /foo> +<Location "/foo"> CacheEnable disk </Location> # Mise en cache via une expression rationnelle (gestionnaire normal seulement) CacheQuickHandler off -<LocationMatch foo$> +<LocationMatch "foo$"> CacheEnable disk </LocationMatch> @@ -507,7 +507,7 @@ spécifiées</description> <example><title>Exemple</title> <highlight language="config"> -<Location /foo> +<Location "/foo"> CacheDisable on </Location> </highlight> |