]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
rebuild html and meta files
authorRich Bowen <rbowen@apache.org>
Thu, 19 Mar 2026 10:11:03 +0000 (10:11 +0000)
committerRich Bowen <rbowen@apache.org>
Thu, 19 Mar 2026 10:11:03 +0000 (10:11 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1932388 13f79535-47bb-0310-9956-ffa450edef68

17 files changed:
docs/manual/env.html.en.utf8
docs/manual/env.html.fr.utf8
docs/manual/env.xml.fr
docs/manual/env.xml.ja
docs/manual/env.xml.ko
docs/manual/env.xml.meta
docs/manual/env.xml.tr
docs/manual/mod/mod_dav.html.en.utf8
docs/manual/mod/mod_dav.html.fr.utf8
docs/manual/mod/mod_dav.xml.fr
docs/manual/mod/mod_dav.xml.ja
docs/manual/mod/mod_dav.xml.ko
docs/manual/mod/mod_dav.xml.meta
docs/manual/mod/mod_rewrite.html.en.utf8
docs/manual/mod/mod_rewrite.html.fr.utf8
docs/manual/mod/mod_rewrite.xml.fr
docs/manual/mod/mod_rewrite.xml.meta

index ecd73d48862a9d13b9e85bcbdb76bf0d4696fa82..da8e00cdde28f14883e9786cd3cdefe53d2cc4d5 100644 (file)
@@ -7,7 +7,7 @@
               This file is generated from xml source: DO NOT EDIT
         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
       -->
-<title>Environment Variables in Apache - Apache HTTP Server Version 2.5</title>
+<title>Environment Variables in Apache httpd - Apache HTTP Server Version 2.5</title>
 <link href="./style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
 <link href="./style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
 <link href="./style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="./style/css/prettify.css" />
@@ -21,7 +21,7 @@
 <img alt="" src="./images/feather.png" /></div>
 <div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="./images/left.gif" /></a></div>
 <div id="path">
-<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="./">Version 2.5</a></div><div id="page-content"><div id="preamble"><h1>Environment Variables in Apache</h1>
+<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="./">Version 2.5</a></div><div id="page-content"><div id="preamble"><h1>Environment Variables in Apache httpd</h1>
 <div class="toplang">
 <p><span>Available Languages: </span><a href="./en/env.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="./fr/env.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a> |
@@ -51,7 +51,7 @@
     variables</em>, they are not the same as the environment
     variables controlled by the underlying operating system.
     Instead, these variables are stored and manipulated in an
-    internal Apache structure. They only become actual operating
+    internal httpd structure. They only become actual operating
     system environment variables when they are provided to CGI
     scripts and Server Side Include scripts. If you wish to
     manipulate the operating system environment under which the
@@ -61,6 +61,7 @@
   </div>
 <div id="quickview"><ul id="toc"><li><img alt="" src="./images/down.gif" /> <a href="#setting">Setting Environment Variables</a></li>
 <li><img alt="" src="./images/down.gif" /> <a href="#using">Using Environment Variables</a></li>
+<li><img alt="" src="./images/down.gif" /> <a href="#cgi">CGI environment variables</a></li>
 <li><img alt="" src="./images/down.gif" /> <a href="#special">Special Purpose Environment Variables</a></li>
 <li><img alt="" src="./images/down.gif" /> <a href="#examples">Examples</a></li>
 </ul><h3>See also</h3><ul class="seealso"><li><a href="#comments_section">Comments</a></li></ul></div>
     
   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
 <div class="section">
+<h2><a name="cgi" id="cgi">CGI environment variables</a> <a title="Permanent link" href="#cgi" class="permalink">&para;</a></h2>
+    
+
+    <p>The <a href="https://datatracker.ietf.org/doc/html/rfc3875#section-4.1">CGI specification</a> defines a number of environment
+    variables that expand on those defined by the HTTP spec.
+    These have been adopted more broadly, and are a standard
+    part of passing information between the browser and the
+    server, and between processes on the server side. Here we
+    discuss a few of these. Refer to the CGI spec for further
+    details.</p>
+
+    <h3><a name="query-string" id="query-string">QUERY_STRING</a></h3>
+        
+        <p>The <code>QUERY_STRING</code> variable is set to
+        anything that appears after a question mark (?) at the
+        end of a requested URL. This is used to pass
+        information to the server, and may be divided into
+        key/value pairs. The string should be
+        URL-encoded.</p>
+
+        <div class="example"><p><code>
+        https://example.com/path/resource.php?key1=value1&amp;key2=another%20value
+        </code></p></div>
+
+        <p>In the example here, the variable
+        <code>QUERY_STRING</code> is set to everything
+        following the ?, and the receiving application (e.g.
+        CGI or a PHP script, perhaps) is responsible for
+        parsing the key/value pairs.</p>
+
+        
+    
+
+    <h3><a name="path-info" id="path-info">PATH_INFO</a></h3>
+        
+
+        <p>The variable <code>PATH_INFO</code> is set to
+        the any value that appears after a matches resource
+        at the end of the URL, not including any
+        <code>QUERY_STRING</code>. This is best shown by
+        an example:</p>
+
+        <div class="example"><p><code>
+        https://example.com/resource.php/additional/data?key1=value1
+        </code></p></div>
+
+        <p>In the example shown,
+        <code>PATH_INFO</code> will be set to
+        <code>/additional/data</code> and
+        <code>QUERY_STRING</code> will be set to
+        <code>key1=value1</code>.</p>
+    
+
+  </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
+<div class="section">
 <h2><a name="special" id="special">Special Purpose Environment Variables</a> <a title="Permanent link" href="#special" class="permalink">&para;</a></h2>
     
 
index 4a07abdd1cf464564cfd6a156da2430510a5c3a4..9718e55f09e4691e1ddc6224531b04fc1bf0ced9 100644 (file)
@@ -29,6 +29,8 @@
 <a href="./ko/env.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="./tr/env.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&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>
 
      <p>Deux types de variables d'environnement affectent le serveur
      HTTP Apache.</p>
index 815a5c73903f7d59cbd43a51f6f75d0d5f368e98..322ebf1224be7d71afd4edd34be1e690d8af1a50 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.fr.xsl"?>
-<!-- English Revision: 1931360 -->
+<!-- English Revision: 1931360:1932384 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index a43b0012129e3bf61c1b857150ec5a56f4fa41b5..1440458b2989496fc9909d47684766846734921b 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.ja.xsl"?>
-<!-- English Revision: 659902:1931360 (outdated) -->
+<!-- English Revision: 659902:1932384 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 56a8f462f4d7a60bea173f006c114edbccab7df7..8f63db1a94ca8ebebfc2ae7e7e159365753c5c3c 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1931360 (outdated) -->
+<!-- English Revision: 105989:1932384 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index e9ca77529f100fd64439a2ddb8b83ce2c0aac24d..67070dc314267d0ab61a8077abcc5175686b0fc1 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>
     <variant outdated="yes">tr</variant>
index 7e495ba667a65be8ad56a9dd4438a69bf4bdd77a..037d22404e3a569b5c977cd6b4e0a7960c941478 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.tr.xsl"?>
-<!-- English Revision: 1300910:1931360 (outdated) -->
+<!-- English Revision: 1300910:1932384 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index 6a41585455517ed17f52410c2ea6a0eb3f111b51..949bf65004115835cf0562426748b2f8c72c4f25 100644 (file)
     requests.</p>
 
     <div class="example"><h3>Full Example</h3><pre class="prettyprint lang-config">&lt;Directory "/usr/local/apache2/htdocs/foo"&gt;
-    Require all granted
     Dav On
 
     AuthType Basic
     AuthName "DAV"
     AuthUserFile "user.passwd"
 
-    &lt;LimitExcept GET POST OPTIONS&gt;
+    &lt;RequireAny&gt;
+        Require method GET POST OPTIONS
         Require user admin
-    &lt;/LimitExcept&gt;
+    &lt;/RequireAny&gt;
 &lt;/Directory&gt;</pre>
 </div>
 
index 5ce8d9a8546e1d62a865aec5770818d40a18fe01..933f059add27a22143c7ba5b4df4baaac9d0d3bc 100644 (file)
@@ -31,6 +31,8 @@
 <a href="../ja/mod/mod_dav.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_dav.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>Fonctionnalité de création et gestion de versions de
 documents via le web (<a href="http://www.webdav.org/">WebDAV</a>)</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
index fd796df0d8e20ca6d711db2efa158f647c2e1786..d8cac8c30e5c272ce9268e1f149a2290e9e2eb07 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1915685 -->
+<!-- English Revision: 1915685:1932374 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 76e8fc17ad8452d1d8a4572eb452eff9930b9351..435573e99970435790e850d108ea51f0ceaa98fa 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: 1628084:1915685 (outdated) -->
+<!-- English Revision: 1628084:1932374 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 87ed627d133ca57eab408437ac32d29f60ec942e..6f665d3421c6408c6caeea6fcb39dbb03b0c32d3 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:1915685 (outdated) -->
+<!-- English Revision: 151408:1932374 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 2d094cad4d96fe60e8f1f535186f122831e35072..61fcd96a32973b0fe8d709f22da988afa2036aff 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 3527cffef444a1bff17dba2f86010eee7bf84313..7a75274e9c069a650f799cbe81beb8e260e37736 100644 (file)
@@ -297,8 +297,11 @@ AliasMatch "^/myapp" "/opt/myapp-1.2.3"
                 correspond to the similarly named HTTP
                 MIME-headers, C variables of the Apache HTTP Server or
                 <code>struct tm</code> fields of the Unix system.
-                Most are documented <a href="../expr.html#vars">here</a>
-                or elsewhere in the Manual or in the CGI specification.</p>
+                Most are documented in the 
+                <a href="../expr.html#vars">Expressions doc</a>, in the
+                <a href="../env.html">Environment Variables doc</a>,
+                or the <a href="http://www.ietf.org/rfc/rfc3875">CGI
+                specification</a>.</p>
 
                 <p>SERVER_NAME and SERVER_PORT depend on the values of
                 <code class="directive"><a href="../mod/core.html#usecanonicalname">UseCanonicalName</a></code> and
index 780091fbfd862e087d90092e3977817072848f1e..d37ab1ed42edf3863800cbd245e7a7efa85ecc43 100644 (file)
@@ -29,6 +29,8 @@
 <p><span>Langues Disponibles: </span><a href="../en/mod/mod_rewrite.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/mod/mod_rewrite.html" title="Français">&nbsp;fr&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>Ce module fournit un moteur de réécriture à base de
 règles permettant de réécrire les URLs des requêtes
 à la volée</td></tr>
index d08449524b85ddacd55902d0d6af50e43869ef20..4e088ae47352744598729388aa64d8505fc6ed84 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: 1919564 -->
+<!-- English Revision: 1919564:1932387 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index decc0a7b1e85192770cea6f795335aaa7841b0f0..0be21e86f4d3e241aa6b35fcdd36de7efe6541b7 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>