You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2022/03/07 15:50:26 UTC

svn commit: r1898706 [8/16] - in /httpd/httpd/tags/2.4.53-rc1-candidate: ./ docs/manual/ docs/manual/developer/ docs/manual/faq/ docs/manual/howto/ docs/manual/misc/ docs/manual/mod/ docs/manual/platform/ docs/manual/programs/ docs/manual/rewrite/ docs...

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_http2.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_http2.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_http2.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_http2.html.en Mon Mar  7 15:50:18 2022
@@ -311,7 +311,8 @@
             </p>
             <p>
                 When set to <code>on</code>, PUSH resources announced with
-                <code>H2PushResource</code> will trigger an interim 103 response
+                <code class="directive"><a href="#h2pushresource">H2PushResource</a></code> will
+                trigger an interim 103 response
                 before the final response. The 103 response will carry <code>Link</code>
                 headers that advise the <code>preload</code> of such resources. 
             </p>
@@ -440,7 +441,7 @@
 <div class="directive-section"><h2><a name="H2OutputBuffering" id="H2OutputBuffering">H2OutputBuffering</a> <a name="h2outputbuffering" id="h2outputbuffering">Directive</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Determine buffering behaviour of output</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>H2OutputBuffering on/off</code></td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>H2OutputBuffering on|off</code></td></tr>
 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>H2OutputBuffering on</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host</td></tr>
 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
@@ -448,7 +449,7 @@
 <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Available in version 2.4.48 and later.</td></tr>
 </table>
             <p>
-                The option 'H2OutputBuffering on/off' controls the buffering of stream output.
+                The directive <code class="directive">H2OutputBuffering</code> controls the buffering of stream output.
                 The default is on, which is the behaviour of previous versions. When off, all
                 bytes are made available immediately to the main connection for sending them
                 out to the client. This fixes interop issues with certain flavours of gRPC.
@@ -459,7 +460,7 @@
 <div class="directive-section"><h2><a name="H2Padding" id="H2Padding">H2Padding</a> <a name="h2padding" id="h2padding">Directive</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Determine the range of padding bytes added to payload frames</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>H2Padding numbits</code></td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>H2Padding <em>numbits</em></code></td></tr>
 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>H2Padding 0</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host</td></tr>
 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
@@ -523,7 +524,7 @@
             </p>
             <p> 
                 Link headers in responses are either set by the application or
-                can be configured via <code class="directive">H2PushResource</code> or
+                can be configured via <code class="directive"><a href="#h2pushresource">H2PushResource</a></code> or
                 using <code class="module"><a href="../mod/mod_headers.html">mod_headers</a></code> as:
             </p>
             <div class="example"><h3>mod_headers example</h3><pre class="prettyprint lang-config">&lt;Location /index.html&gt;
@@ -571,12 +572,10 @@
                 section to influence the number for all connections to that virtual host. 
             </p>
             <p>
-                The push diary records a digest (currently using a 64 bit number) of pushed
+                The push diary records a digest of pushed
                 resources (their URL) to avoid duplicate pushes on the same connection.
                 These value are not persisted, so clients opening a new connection
-                will experience known pushes again. There is ongoing work to enable
-                a client to disclose a digest of the resources it already has, so
-                the diary maybe initialized by the client on each connection setup.
+                will experience known pushes again.
             </p>
             <p>
                 If the maximum size is reached, newer entries replace the oldest
@@ -592,7 +591,7 @@
 <div class="directive-section"><h2><a name="H2PushPriority" id="H2PushPriority">H2PushPriority</a> <a name="h2pushpriority" id="h2pushpriority">Directive</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>H2 Server Push Priority</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>H2PushPriority <em>mime-type</em> [after|before|interleaved] [weight]</code></td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>H2PushPriority <em>mime-type</em> [after|before|interleaved] [<em>weight</em>]</code></td></tr>
 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>H2PushPriority * After 16</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host</td></tr>
 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
@@ -709,7 +708,7 @@ H2PushPriority text/css   interleaved
 <div class="directive-section"><h2><a name="H2PushResource" id="H2PushResource">H2PushResource</a> <a name="h2pushresource" id="h2pushresource">Directive</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Declares resources for early pushing to the client</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>H2PushResource [add] path [critical]</code></td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>H2PushResource [add] <em>path</em> [critical]</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_http2</td></tr>
@@ -962,7 +961,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_http2.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_http2.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_http2.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_http2.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -1092,7 +1092,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.en Mon Mar  7 15:50:18 2022
@@ -122,7 +122,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -131,7 +131,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.ja.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.ja.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -122,7 +122,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
 <p class="menu"><a href="../mod/">モジュール</a> | <a href="../mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">用語</a> | <a href="../sitemap.html">サイトマップ</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.ko.euc-kr?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ident.html.ko.euc-kr [euc-kr] Mon Mar  7 15:50:18 2022
@@ -119,7 +119,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">모듈</a> | <a href="../mod/directives.html">지시어들</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">용어</a> | <a href="../sitemap.html">사이트맵</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.en Mon Mar  7 15:50:18 2022
@@ -407,7 +407,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -431,7 +431,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.ko.euc-kr?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_imagemap.html.ko.euc-kr [euc-kr] Mon Mar  7 15:50:18 2022
@@ -384,7 +384,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">모듈</a> | <a href="../mod/directives.html">지시어들</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">용어</a> | <a href="../sitemap.html">사이트맵</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.en Mon Mar  7 15:50:18 2022
@@ -1141,7 +1141,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -1225,7 +1225,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.ja.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_include.html.ja.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -892,7 +892,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
 <p class="menu"><a href="../mod/">モジュール</a> | <a href="../mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">用語</a> | <a href="../sitemap.html">サイトマップ</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.en Mon Mar  7 15:50:18 2022
@@ -222,7 +222,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -231,7 +231,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.ja.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.ja.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -213,7 +213,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
 <p class="menu"><a href="../mod/">モジュール</a> | <a href="../mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">用語</a> | <a href="../sitemap.html">サイトマップ</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.ko.euc-kr?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_info.html.ko.euc-kr [euc-kr] Mon Mar  7 15:50:18 2022
@@ -190,7 +190,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">모듈</a> | <a href="../mod/directives.html">지시어들</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">용어</a> | <a href="../sitemap.html">사이트맵</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.en Mon Mar  7 15:50:18 2022
@@ -362,7 +362,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -384,7 +384,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.ko.euc-kr?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_isapi.html.ko.euc-kr [euc-kr] Mon Mar  7 15:50:18 2022
@@ -340,7 +340,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">모듈</a> | <a href="../mod/directives.html">지시어들</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">용어</a> | <a href="../sitemap.html">사이트맵</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bybusyness.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bybusyness.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bybusyness.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bybusyness.html.en Mon Mar  7 15:50:18 2022
@@ -94,7 +94,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bybusyness.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bybusyness.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bybusyness.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bybusyness.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -100,7 +100,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_byrequests.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_byrequests.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_byrequests.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_byrequests.html.en Mon Mar  7 15:50:18 2022
@@ -246,7 +246,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_byrequests.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_byrequests.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_byrequests.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_byrequests.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -255,7 +255,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bytraffic.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bytraffic.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bytraffic.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bytraffic.html.en Mon Mar  7 15:50:18 2022
@@ -110,7 +110,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bytraffic.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bytraffic.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bytraffic.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_bytraffic.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -116,7 +116,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_heartbeat.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_heartbeat.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_heartbeat.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_heartbeat.html.en Mon Mar  7 15:50:18 2022
@@ -93,7 +93,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_heartbeat.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_heartbeat.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_heartbeat.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lbmethod_heartbeat.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -100,7 +100,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ldap.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ldap.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ldap.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ldap.html.en Mon Mar  7 15:50:18 2022
@@ -869,7 +869,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ldap.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ldap.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ldap.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_ldap.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -949,7 +949,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.en Mon Mar  7 15:50:18 2022
@@ -598,7 +598,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -637,7 +637,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.ja.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.ja.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -501,7 +501,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
 <p class="menu"><a href="../mod/">モジュール</a> | <a href="../mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">用語</a> | <a href="../sitemap.html">サイトマップ</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.ko.euc-kr?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.ko.euc-kr [euc-kr] Mon Mar  7 15:50:18 2022
@@ -432,7 +432,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">모듈</a> | <a href="../mod/directives.html">지시어들</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">용어</a> | <a href="../sitemap.html">사이트맵</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.tr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_config.html.tr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -578,7 +578,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="../mod/">Modüller</a> | <a href="../mod/directives.html">Yönergeler</a> | <a href="http://wiki.apache.org/httpd/FAQ">SSS</a> | <a href="../glossary.html">Terimler</a> | <a href="../sitemap.html">Site Haritası</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_debug.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_debug.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_debug.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_debug.html.en Mon Mar  7 15:50:18 2022
@@ -163,7 +163,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_debug.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_debug.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_debug.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_debug.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -174,7 +174,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.en Mon Mar  7 15:50:18 2022
@@ -187,7 +187,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -209,7 +209,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.ja.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.ja.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -188,7 +188,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
 <p class="menu"><a href="../mod/">モジュール</a> | <a href="../mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">用語</a> | <a href="../sitemap.html">サイトマップ</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.tr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_log_forensic.html.tr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -186,7 +186,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="../mod/">Modüller</a> | <a href="../mod/directives.html">Yönergeler</a> | <a href="http://wiki.apache.org/httpd/FAQ">SSS</a> | <a href="../glossary.html">Terimler</a> | <a href="../sitemap.html">Site Haritası</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.en Mon Mar  7 15:50:18 2022
@@ -145,7 +145,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -157,7 +157,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.ja.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.ja.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -132,7 +132,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
 <p class="menu"><a href="../mod/">モジュール</a> | <a href="../mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">用語</a> | <a href="../sitemap.html">サイトマップ</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.ko.euc-kr?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.ko.euc-kr [euc-kr] Mon Mar  7 15:50:18 2022
@@ -131,7 +131,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">모듈</a> | <a href="../mod/directives.html">지시어들</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">용어</a> | <a href="../sitemap.html">사이트맵</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.tr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_logio.html.tr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -142,7 +142,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="../mod/">Modüller</a> | <a href="../mod/directives.html">Yönergeler</a> | <a href="http://wiki.apache.org/httpd/FAQ">SSS</a> | <a href="../glossary.html">Terimler</a> | <a href="../sitemap.html">Site Haritası</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lua.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lua.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lua.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lua.html.en Mon Mar  7 15:50:18 2022
@@ -1906,7 +1906,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lua.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lua.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lua.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_lua.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -2063,7 +2063,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_macro.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_macro.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_macro.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_macro.html.en Mon Mar  7 15:50:18 2022
@@ -294,7 +294,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_macro.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_macro.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_macro.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_macro.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -301,7 +301,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_md.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_md.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_md.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_md.html.en Mon Mar  7 15:50:18 2022
@@ -1349,7 +1349,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_md.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_md.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_md.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_md.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -1565,7 +1565,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.en Mon Mar  7 15:50:18 2022
@@ -1051,7 +1051,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -1120,7 +1120,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.ja.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime.html.ja.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -1002,7 +1002,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
 <p class="menu"><a href="../mod/">モジュール</a> | <a href="../mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">用語</a> | <a href="../sitemap.html">サイトマップ</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime_magic.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime_magic.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime_magic.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime_magic.html.en Mon Mar  7 15:50:18 2022
@@ -295,7 +295,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime_magic.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime_magic.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime_magic.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_mime_magic.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -303,7 +303,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.en?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.en (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.en Mon Mar  7 15:50:18 2022
@@ -363,7 +363,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.fr.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.fr.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -379,7 +379,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();

Modified: httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.ja.utf8?rev=1898706&r1=1898705&r2=1898706&view=diff
==============================================================================
--- httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/tags/2.4.53-rc1-candidate/docs/manual/mod/mod_negotiation.html.ja.utf8 [utf-8] Mon Mar  7 15:50:18 2022
@@ -323,7 +323,7 @@ var comments_identifier = 'http://httpd.
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2021 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
+<p class="apache">Copyright 2022 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
 <p class="menu"><a href="../mod/">モジュール</a> | <a href="../mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">用語</a> | <a href="../sitemap.html">サイトマップ</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();