summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucien Gentis <lgentis@apache.org>2018-07-31 16:12:49 +0000
committerLucien Gentis <lgentis@apache.org>2018-07-31 16:12:49 +0000
commit6136c2f3101a6e4ec9ed5f2d53181a08741e1eda (patch)
tree53702194c58473b0f7059897f7afda003efb04b7
parent38993359bad02696425e3e0ef55f2bd1b8a488b8 (diff)
downloadhttpd-6136c2f3101a6e4ec9ed5f2d53181a08741e1eda.tar.gz
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1837165 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/caching.html.fr5
-rw-r--r--docs/manual/caching.xml.meta2
-rw-r--r--docs/manual/caching.xml.tr2
-rw-r--r--docs/manual/expr.html.fr6
4 files changed, 10 insertions, 5 deletions
diff --git a/docs/manual/caching.html.fr b/docs/manual/caching.html.fr
index a824d2f7ab..ef28764b48 100644
--- a/docs/manual/caching.html.fr
+++ b/docs/manual/caching.html.fr
@@ -354,8 +354,9 @@
<li>La mise en cache doit &#234;tre activ&#233;e pour cette URL. Voir les
directives <code class="directive"><a href="./mod/mod_cache.html#cacheenable">CacheEnable</a></code> et <code class="directive"><a href="./mod/mod_cache.html#cachedisable">CacheDisable</a></code>.</li>
- <li>La reponse doit avoir un code de statut HTTP de 200, 203, 300, 301
- ou 410.</li>
+ <li>Si la reponse poss&#232;de un code de statut HTTP autre que 200, 203, 300, 301
+ ou 410, elle doit aussi comporter un en-t&#234;te "Expires" ou
+ "Cache-Control".</li>
<li>La requ&#234;te doit &#234;tre de type HTTP GET.</li>
diff --git a/docs/manual/caching.xml.meta b/docs/manual/caching.xml.meta
index c6ba0165a9..22406e7caf 100644
--- a/docs/manual/caching.xml.meta
+++ b/docs/manual/caching.xml.meta
@@ -9,6 +9,6 @@
<variants>
<variant>en</variant>
<variant>fr</variant>
- <variant>tr</variant>
+ <variant outdated="yes">tr</variant>
</variants>
</metafile>
diff --git a/docs/manual/caching.xml.tr b/docs/manual/caching.xml.tr
index a3b3871c3d..958da38959 100644
--- a/docs/manual/caching.xml.tr
+++ b/docs/manual/caching.xml.tr
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE manualpage SYSTEM "style/manualpage.dtd">
<?xml-stylesheet type="text/xsl" href="style/manual.tr.xsl"?>
-<!-- English Revision: 1766106 -->
+<!-- English Revision: 1766106:1836061 (outdated) -->
<!-- =====================================================
Translated by: Nilgün Belma Bugüner <nilgun belgeler.gen.tr>
Reviewed by: Orhan Berent <berent belgeler.gen.tr>
diff --git a/docs/manual/expr.html.fr b/docs/manual/expr.html.fr
index cd644e9af9..b0b8ea2a08 100644
--- a/docs/manual/expr.html.fr
+++ b/docs/manual/expr.html.fr
@@ -608,7 +608,11 @@ Header set foo-checksum "expr=%{md5:foo}"
# L'exemple suivant retarde l'&#233;valuation de la clause de condition par rapport &#224;
# &lt;If&gt;
-Header always set CustomHeader my-value "expr=%{REQUEST_URI} =~ m#^/special_path\.php$#"</pre>
+Header always set CustomHeader my-value "expr=%{REQUEST_URI} =~ m#^/special_path\.php$#"
+
+# Journalisation conditionnelle
+CustomLog logs/access-errors.log common "expr=%{REQUEST_STATUS} &gt;= 400"
+CustomLog logs/access-errors-specific.log common "expr=%{REQUEST_STATUS} -in {'405','410'}"</pre>
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
<div class="section">