]> granicus.if.org Git - apache/commitdiff
rebuild
authorRich Bowen <rbowen@apache.org>
Sat, 2 Dec 2017 22:28:40 +0000 (22:28 +0000)
committerRich Bowen <rbowen@apache.org>
Sat, 2 Dec 2017 22:28:40 +0000 (22:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1816996 13f79535-47bb-0310-9956-ffa450edef68

15 files changed:
docs/manual/mod/allmodules.xml
docs/manual/mod/allmodules.xml.de
docs/manual/mod/allmodules.xml.es
docs/manual/mod/allmodules.xml.fr
docs/manual/mod/allmodules.xml.ja
docs/manual/mod/allmodules.xml.ko
docs/manual/mod/allmodules.xml.tr
docs/manual/mod/allmodules.xml.zh-cn
docs/manual/mod/mod_brotli.html.en
docs/manual/mod/mod_deflate.html.fr
docs/manual/mod/mod_deflate.xml.fr
docs/manual/mod/mod_deflate.xml.ja
docs/manual/mod/mod_deflate.xml.ko
docs/manual/mod/mod_deflate.xml.meta
docs/manual/sitemap.html.fr

index 736d51b318e2f4d2257b44695814f70dd699a1a8..7d396c08ccd4ea3e220003f56036ccbc912ac2df 100644 (file)
   <modulefile>event.xml</modulefile>
   <modulefile>mpm_netware.xml</modulefile>
   <modulefile>mpmt_os2.xml</modulefile>
-  <modulefile>overrides.xml</modulefile>
   <modulefile>prefork.xml</modulefile>
   <modulefile>mpm_winnt.xml</modulefile>
   <modulefile>worker.xml</modulefile>
index 18ca8b76d8b69b316e059737fec35bdda2e27922..3ac2d30a47bfcd5ae9ab92f9734d074e1bebc159 100644 (file)
   <modulefile>event.xml</modulefile>
   <modulefile>mpm_netware.xml</modulefile>
   <modulefile>mpmt_os2.xml</modulefile>
-  <modulefile>overrides.xml</modulefile>
   <modulefile>prefork.xml.de</modulefile>
   <modulefile>mpm_winnt.xml.de</modulefile>
   <modulefile>worker.xml.de</modulefile>
index 04be8a39cfa247e0ce4fbc543eebdb55e6406b59..45cf4c21458831d3b826fb46fdf08266a26bebb5 100644 (file)
   <modulefile>event.xml.es</modulefile>
   <modulefile>mpm_netware.xml</modulefile>
   <modulefile>mpmt_os2.xml</modulefile>
-  <modulefile>overrides.xml</modulefile>
   <modulefile>prefork.xml</modulefile>
   <modulefile>mpm_winnt.xml</modulefile>
   <modulefile>worker.xml</modulefile>
index 1bad464b7476cd2bca29b7dc1d439bdcd00978c4..27bf3ae7cf2c1df69246f9beeec5de94de136b43 100644 (file)
   <modulefile>event.xml.fr</modulefile>
   <modulefile>mpm_netware.xml.fr</modulefile>
   <modulefile>mpmt_os2.xml.fr</modulefile>
-  <modulefile>overrides.xml</modulefile>
   <modulefile>prefork.xml.fr</modulefile>
   <modulefile>mpm_winnt.xml.fr</modulefile>
   <modulefile>worker.xml.fr</modulefile>
index 890778c233b68a1422231dad927a6df8bc25093c..d99cd4b6b4b410330a0877f68e4ba0000a15b8f2 100644 (file)
   <modulefile>event.xml</modulefile>
   <modulefile>mpm_netware.xml</modulefile>
   <modulefile>mpmt_os2.xml</modulefile>
-  <modulefile>overrides.xml</modulefile>
   <modulefile>prefork.xml.ja</modulefile>
   <modulefile>mpm_winnt.xml.ja</modulefile>
   <modulefile>worker.xml.ja</modulefile>
index 74f5bb9b0651b679e1834edc1c708d5c987093d4..535c94fcc12a9f13ef835e73bc09eb12f1f15ee6 100644 (file)
   <modulefile>event.xml</modulefile>
   <modulefile>mpm_netware.xml</modulefile>
   <modulefile>mpmt_os2.xml</modulefile>
-  <modulefile>overrides.xml</modulefile>
   <modulefile>prefork.xml</modulefile>
   <modulefile>mpm_winnt.xml</modulefile>
   <modulefile>worker.xml</modulefile>
index 8563d772166a9d0ca789371cef43bcf3b82ad60d..de10dc5f919359289a8e5c25cf58d523690343be 100644 (file)
   <modulefile>event.xml</modulefile>
   <modulefile>mpm_netware.xml</modulefile>
   <modulefile>mpmt_os2.xml</modulefile>
-  <modulefile>overrides.xml</modulefile>
   <modulefile>prefork.xml.tr</modulefile>
   <modulefile>mpm_winnt.xml</modulefile>
   <modulefile>worker.xml.tr</modulefile>
index 736d51b318e2f4d2257b44695814f70dd699a1a8..7d396c08ccd4ea3e220003f56036ccbc912ac2df 100644 (file)
   <modulefile>event.xml</modulefile>
   <modulefile>mpm_netware.xml</modulefile>
   <modulefile>mpmt_os2.xml</modulefile>
-  <modulefile>overrides.xml</modulefile>
   <modulefile>prefork.xml</modulefile>
   <modulefile>mpm_winnt.xml</modulefile>
   <modulefile>worker.xml</modulefile>
index 3c50a9eab152094f765d658c85b57268b3334925..85ee56f11af6b9340500a055f60def406e296574 100644 (file)
@@ -156,18 +156,11 @@ content</a></h2>
     configuration like the following:</p>
 
     <pre class="prettyprint lang-config">&lt;IfModule mod_headers.c&gt;
-    # Serve brotli compressed CSS files if they exist
+    # Serve brotli compressed CSS and JS files if they exist
     # and the client accepts brotli.
     RewriteCond "%{HTTP:Accept-encoding}" "br"
     RewriteCond "%{REQUEST_FILENAME}\.br" "-s"
-    RewriteRule "^(.*)\.css"              "$1\.css\.br" [QSA]
-
-    # Serve brotli compressed JS files if they exist
-    # and the client accepts brotli.
-    RewriteCond "%{HTTP:Accept-encoding}" "br"
-    RewriteCond "%{REQUEST_FILENAME}\.br" "-s"
-    RewriteRule "^(.*)\.js"               "$1\.js\.br" [QSA]
-
+    RewriteRule "^(.*)\.(js|css)"              "$1\.$2\.br" [QSA]
 
     # Serve correct content types, and prevent double compression.
     RewriteRule "\.css\.br$" "-" [T=text/css,E=no-brotli:1]
index 1b98c87be02ae36e4d103bea59864314d9a5c174..e1cdac4a4150284b071bb06084834b47f4d5b8d9 100644 (file)
@@ -31,6 +31,8 @@
 <a href="../ja/mod/mod_deflate.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_deflate.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Comprime le contenu avant de le servir au
 client</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
index 83117a3c05b769f6a66605ac47a46d89047b4713..197ceb76e5dd731f4e11442e0841f2fe132d54af 100644 (file)
@@ -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.fr.xsl"?>
-<!-- English Revision: 1793934 -->
+<!-- English Revision: 1793934:1816989 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 5d48bf272b5a81bfd7c144cccd191215de71f60c..c792d86236f5e007fc09062cb6f4e6e834a97bf4 100644 (file)
@@ -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: 420990:1793934 (outdated) -->
+<!-- English Revision: 420990:1816989 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 90e4d5741a65e0e4d29234a537241406658a0943..d700bb5e2809e834cff4e735a0856146c3bb533e 100644 (file)
@@ -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:1793934 (outdated) -->
+<!-- English Revision: 151408:1816989 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 1d5b04c7a1bdf75ddd720f001b35a46c6a623db5..3efa67dca31b1e05426f2e7c4cec1f2a06dbcc82 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
index cbc02be62654e8fb7605b8f82917a0b5ad1a6ac3..fe244f3a57f2e9db86ad7d86a34a3d15964abe8f 100644 (file)
@@ -282,6 +282,7 @@ pour d
 <li><a href="mod/mod_logio.html">Module Apache mod_logio</a></li>
 <li><a href="mod/mod_lua.html">Module Apache mod_lua</a></li>
 <li><a href="mod/mod_macro.html">Module Apache mod_macro</a></li>
+<li><a href="mod/mod_md.html">Module Apache mod_md</a></li>
 <li><a href="mod/mod_mime.html">Module Apache mod_mime</a></li>
 <li><a href="mod/mod_mime_magic.html">Module Apache mod_mime_magic</a></li>
 <li><a href="mod/mod_negotiation.html">Module Apache mod_negotiation</a></li>