Skip to content

Commit 7de11e5

Browse files
committed
rebuild html and meta files
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1932388 13f79535-47bb-0310-9956-ffa450edef68
1 parent e3f33e8 commit 7de11e5

17 files changed

Lines changed: 84 additions & 19 deletions

docs/manual/env.html.en.utf8

Lines changed: 59 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
This file is generated from xml source: DO NOT EDIT
88
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
99
-->
10-
<title>Environment Variables in Apache - Apache HTTP Server Version 2.5</title>
10+
<title>Environment Variables in Apache httpd - Apache HTTP Server Version 2.5</title>
1111
<link href="./style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
1212
<link href="./style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
1313
<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 @@
2121
<img alt="" src="./images/feather.png" /></div>
2222
<div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="./images/left.gif" /></a></div>
2323
<div id="path">
24-
<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>
24+
<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>
2525
<div class="toplang">
2626
<p><span>Available Languages: </span><a href="./en/env.html" title="English">&nbsp;en&nbsp;</a> |
2727
<a href="./fr/env.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a> |
@@ -51,7 +51,7 @@
5151
variables</em>, they are not the same as the environment
5252
variables controlled by the underlying operating system.
5353
Instead, these variables are stored and manipulated in an
54-
internal Apache structure. They only become actual operating
54+
internal httpd structure. They only become actual operating
5555
system environment variables when they are provided to CGI
5656
scripts and Server Side Include scripts. If you wish to
5757
manipulate the operating system environment under which the
@@ -61,6 +61,7 @@
6161
</div>
6262
<div id="quickview"><ul id="toc"><li><img alt="" src="./images/down.gif" /> <a href="#setting">Setting Environment Variables</a></li>
6363
<li><img alt="" src="./images/down.gif" /> <a href="#using">Using Environment Variables</a></li>
64+
<li><img alt="" src="./images/down.gif" /> <a href="#cgi">CGI environment variables</a></li>
6465
<li><img alt="" src="./images/down.gif" /> <a href="#special">Special Purpose Environment Variables</a></li>
6566
<li><img alt="" src="./images/down.gif" /> <a href="#examples">Examples</a></li>
6667
</ul><h3>See also</h3><ul class="seealso"><li><a href="#comments_section">Comments</a></li></ul></div>
@@ -251,6 +252,61 @@
251252

252253
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
253254
<div class="section">
255+
<h2><a name="cgi" id="cgi">CGI environment variables</a> <a title="Permanent link" href="#cgi" class="permalink">&para;</a></h2>
256+
257+
258+
<p>The <a href="https://datatracker.ietf.org/doc/html/rfc3875#section-4.1">CGI specification</a> defines a number of environment
259+
variables that expand on those defined by the HTTP spec.
260+
These have been adopted more broadly, and are a standard
261+
part of passing information between the browser and the
262+
server, and between processes on the server side. Here we
263+
discuss a few of these. Refer to the CGI spec for further
264+
details.</p>
265+
266+
<h3><a name="query-string" id="query-string">QUERY_STRING</a></h3>
267+
268+
<p>The <code>QUERY_STRING</code> variable is set to
269+
anything that appears after a question mark (?) at the
270+
end of a requested URL. This is used to pass
271+
information to the server, and may be divided into
272+
key/value pairs. The string should be
273+
URL-encoded.</p>
274+
275+
<div class="example"><p><code>
276+
https://example.com/path/resource.php?key1=value1&amp;key2=another%20value
277+
</code></p></div>
278+
279+
<p>In the example here, the variable
280+
<code>QUERY_STRING</code> is set to everything
281+
following the ?, and the receiving application (e.g.
282+
CGI or a PHP script, perhaps) is responsible for
283+
parsing the key/value pairs.</p>
284+
285+
286+
287+
288+
<h3><a name="path-info" id="path-info">PATH_INFO</a></h3>
289+
290+
291+
<p>The variable <code>PATH_INFO</code> is set to
292+
the any value that appears after a matches resource
293+
at the end of the URL, not including any
294+
<code>QUERY_STRING</code>. This is best shown by
295+
an example:</p>
296+
297+
<div class="example"><p><code>
298+
https://example.com/resource.php/additional/data?key1=value1
299+
</code></p></div>
300+
301+
<p>In the example shown,
302+
<code>PATH_INFO</code> will be set to
303+
<code>/additional/data</code> and
304+
<code>QUERY_STRING</code> will be set to
305+
<code>key1=value1</code>.</p>
306+
307+
308+
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
309+
<div class="section">
254310
<h2><a name="special" id="special">Special Purpose Environment Variables</a> <a title="Permanent link" href="#special" class="permalink">&para;</a></h2>
255311

256312

docs/manual/env.html.fr.utf8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
<a href="./ko/env.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
3030
<a href="./tr/env.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
3131
</div>
32+
<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
33+
anglaise pour les changements récents.</div>
3234

3335
<p>Deux types de variables d'environnement affectent le serveur
3436
HTTP Apache.</p>

docs/manual/env.xml.fr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
33
<?xml-stylesheet type="text/xsl" href="./style/manual.fr.xsl"?>
4-
<!-- English Revision: 1931360 -->
4+
<!-- English Revision: 1931360:1932384 (outdated) -->
55
<!-- French translation : Lucien GENTIS -->
66
<!-- Reviewed by : Vincent Deffontaines -->
77

docs/manual/env.xml.ja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
33
<?xml-stylesheet type="text/xsl" href="./style/manual.ja.xsl"?>
4-
<!-- English Revision: 659902:1931360 (outdated) -->
4+
<!-- English Revision: 659902:1932384 (outdated) -->
55

66
<!--
77
Licensed to the Apache Software Foundation (ASF) under one or more

docs/manual/env.xml.ko

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="EUC-KR" ?>
22
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
33
<?xml-stylesheet type="text/xsl" href="./style/manual.ko.xsl"?>
4-
<!-- English Revision: 105989:1931360 (outdated) -->
4+
<!-- English Revision: 105989:1932384 (outdated) -->
55

66
<!--
77
Licensed to the Apache Software Foundation (ASF) under one or more

docs/manual/env.xml.meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<variants>
1010
<variant>en</variant>
11-
<variant>fr</variant>
11+
<variant outdated="yes">fr</variant>
1212
<variant outdated="yes">ja</variant>
1313
<variant outdated="yes">ko</variant>
1414
<variant outdated="yes">tr</variant>

docs/manual/env.xml.tr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
33
<?xml-stylesheet type="text/xsl" href="./style/manual.tr.xsl"?>
4-
<!-- English Revision: 1300910:1931360 (outdated) -->
4+
<!-- English Revision: 1300910:1932384 (outdated) -->
55
<!-- =====================================================
66
Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
77
Reviewed by: Orhan Berent <berent belgeler.org>

docs/manual/mod/mod_dav.html.en.utf8

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,16 @@
8484
requests.</p>
8585

8686
<div class="example"><h3>Full Example</h3><pre class="prettyprint lang-config">&lt;Directory "/usr/local/apache2/htdocs/foo"&gt;
87-
Require all granted
8887
Dav On
8988

9089
AuthType Basic
9190
AuthName "DAV"
9291
AuthUserFile "user.passwd"
9392

94-
&lt;LimitExcept GET POST OPTIONS&gt;
93+
&lt;RequireAny&gt;
94+
Require method GET POST OPTIONS
9595
Require user admin
96-
&lt;/LimitExcept&gt;
96+
&lt;/RequireAny&gt;
9797
&lt;/Directory&gt;</pre>
9898
</div>
9999

docs/manual/mod/mod_dav.html.fr.utf8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
<a href="../ja/mod/mod_dav.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
3232
<a href="../ko/mod/mod_dav.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
3333
</div>
34+
<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
35+
anglaise pour les changements récents.</div>
3436
<table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Fonctionnalité de création et gestion de versions de
3537
documents via le web (<a href="http://www.webdav.org/">WebDAV</a>)</td></tr>
3638
<tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>

docs/manual/mod/mod_dav.xml.fr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
33
<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
4-
<!-- English Revision: 1915685 -->
4+
<!-- English Revision: 1915685:1932374 (outdated) -->
55
<!-- French translation : Lucien GENTIS -->
66
<!-- Reviewed by : Vincent Deffontaines -->
77

0 commit comments

Comments
 (0)