summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_cache.xml.fr
diff options
context:
space:
mode:
authorLucien Gentis <lgentis@apache.org>2015-05-01 18:44:05 +0200
committerLucien Gentis <lgentis@apache.org>2015-05-01 18:44:05 +0200
commitd69c37b60b07e69d295da3050bcf380564839b67 (patch)
tree1d82bc937ece67edef1a46dedbce88f07a7446ef /docs/manual/mod/mod_cache.xml.fr
parentmod_ssl namespacing: SSL_X509_INFO_load_file -> modssl_X509_INFO_load_file (diff)
downloadapache2-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.fr16
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&eacute;e
@@ -435,13 +435,13 @@ en mandat direct dans les versions 2.2 et ant&eacute;rieures.</compatibility>
<highlight language="config">
# Mise en cache de contenu (gestionnaire normal seulement)
CacheQuickHandler off
-&lt;Location /foo&gt;
+&lt;Location "/foo"&gt;
CacheEnable disk
&lt;/Location&gt;
# Mise en cache via une expression rationnelle (gestionnaire normal seulement)
CacheQuickHandler off
-&lt;LocationMatch foo$&gt;
+&lt;LocationMatch "foo$"&gt;
CacheEnable disk
&lt;/LocationMatch&gt;
@@ -507,7 +507,7 @@ sp&eacute;cifi&eacute;es</description>
<example><title>Exemple</title>
<highlight language="config">
-&lt;Location /foo&gt;
+&lt;Location "/foo"&gt;
CacheDisable on
&lt;/Location&gt;
</highlight>