You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by lg...@apache.org on 2016/11/19 16:24:36 UTC

svn commit: r1770504 [1/2] - in /httpd/httpd/branches/2.4.x/docs/manual/mod: directives.html.fr mod_headers.html.fr mod_headers.xml.ja mod_headers.xml.ko mod_proxy.html.fr mod_proxy.xml.meta quickreference.html.fr

Author: lgentis
Date: Sat Nov 19 16:24:35 2016
New Revision: 1770504

URL: http://svn.apache.org/viewvc?rev=1770504&view=rev
Log:
Rebuild.

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.fr
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.html.fr
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ja
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ko
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.html.fr
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.xml.meta
    httpd/httpd/branches/2.4.x/docs/manual/mod/quickreference.html.fr

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.fr?rev=1770504&r1=1770503&r2=1770504&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.fr (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.fr Sat Nov 19 16:24:35 2016
@@ -295,6 +295,7 @@
 <li><a href="mod_http2.html#h2push">H2Push</a></li>
 <li><a href="mod_http2.html#h2pushdiarysize">H2PushDiarySize</a></li>
 <li><a href="mod_http2.html#h2pushpriority">H2PushPriority</a></li>
+<li><a href="mod_http2.html#h2pushresource">H2PushResource</a></li>
 <li><a href="mod_http2.html#h2serializeheaders">H2SerializeHeaders</a></li>
 <li><a href="mod_http2.html#h2sessionextrafiles">H2SessionExtraFiles</a></li>
 <li><a href="mod_http2.html#h2streammaxmemsize">H2StreamMaxMemSize</a></li>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.html.fr?rev=1770504&r1=1770503&r2=1770504&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.html.fr (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.html.fr Sat Nov 19 16:24:35 2016
@@ -345,8 +345,15 @@ version 2.4.10</td></tr>
 
     <dt><code>setifempty</code></dt>
     <dd>L'en-t�te est d�fini, mais seulement s'il n'existe
-    aucun en-t�te avec le m�me nom.<br />
-    Disponible depuis la version 2.4.7 du serveur HTTP Apache.</dd>
+    aucun en-t�te avec le m�me nom.
+    <div class="note">
+    L'en-t�te Content-Type est un cas particulier car il est possible que sa
+    valeur ait �t� d�termin�e mais que l'en-t�te ne soit pas pr�sent dans la
+    r�ponse lorsque <code>setifempty</code> est �valu�. Dans ce cas, il est
+    pr�f�rable d'utiliser <code>set</code> comme dans l'exemple suivant :
+    <pre class="prettyprint lang-config">Header set Content-Type "text/plain" "expr=-z %{CONTENT_TYPE}"</pre>
+
+    </div></dd>
 
     <dt><code>unset</code></dt>
     <dd>L'en-t�te est supprim� s'il existe. Si plusieurs en-t�tes

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ja
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ja?rev=1770504&r1=1770503&r2=1770504&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ja [utf-8] (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ja [utf-8] Sat Nov 19 16:24:35 2016
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 151408:1736594 (outdated) -->
+<!-- English Revision: 151408:1770153 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ko
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ko?rev=1770504&r1=1770503&r2=1770504&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ko [euc-kr] (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_headers.xml.ko [euc-kr] Sat Nov 19 16:24:35 2016
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:1736594 (outdated) -->
+<!-- English Revision: 151408:1770153 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.html.fr?rev=1770504&r1=1770503&r2=1770504&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.html.fr (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.html.fr Sat Nov 19 16:24:35 2016
@@ -1107,8 +1107,9 @@ sont support�s � partir de la version
     chemin virtuel local ; <var>url</var> est une URL partielle pour le
     serveur distant et ne doit pas contenir de cha�ne d'arguments.</p>
 
-    <div class="note"><strong>Note : </strong>Cette directive ne peut pas �tre
-    utilis�e dans un contexte de niveau r�pertoire.</div>
+    <div class="note"><strong>Note : </strong>Cette directive n'est pas support�e au sein
+    des sections <code class="directive"><a href="../mod/core.html#directory">&lt;Directory&gt;</a></code>
+    et <code class="directive"><a href="../mod/core.html#files">&lt;Files&gt;</a></code>.</div>
 
     <div class="warning">En g�n�ral, la directive <code class="directive"><a href="#proxyrequests">ProxyRequests</a></code> doit �tre d�finie �
     <strong>off</strong> lorsqu'on utilise la directive
@@ -1146,10 +1147,6 @@ sont support�s � partir de la version
     <code>http://example.com/miroir/foo/bar</code> en une requ�te
     mandat�e pour <code>http://backend.example.com/bar</code>.</p>
 
-    <p>La directive ProxyPass ne peut pas �tre plac�e dans une section
-    <code class="directive"><a href="../mod/core.html#directory">&lt;Directory&gt;</a></code> ou
-    <code class="directive"><a href="../mod/core.html#files">&lt;Files&gt;</a></code>.</p>
-
     <p>Si vous avez besoin d'un configuration de mandataire inverse plus
     souple, reportez-vous � la documentaion de la directive <code class="directive"><a href="../mod/mod_rewrite.html#rewriterule">RewriteRule</a></code> et son drapeau
     <code>[P]</code>.</p>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.xml.meta?rev=1770504&r1=1770503&r2=1770504&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.xml.meta (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy.xml.meta Sat Nov 19 16:24:35 2016
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant outdated="yes">fr</variant>
+    <variant>fr</variant>
     <variant outdated="yes">ja</variant>
   </variants>
 </metafile>