You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2008/04/07 18:31:24 UTC

svn commit: r645594 [20/28] - in /httpd/sandbox/amsterdam/d: ./ build/ docs/conf/ docs/conf/extra/ docs/man/ docs/manual/ docs/manual/developer/ docs/manual/faq/ docs/manual/howto/ docs/manual/misc/ docs/manual/mod/ docs/manual/platform/ docs/manual/pr...

Modified: httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_faq.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_faq.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_faq.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_faq.xml Mon Apr  7 09:28:58 2008
@@ -107,7 +107,7 @@
 <li><a href="#mutex">Why do I get permission errors related to 
 SSLMutex when I start Apache?</a></li>
 <li><a href="#entropy">Why does mod_ssl stop with the error "Failed to 
-generate temporary 512 bit RSA private key", when I start Apache?</a></li>
+generate temporary 512 bit RSA private key" when I start Apache?</a></li>
 </ul>
 
 <section id="mutex"><title>Why do I get permission errors related to 
@@ -123,7 +123,7 @@
 </section>
 
 <section id="entropy"><title>Why does mod_ssl stop with the error
-	"Failed to generate temporary 512 bit RSA private key", when I start 
+	"Failed to generate temporary 512 bit RSA private key" when I start 
 	Apache?</title>
     <p>Cryptographic software needs a source of unpredictable data
     to work correctly. Many open source operating systems provide
@@ -137,7 +137,7 @@
     <p>To prevent this error, <module>mod_ssl</module> has to provide 
     enough entropy to the PRNG to allow it to work correctly. This can 
     be done via the <directive module="mod_ssl">SSLRandomSeed</directive> 
-    directives.</p>
+    directive.</p>
 </section>
 </section>
 <!-- /installation -->
@@ -150,7 +150,7 @@
 <li><a href="#httpstest">How do I speak HTTPS manually for testing 
 purposes?</a></li>
 <li><a href="#hang">Why does the connection hang when I connect to my 
-SSL-aware Apache server</a></li>
+SSL-aware Apache server?</a></li>
 <li><a href="#refused">Why do I get ``Connection Refused'' errors, when 
 trying to access my newly installed Apache+mod_ssl server via HTTPS?</a></li>
 <li><a href="#envvars">Why are the <code>SSL_XXX</code> variables not
@@ -165,16 +165,17 @@
     port 80, HTTPS to port 443), so there is no direct conflict between 
     them. You can either run two separate server instances bound to 
     these ports, or use Apache's elegant virtual hosting facility to 
-    create two virtual servers over one instance of Apache - one 
-    responding to requests on port 80 and speaking HTTP and the other 
-    responding to requests on port 443 speaking HTTPS.</p>
+    create two virtual servers, both served by the same instance of Apache 
+    - one responding over HTTP to requests on port 80, and the other 
+    responding over HTTPS to requests on port 443.</p>
 </section>
 
 <section id="ports"><title>Which port does HTTPS use?</title>
 <p>You can run HTTPS on any port, but the standards specify port 443, which
     is where any HTTPS compliant browser will look by default. You can force
-    your browser to look on a different port by specifying it in the URL like
-    this (for port 666): <code>https://secure.server.dom:666/</code></p>
+    your browser to look on a different port by specifying it in the URL. For
+    example, if your server is set up to serve pages over HTTPS on port 8080,
+    you can access them at <code>https://example.com:8080/</code></p>
 </section>
 
 <section id="httpstest"><title>How do I speak HTTPS manually for testing purposes?</title>
@@ -186,41 +187,39 @@
     <p>for simple testing of Apache via HTTP, it's not so easy for
     HTTPS because of the SSL protocol between TCP and HTTP. With the
     help of OpenSSL's <code>s_client</code> command, however, you can 
-    do a similar check for HTTPS:</p>
+    do a similar check via HTTPS:</p>
     
     <example>$ openssl s_client -connect localhost:443 -state -debug<br />
     GET / HTTP/1.0</example>
-    
-    <p>Before the actual HTTP response you will receive detailed 
-    information about the SSL handshake. For a more general command 
-    line client which directly understands both HTTP and HTTPS, can 
-    perform GET and POST operations, can use a proxy, supports byte 
-    ranges, etc. you should have a look at the nifty 
-    <a href="http://curl.haxx.se/">cURL</a> tool. Using this, you can 
-    check that Apache is responding correctly on ports 80 and 443 as 
-    follows:</p>
-    
+
+    <p>Before the actual HTTP response you will receive detailed
+    information about the SSL handshake. For a more general command
+    line client which directly understands both HTTP and HTTPS, can
+    perform GET and POST operations, can use a proxy, supports byte
+    ranges, etc. you should have a look at the nifty
+    <a href="http://curl.haxx.se/">cURL</a> tool. Using this, you can
+    check that Apache is responding correctly to requests via HTTP and
+    HTTPS as follows:</p>
+
     <example>$ curl http://localhost/<br />
     $ curl https://localhost/</example>
 </section>
 
 <section id="hang"><title>Why does the connection hang when I connect 
     to my SSL-aware Apache server?</title>
-<p>Because you connected with HTTP to the HTTPS port, i.e. you used an URL of
-    the form ``<code>http://</code>'' instead of ``<code>https://</code>''.
-    This also happens the other way round when you connect via HTTPS to a HTTP
-    port, i.e. when you try to use ``<code>https://</code>'' on a server that
-    doesn't support SSL (on this port). Make sure you are connecting to a
-    virtual server that supports SSL, which is probably the IP associated with
-    your hostname, not localhost (127.0.0.1).</p>
-</section>
+
+<p>This can happen when you try to connect to a HTTPS server (or virtual
+    server) via HTTP (eg, using <code>http://example.com/</code> instead of
+    <code>https://example.com</code>). It can also happen when trying to
+    connect via HTTPS to a HTTP server (eg, using
+    <code>https://example.com/</code> on a server which doesn't support HTTPS,
+    or which supports it on a non-standard port). Make sure that you're
+    connecting to a (virtual) server that supports SSL.</p></section>
 
 <section id="refused"><title>Why do I get ``Connection Refused'' messages, 
     when trying to access my newly installed Apache+mod_ssl server via HTTPS?</title>
-<p>This can happen for various reasons. The most common mistakes 
-    include starting Apache with just <code>apachectl start</code> (or
-    <program>httpd</program>) instead of <code>apachectl startssl</code> (or
-    <code>httpd -DSSL</code>). Your configuration may also be incorrect. 
+<p>
+    This error can be caused by an incorrect configuration.
     Please make sure that your <directive module="mpm_common"
     >Listen</directive> directives match your 
     <directive type="section" module="core">VirtualHost</directive>
@@ -249,7 +248,7 @@
 
     <p>This rewrite ruleset lets you use hyperlinks of the form
     <code>&lt;a href="document.html:SSL"&gt;</code>, to switch to HTTPS
-    in a relative link.</p>
+    in a relative link. (Replace SSL with NOSSL to switch to HTTP.)</p>
 </section>
 </section>
 <!-- configuration -->
@@ -259,7 +258,7 @@
 <li><a href="#keyscerts">What are RSA Private Keys, CSRs and 
 Certificates?</a></li>
 <li><a href="#startup">Is there a difference on startup between
-the original Apache and an SSL-aware Apache?</a></li>
+a non-SSL-aware Apache and an SSL-aware Apache?</a></li>
 <li><a href="#selfcert">How do I create a self-signed SSL 
 Certificate for testing purposes?</a></li>
 <li><a href="#realcert">How do I create a real SSL Certificate?</a></li>
@@ -305,7 +304,7 @@
 </section>
 
 <section id="startup"><title>Is there a difference on startup between 
-    the original Apache and an SSL-aware Apache?</title>
+    a non-SSL-aware Apache and an SSL-aware Apache?</title>
 <p>Yes. In general, starting Apache with 
     <module>mod_ssl</module> built-in is just like starting Apache 
     without it. However, if you have a passphrase on your SSL private 
@@ -316,7 +315,8 @@
     can be problematic - for example, when starting the server from the 
     system boot scripts. In this case, you can follow the steps
     <a href="#removepassphrase">below</a> to remove the passphrase from
-    your private key.</p>
+    your private key. Bear in mind that doing so brings additional security
+    risks - proceed with caution!</p>
 </section>
 
 <section id="selfcert"><title>How do I create a self-signed SSL 
@@ -511,7 +511,7 @@
 <section id="removepassphrase"><title>How can I get rid of the pass-phrase dialog at Apache startup time?</title>
 <p>The reason this dialog pops up at startup and every re-start
     is that the RSA private key inside your server.key file is stored in
-    encrypted format for security reasons. The pass-phrase is needed decrypt
+    encrypted format for security reasons. The pass-phrase is needed to decrypt
     this file, so it can be read and parsed. Removing the pass-phrase 
     removes a layer of security from your server - proceed with caution!</p>
     <ol>
@@ -578,7 +578,7 @@
 bad certificate" error?</title>
 <p>Errors such as <code>OpenSSL: error:14094412: SSL
     routines:SSL3_READ_BYTES:sslv3 alert bad certificate</code> in the SSL
-    logfile, are usually caused a browser which is unable to handle the server
+    logfile, are usually caused by a browser which is unable to handle the server
     certificate/private-key. For example, Netscape Navigator 3.x is 
     unable to handle RSA key lengths not equal to 1024 bits.</p>
 </section>
@@ -994,8 +994,8 @@
     <dt>In case of core dumps please include a Backtrace</dt>
     <dd>If your Apache+mod_ssl+OpenSSL dumps its core, please attach
     a stack-frame ``backtrace'' (see <a href="#backtrace">below</a> 
-    for information on how to get this). Without this information, the 
-    reason for your core dump cannot be found
+    for information on how to get this). This information is required
+    in order to find a reason for your core dump.
     </dd>
     
     <dt>A detailed description of your problem</dt>

Modified: httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_howto.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_howto.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_howto.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_howto.html.en Mon Apr  7 09:28:58 2008
@@ -202,9 +202,13 @@
 AuthType             Basic
 AuthBasicProvider    file
 AuthUserFile         /usr/local/apache2/conf/httpd.passwd
-require              valid-user
+Require              valid-user
 &lt;/Directory&gt;</pre></div>
-
+    
+    <p>The password used in this example is the DES encrypted string "password".
+    See the <code class="directive"><a href="../mod/mod_ssl.html#ssloptions">SSLOptions</a></code> docs for more 
+    information.</p>
+    
     <div class="example"><h3>httpd.passwd</h3><pre>
 /C=DE/L=Munich/O=Snake Oil, Ltd./OU=Staff/CN=Foo:xxj31ZMTZzkVA
 /C=US/L=S.F./O=Snake Oil, Ltd./OU=CA/CN=Bar:xxj31ZMTZzkVA
@@ -236,7 +240,7 @@
 
    
    <p>These examples presume that clients on the Intranet have IPs in the range 
-   192.160.1.0/24, and that the part of the Intranet website you want to allow
+   192.168.1.0/24, and that the part of the Intranet website you want to allow
    internet access to is <code>/usr/local/apache2/htdocs/subarea</code>. 
    This configuration should remain outside of your HTTPS virtual host, so
    that it applies to both HTTPS and HTTP.</p>
@@ -289,6 +293,6 @@
 <div class="bottomlang">
 <p><span>Available Languages: </span><a href="../en/ssl/ssl_howto.html" title="English">&nbsp;en&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 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 2008 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="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_howto.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_howto.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_howto.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_howto.xml Mon Apr  7 09:28:58 2008
@@ -205,10 +205,14 @@
 AuthType             Basic
 AuthBasicProvider    file
 AuthUserFile         /usr/local/apache2/conf/httpd.passwd
-require              valid-user
+Require              valid-user
 &lt;/Directory&gt;</pre>
     </example>
-
+    
+    <p>The password used in this example is the DES encrypted string "password".
+    See the <directive module="mod_ssl">SSLOptions</directive> docs for more 
+    information.</p>
+    
     <example><title>httpd.passwd</title><pre>
 /C=DE/L=Munich/O=Snake Oil, Ltd./OU=Staff/CN=Foo:xxj31ZMTZzkVA
 /C=US/L=S.F./O=Snake Oil, Ltd./OU=CA/CN=Bar:xxj31ZMTZzkVA
@@ -243,7 +247,7 @@
 plain HTTP access for clients on the Intranet.</title>
    
    <p>These examples presume that clients on the Intranet have IPs in the range 
-   192.160.1.0/24, and that the part of the Intranet website you want to allow
+   192.168.1.0/24, and that the part of the Intranet website you want to allow
    internet access to is <code>/usr/local/apache2/htdocs/subarea</code>. 
    This configuration should remain outside of your HTTPS virtual host, so
    that it applies to both HTTPS and HTTP.</p>

Modified: httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.html
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.html?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.html (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.html Mon Apr  7 09:28:58 2008
@@ -2,6 +2,6 @@
 Content-Language: en
 Content-type: text/html; charset=ISO-8859-1
 
-URI: ssl_intro.html.ja.euc-jp
+URI: ssl_intro.html.ja.utf8
 Content-Language: ja
-Content-type: text/html; charset=EUC-JP
+Content-type: text/html; charset=UTF-8

Modified: httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.html.en Mon Apr  7 09:28:58 2008
@@ -102,8 +102,8 @@
     <p>Anyone can encrypt a message using the public key, but only the
     owner of the private key will be able to read it. In this way, Alice
     can send private messages to the owner of a key-pair (the bank), by
-    encrypting it using their public key. Only the bank will be able to
-    decrypt it.</p>
+    encrypting them using their public key. Only the bank will be able to
+    decrypt them.</p>
 
 
 <h3><a name="messagedigests" id="messagedigests">Message Digests</a></h3>
@@ -144,13 +144,13 @@
 involving her account. A <em>digital signature</em>, created by Alice and
 included with the message, serves this purpose.</p>
 
-<p>Digital signatures are created by encrypting a digest of the message,
-and other information (such as a sequence number) with the sender's
-private key. Though anyone can <em>decrypt</em> the signature using the public
-key, only the sender knows the private key. This means that only they can
-have signed it. Including the digest in the signature means the signature is
-only good for that message; it also ensures the integrity of the message since
-no one can change the digest and still sign it.</p>
+<p>Digital signatures are created by encrypting a digest of the message, and
+other information (such as a sequence number) with the sender's private key.
+Though anyone can <em>decrypt</em> the signature using the public key, only the
+sender knows the private key. This means that only the sender can have signed
+the message. Including the digest in the signature means the signature is only
+good for that message; it also ensures the integrity of the message since no one
+can change the digest and still sign it.</p>
 <p>To guard against interception and reuse of the signature by an intruder at a
 later date, the signature contains a unique sequence number. This protects
 the bank from a fraudulent claim from Alice that she did not send the message
@@ -292,7 +292,7 @@
     itself of the identity of the private key owner of a key-pair. 
     For instance, if Alice requests a personal certificate, the 
     Certificate Authority must first make sure that Alice really is the 
-    person the certificate claims she is.</p>
+    person the certificate request claims she is.</p>
 
     <h4><a name="certificatechains" id="certificatechains">Certificate Chains</a></h4>
     
@@ -645,6 +645,6 @@
 <p><span>Available Languages: </span><a href="../en/ssl/ssl_intro.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ja/ssl/ssl_intro.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 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 2008 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="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.xml Mon Apr  7 09:28:58 2008
@@ -106,8 +106,8 @@
     <p>Anyone can encrypt a message using the public key, but only the
     owner of the private key will be able to read it. In this way, Alice
     can send private messages to the owner of a key-pair (the bank), by
-    encrypting it using their public key. Only the bank will be able to
-    decrypt it.</p>
+    encrypting them using their public key. Only the bank will be able to
+    decrypt them.</p>
 </section>
 
 <section id="messagedigests">
@@ -148,13 +148,13 @@
 involving her account. A <em>digital signature</em>, created by Alice and
 included with the message, serves this purpose.</p>
 
-<p>Digital signatures are created by encrypting a digest of the message,
-and other information (such as a sequence number) with the sender's
-private key. Though anyone can <em>decrypt</em> the signature using the public
-key, only the sender knows the private key. This means that only they can
-have signed it. Including the digest in the signature means the signature is
-only good for that message; it also ensures the integrity of the message since
-no one can change the digest and still sign it.</p>
+<p>Digital signatures are created by encrypting a digest of the message, and
+other information (such as a sequence number) with the sender's private key.
+Though anyone can <em>decrypt</em> the signature using the public key, only the
+sender knows the private key. This means that only the sender can have signed
+the message. Including the digest in the signature means the signature is only
+good for that message; it also ensures the integrity of the message since no one
+can change the digest and still sign it.</p>
 <p>To guard against interception and reuse of the signature by an intruder at a
 later date, the signature contains a unique sequence number. This protects
 the bank from a fraudulent claim from Alice that she did not send the message
@@ -303,7 +303,7 @@
     itself of the identity of the private key owner of a key-pair. 
     For instance, if Alice requests a personal certificate, the 
     Certificate Authority must first make sure that Alice really is the 
-    person the certificate claims she is.</p>
+    person the certificate request claims she is.</p>
 
     <section id="certificatechains">
     <title>Certificate Chains</title>

Modified: httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.xml.ja
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.xml.ja?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.xml.ja [iso-2022-jp] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/ssl/ssl_intro.xml.ja [iso-2022-jp] Mon Apr  7 09:28:58 2008
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='iso-2022-jp' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 151408:420990 (outdated) -->
+<!-- English Revision: 151408:601634 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/sandbox/amsterdam/d/docs/manual/stopping.html
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/stopping.html?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/stopping.html (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/stopping.html Mon Apr  7 09:28:58 2008
@@ -14,9 +14,9 @@
 Content-Language: fr
 Content-type: text/html; charset=ISO-8859-1
 
-URI: stopping.html.ja.euc-jp
+URI: stopping.html.ja.utf8
 Content-Language: ja
-Content-type: text/html; charset=EUC-JP
+Content-type: text/html; charset=UTF-8
 
 URI: stopping.html.ko.euc-kr
 Content-Language: ko

Modified: httpd/sandbox/amsterdam/d/docs/manual/stopping.html.de
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/stopping.html.de?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/stopping.html.de (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/stopping.html.de Mon Apr  7 09:28:58 2008
@@ -255,6 +255,6 @@
 <a href="./ja/stopping.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="./ko/stopping.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 The Apache Software Foundation.<br />Lizenziert unter der <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2008 The Apache Software Foundation.<br />Lizenziert unter der <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Module</a> | <a href="./mod/directives.html">Direktiven</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossar</a> | <a href="./sitemap.html">Seitenindex</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/stopping.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/stopping.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/stopping.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/stopping.html.en Mon Apr  7 09:28:58 2008
@@ -230,6 +230,6 @@
 <a href="./ja/stopping.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="./ko/stopping.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 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 2008 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="./faq/">FAQ</a> | <a href="./glossary.html">Glossary</a> | <a href="./sitemap.html">Sitemap</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/stopping.html.es
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/stopping.html.es?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/stopping.html.es (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/stopping.html.es Mon Apr  7 09:28:58 2008
@@ -264,6 +264,6 @@
 <a href="./ja/stopping.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="./ko/stopping.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 The Apache Software Foundation.<br />Licencia bajo los términos de la <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2008 The Apache Software Foundation.<br />Licencia bajo los términos de la <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Módulos</a> | <a href="./mod/directives.html">Directivas</a> | <a href="./faq/">Preguntas Frecuentes</a> | <a href="./glossary.html">Glosario</a> | <a href="./sitemap.html">Mapa de este sitio web</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/stopping.html.fr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/stopping.html.fr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/stopping.html.fr (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/stopping.html.fr Mon Apr  7 09:28:58 2008
@@ -160,19 +160,16 @@
     avec les anciens logs.</p>
 
     <div class="note">
-    Si votre fichier de configuration comporte des erreurs lorsque vous
-    effectuez un redémarrage, votre processus parent ne redémarrera pas
-    et se terminera avec une erreur. Dans le cas d'un redémarrage en douceur
-    (graceful restart), il laissera les processus enfants
-    s'exécuter quand il s'arrêtera. (Ce sont les processus enfants qui
-    "s'arrêtent en douceur" en terminant de traiter leur dernière requête.)
-    Ceci provoquera des problèmes si vous tentez de redémarrer le serveur
-    -- il ne pourra pas s'associer à ses ports d'écoute. Avant d'effectuer un
-    redémarrage, vous pouvez vérifier la syntaxe des fichiers de
-    configuration à l'aide de l'argument de ligne de commande <code>-t</code>
-    (voir <code class="program"><a href="./programs/httpd.html">httpd</a></code>).
+    <p>Lorsque vous initiez un redémarrage, une vérification de
+    la syntaxe est tout d'abord effectuée, afin de s'assurer qu'il n'y a
+    pas d'erreurs dans les fichiers de configuration. Si votre fichier de
+    configuration comporte des erreurs de syntaxe, vous recevrez un message
+    d'erreur les concernant, et le serveur refusera de redémarrer. Ceci
+    permet d'éviter la situation où un serveur a
+    été arrêté et ne peut plus redémarrer,
+    et où vous vous retrouvez avec un serveur hors-service.</p>
 
-    Ceci ne garantit pas encore que le serveur va redémarrer
+    <p>Ceci ne garantit pas encore que le serveur va redémarrer
     correctement. Pour vérifier la sémantique des fichiers de configuration
     en plus de leur syntaxe, vous pouvez essayer de démarrer
     <code class="program"><a href="./programs/httpd.html">httpd</a></code> sous un utilisateur non root.
@@ -182,7 +179,7 @@
     <code class="program"><a href="./programs/httpd.html">httpd</a></code> est déjà associée à ces ports). S'il échoue
     pour toute autre raison, il y a probablement une erreur dans le
     fichier de configuration et celle-ci doit être corrigée avant de lancer
-    le redémarrage en douceur.</div>
+    le redémarrage en douceur.</p></div>
 </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="hup" id="hup">Redémarrer immédiatement</a></h2>
@@ -202,10 +199,11 @@
     noteront que les statistiques du serveur sont remises à zéro quand un
     signal <code>HUP</code> est envoyé.</p>
 
-<div class="note">Si votre fichier de configuration comporte des erreurs quand vous
-effectuez un redémarrage, votre processus parent ne redémarrera pas,
-il se terminera avec une erreur. Voir plus haut la méthode à employer
-pour éviter ce problème.</div>
+<div class="note">Comme dans le cas d'un redémarrage "graceful", une
+vérification de la syntaxe est effectuée avant que le
+redémarrage ne soit tenté. Si votre fichier de configuration comporte
+des erreurs de syntaxe, le redémarrage ne sera pas effectueacute;, et
+vous recevrez un message concernant ces erreurs.</div>
 </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="gracefulstop" id="gracefulstop">Arrêt en douceur</a></h2>
@@ -248,8 +246,7 @@
     comme ceux définis par les directives
     <code class="directive"><a href="./mod/core.html#lockfile">Lockfile</a></code> et
     <code class="directive"><a href="./mod/mod_cgid.html#scriptsock">ScriptSock</a></code> contiennent le PID
-    du serveur dans leurs noms donc ils coexistent sans problème.
-    Cependant, si une directive de
+    du serveur,et coexistent sans problème. Cependant, si une directive de
     configuration , un module tiers ou une CGI résidente utilise un autre
     verrou ou fichier d'état sur disque, il faut prendre soin de s'assurer
     que chaque instance de <code class="program"><a href="./programs/httpd.html">httpd</a></code> qui s'exécute
@@ -270,6 +267,6 @@
 <a href="./ja/stopping.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="./ko/stopping.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 The Apache Software Foundation.<br />Authorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2008 The Apache Software Foundation.<br />Authorisé 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="./faq/">FAQ</a> | <a href="./glossary.html">Glossaire</a> | <a href="./sitemap.html">Plan du site</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/stopping.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/stopping.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/stopping.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/stopping.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -202,6 +202,6 @@
 <a href="./ja/stopping.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="./ko/stopping.html" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 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 2008 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="./faq/">FAQ</a> | <a href="./glossary.html">용어</a> | <a href="./sitemap.html">사이트맵</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/stopping.xml.fr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/stopping.xml.fr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/stopping.xml.fr (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/stopping.xml.fr Mon Apr  7 09:28:58 2008
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.fr.xsl"?>
-<!-- LastChangedRevision English document : 420990 -->
 <!-- French translation : Lucien GENTIS -->
-<!-- $LastChangedRevision: 2007070101 $ -->
+<!-- Reviewed by : Vincent Deffontaines -->
+<!--English Revision : 586770 -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
@@ -159,19 +159,16 @@
     avec les anciens logs.</p>
 
     <note>
-    Si votre fichier de configuration comporte des erreurs lorsque vous
-    effectuez un red&eacute;marrage, votre processus parent ne red&eacute;marrera pas
-    et se terminera avec une erreur. Dans le cas d'un red&eacute;marrage en douceur
-    (graceful restart), il laissera les processus enfants
-    s'ex&eacute;cuter quand il s'arr&ecirc;tera. (Ce sont les processus enfants qui
-    "s'arr&ecirc;tent en douceur" en terminant de traiter leur derni&egrave;re requ&ecirc;te.)
-    Ceci provoquera des probl&egrave;mes si vous tentez de red&eacute;marrer le serveur
-    -- il ne pourra pas s'associer &agrave; ses ports d'&eacute;coute. Avant d'effectuer un
-    red&eacute;marrage, vous pouvez v&eacute;rifier la syntaxe des fichiers de
-    configuration &agrave; l'aide de l'argument de ligne de commande <code>-t</code>
-    (voir <program>httpd</program>).
+    <p>Lorsque vous initiez un red&eacute;marrage, une v&eacute;rification de
+    la syntaxe est tout d'abord effectu&eacute;e, afin de s'assurer qu'il n'y a
+    pas d'erreurs dans les fichiers de configuration. Si votre fichier de
+    configuration comporte des erreurs de syntaxe, vous recevrez un message
+    d'erreur les concernant, et le serveur refusera de red&eacute;marrer. Ceci
+    permet d'&eacute;viter la situation o&ugrave; un serveur a
+    &eacute;t&eacute; arr&ecirc;t&eacute; et ne peut plus red&eacute;marrer,
+    et o&ugrave; vous vous retrouvez avec un serveur hors-service.</p>
 
-    Ceci ne garantit pas encore que le serveur va red&eacute;marrer
+    <p>Ceci ne garantit pas encore que le serveur va red&eacute;marrer
     correctement. Pour v&eacute;rifier la s&eacute;mantique des fichiers de configuration
     en plus de leur syntaxe, vous pouvez essayer de d&eacute;marrer
     <program>httpd</program> sous un utilisateur non root.
@@ -181,7 +178,7 @@
     <program>httpd</program> est d&eacute;j&agrave; associ&eacute;e &agrave; ces ports). S'il &eacute;choue
     pour toute autre raison, il y a probablement une erreur dans le
     fichier de configuration et celle-ci doit &ecirc;tre corrig&eacute;e avant de lancer
-    le red&eacute;marrage en douceur.</note>
+    le red&eacute;marrage en douceur.</p></note>
 </section>
 
 <section id="hup"><title>Red&eacute;marrer imm&eacute;diatement</title>
@@ -201,10 +198,11 @@
     noteront que les statistiques du serveur sont remises &agrave; z&eacute;ro quand un
     signal <code>HUP</code> est envoy&eacute;.</p>
 
-<note>Si votre fichier de configuration comporte des erreurs quand vous
-effectuez un red&eacute;marrage, votre processus parent ne red&eacute;marrera pas,
-il se terminera avec une erreur. Voir plus haut la m&eacute;thode &agrave; employer
-pour &eacute;viter ce probl&egrave;me.</note>
+<note>Comme dans le cas d'un red&eacute;marrage "graceful", une
+v&eacute;rification de la syntaxe est effectu&eacute;e avant que le
+red&eacute;marrage ne soit tent&eacute;. Si votre fichier de configuration comporte
+des erreurs de syntaxe, le red&eacute;marrage ne sera pas effectueacute;, et
+vous recevrez un message concernant ces erreurs.</note>
 </section>
 
 <section id="gracefulstop"><title>Arr&ecirc;t en douceur</title>
@@ -248,8 +246,7 @@
     comme ceux d&eacute;finis par les directives
     <directive module="core">Lockfile</directive> et
     <directive  module="mod_cgid">ScriptSock</directive> contiennent le PID
-    du serveur dans leurs noms donc ils coexistent sans probl&egrave;me.
-    Cependant, si une directive de
+    du serveur,et coexistent sans probl&egrave;me. Cependant, si une directive de
     configuration , un module tiers ou une CGI r&eacute;sidente utilise un autre
     verrou ou fichier d'&eacute;tat sur disque, il faut prendre soin de s'assurer
     que chaque instance de <program>httpd</program> qui s'ex&eacute;cute

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/description.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/description.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/description.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/description.xml Mon Apr  7 09:28:58 2008
@@ -43,5 +43,6 @@
     + chm-es: Spanish (Spain), sorting order: international
     + chm-ja: Japanese
     + chm-ko: Korean
+    + chm-tr: Turkish
 
 </description>

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/lang-targets.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/lang-targets.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/lang-targets.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/lang-targets.xml Mon Apr  7 09:28:58 2008
@@ -22,9 +22,9 @@
 <!-- ==================================================================== -->
 <project name="lang-targets">
 
-<target description="- builds all HTML files and nroff man pages" name="all" depends="de, en, es, fr, ja, ko, pt-br, ru"/>
-<target description="- builds all zip download packages" name="zip-all" depends="zip-de, zip-en, zip-es, zip-fr, zip-ja, zip-ko, zip-pt-br, zip-ru"/>
-<target description="- builds all war download packages" name="war-all" depends="war-de, war-en, war-es, war-fr, war-ja, war-ko, war-pt-br, war-ru"/>
+<target description="- builds all HTML files and nroff man pages" name="all" depends="de, en, es, fr, ja, ko, pt-br, ru, tr"/>
+<target description="- builds all zip download packages" name="zip-all" depends="zip-de, zip-en, zip-es, zip-fr, zip-ja, zip-ko, zip-pt-br, zip-ru, zip-tr"/>
+<target description="- builds all war download packages" name="war-all" depends="war-de, war-en, war-es, war-fr, war-ja, war-ko, war-pt-br, war-ru, war-tr"/>
 
 <!-- German                                                               -->
 <!-- ==================================================================== -->
@@ -125,7 +125,7 @@
 <!-- Japanese                                                             -->
 <!-- ==================================================================== -->
 <property value=".xml.ja" name="inputext.ja"/>
-<property value=".html.ja.euc-jp" name="outputext.ja"/>
+<property value=".html.ja.utf8" name="outputext.ja"/>
 
 <target description="- builds Japanese HTML files" name="ja">
     <html.generic lang="ja"/>
@@ -208,6 +208,32 @@
     <war.generic lang="ru"/>
 </target>
 
+<!-- Turkish                                                              -->
+<!-- ==================================================================== -->
+<property value=".xml.tr" name="inputext.tr"/>
+<property value=".html.tr.utf8" name="outputext.tr"/>
+
+<target description="- builds Turkish HTML files" name="tr">
+    <html.generic lang="tr"/>
+</target>
+<target unless="-off.tr.done" depends="metafiles" name="-off-tr">
+    <dependencies.offline dir="_off" style="zip" lang="tr"/>
+    <offline.generic dir="_off" style="zip" lang="tr"/>
+    <property value="yes" name="-off.tr.done"/>
+</target>
+<target description="- builds the Turkish zipped download package" depends="-off-tr" name="zip-tr">
+    <zip.generic lang="tr"/>
+</target>
+<target description="- builds the Turkish Konqueror Web Archive" depends="-off-tr" name="war-tr">
+    <war.generic lang="tr"/>
+</target>
+<target description="- builds the Turkish CHM file" name="chm-tr">
+    <chm.generic lang="tr"/>
+</target>
+<target description="- builds the Turkish nroff files" name="man-tr">
+    <nroff.generic lang="tr"/>
+</target>
+
 <!-- XML validation.                                                      -->
 <!-- If you get an error during transformation, this task may be useful   -->
 <!-- because it mostly gives you a hint, where you forgot the </p> ;-)    -->
@@ -224,6 +250,7 @@
             <include name="**/*.xml.ko"/>
             <include name="**/*.xml.pt-br"/>
             <include name="**/*.xml.ru"/>
+            <include name="**/*.xml.tr"/>
 
             <patternset refid="excludes"/>
             <patternset refid="scratch"/>

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/lang/de.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/lang/de.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/lang/de.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/lang/de.xml Mon Apr  7 09:28:58 2008
@@ -72,11 +72,19 @@
         <message id="status">Status</message>
         <message id="module">Modul</message>
 
+        <!-- Status descriptions -->
+        <message id="base" letter="B">Basis</message>
+        <message id="mpm" letter="M">MPM</message>
+        <message id="core" letter="C">Core</message>
+        <message id="extension" letter="E">Erweiterung</message>
+        <message id="experimental" letter="X">experimentell</message>
+        <message id="external" letter="T">extern</message>
+
         <!-- Used in directive context lists -->
-        <message id="serverconfig">Serverkonfiguration</message>
-        <message id="virtualhost">Virtual Host</message>
-        <message id="directory">Verzeichnis</message>
-        <message id="htaccess">.htaccess</message>
+        <message id="serverconfig" letter="s">Serverkonfiguration</message>
+        <message id="virtualhost" letter="v">Virtual Host</message>
+        <message id="directory" letter="d">Verzeichnis</message>
+        <message id="htaccess" letter="h">.htaccess</message>
 
         <!-- Used for directive lists -->
         <message id="directives">Direktiven</message>
@@ -119,7 +127,8 @@
         <message id="sitemap">Seitenindex</message>
 
         <!-- footer line -->
-        <message id="licensed">Lizenziert unter der</message>
+        <message id="before-license">Lizenziert unter der</message>
+        <message id="after-license"></message>
         <message id="langavail">Verfügbare Sprachen</message>
 
         <!-- not up to date -->

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/lang/en.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/lang/en.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/lang/en.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/lang/en.xml Mon Apr  7 09:28:58 2008
@@ -76,11 +76,19 @@
         <message id="status">Status</message>
         <message id="module">Module</message>
 
+        <!-- Status descriptions -->
+        <message id="base" letter="B">Base</message>
+        <message id="mpm" letter="M">MPM</message>
+        <message id="core" letter="C">Core</message>
+        <message id="extension" letter="E">Extension</message>
+        <message id="experimental" letter="X">Experimental</message>
+        <message id="external" letter="T">External</message>
+
         <!-- Used in directive context lists -->
-        <message id="serverconfig">server config</message>
-        <message id="virtualhost">virtual host</message>
-        <message id="directory">directory</message>
-        <message id="htaccess">.htaccess</message>
+        <message id="serverconfig" letter="s">server config</message>
+        <message id="virtualhost" letter="v">virtual host</message>
+        <message id="directory" letter="d">directory</message>
+        <message id="htaccess" letter="h">.htaccess</message>
 
         <!-- Used for directive lists -->
         <message id="directives">Directives</message>
@@ -120,7 +128,8 @@
         <message id="sitemap">Sitemap</message>
 
         <!-- footer line -->
-        <message id="licensed">Licensed under the</message>
+        <message id="before-license">Licensed under the</message>
+        <message id="after-license"></message>
         <message id="langavail">Available Languages</message>
  
         <!-- not up to date -->

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/lang/es.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/lang/es.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/lang/es.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/lang/es.xml Mon Apr  7 09:28:58 2008
@@ -74,11 +74,19 @@
         <message id="status">Estado</message>
         <message id="module">M&#243;dulo</message>
 
+        <!-- Status descriptions -->
+        <message id="base" letter="B">Base</message>
+        <message id="mpm" letter="M">MPM</message>
+        <message id="core" letter="C">Core</message>
+        <message id="extension" letter="E">Extensi&#243;n</message>
+        <message id="experimental" letter="X">Experimental</message>
+        <message id="external" letter="T">External</message>
+
         <!-- Used in directive context lists -->
-        <message id="serverconfig">server config</message>
-        <message id="virtualhost">virtual host</message>
-        <message id="directory">directory</message>
-        <message id="htaccess">.htaccess</message>
+        <message id="serverconfig" letter="s">server config</message>
+        <message id="virtualhost" letter="v">virtual host</message>
+        <message id="directory" letter="d">directory</message>
+        <message id="htaccess" letter="h">.htaccess</message>
 
         <!-- Used for directive lists -->
         <message id="directives">Directivas</message>
@@ -118,7 +126,8 @@
         <message id="sitemap">Mapa de este sitio web</message>
 
         <!-- footer line -->
-        <message id="licensed">Licencia bajo los t&#233;rminos de la</message>
+        <message id="before-license">Licencia bajo los t&#233;rminos de la</message>
+        <message id="after-license"></message>
         <message id="langavail">Idiomas disponibles</message>
 
         <!-- not up to date -->

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/lang/fr.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/lang/fr.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/lang/fr.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/lang/fr.xml Mon Apr  7 09:28:58 2008
@@ -78,11 +78,19 @@
         <message id="status">Status</message>
         <message id="module">Module</message>
 
+        <!-- Status descriptions -->
+        <message id="base" letter="B">Base</message>
+        <message id="mpm" letter="M">MPM</message>
+        <message id="core" letter="C">Core</message>
+        <message id="extension" letter="E">Extension</message>
+        <message id="experimental" letter="X">Experimental</message>
+        <message id="external" letter="T">External</message>
+
         <!-- Used in directive context lists -->
-        <message id="serverconfig">configuration du serveur</message>
-        <message id="virtualhost">serveur virtuel</message>
-        <message id="directory">r&#233;pertoire</message>
-        <message id="htaccess">.htaccess</message>
+        <message id="serverconfig" letter="s">configuration du serveur</message>
+        <message id="virtualhost" letter="v">serveur virtuel</message>
+        <message id="directory" letter="d">r&#233;pertoire</message>
+        <message id="htaccess" letter="h">.htaccess</message>
 
         <!-- Used for directive lists -->
         <message id="directives">Directives</message>
@@ -121,7 +129,8 @@
         <message id="sitemap">Plan du site</message>
 
         <!-- footer line -->
-        <message id="licensed">Authoris&#233; sous</message>
+        <message id="before-license">Authoris&#233; sous</message>
+        <message id="after-license"></message>
         <message id="langavail">Langues Disponibles</message>
  
         <!-- not up to date -->

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/lang/ja.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/lang/ja.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/lang/ja.xml [iso-2022-jp] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/lang/ja.xml [iso-2022-jp] Mon Apr  7 09:28:58 2008
@@ -21,9 +21,9 @@
 
 <language id="ja">
     <name>Japanese</name>
-    <charset>EUC-JP</charset>
+    <charset>UTF-8</charset>
     <source-ext>.xml.ja</source-ext>
-    <target-ext>.html.ja.euc-jp</target-ext>
+    <target-ext>.html.ja.utf8</target-ext>
 
     <chm>
         <lang>0x411 Japanese</lang>
@@ -71,11 +71,19 @@
         <message id="status">ステータス</message>
         <message id="module">モジュール</message>
 
+        <!-- Status descriptions -->
+        <message id="base" letter="B">Base</message>
+        <message id="mpm" letter="M">MPM</message>
+        <message id="core" letter="C">Core</message>
+        <message id="extension" letter="E">Extension</message>
+        <message id="experimental" letter="X">Experimental</message>
+        <message id="external" letter="T">External</message>
+
         <!-- Used in directive context lists -->
-        <message id="serverconfig">サーバ設定ファイル</message>
-        <message id="virtualhost">バーチャルホスト</message>
-        <message id="directory">ディレクトリ</message>
-        <message id="htaccess">.htaccess</message>
+        <message id="serverconfig" letter="s">サーバ設定ファイル</message>
+        <message id="virtualhost" letter="v">バーチャルホスト</message>
+        <message id="directory" letter="d">ディレクトリ</message>
+        <message id="htaccess" letter="h">.htaccess</message>
 
         <!-- Used for directive lists -->
         <message id="directives">ディレクティブ</message>
@@ -118,7 +126,8 @@
         <message id="sitemap">サイトマップ</message>
 
         <!-- footer line -->
-        <message id="licensed">Licensed under the</message>
+        <message id="before-license">Licensed under the</message>
+        <message id="after-license"></message>
         <message id="langavail">Available Languages</message>
 
         <!-- not up to date -->

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/lang/ko.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/lang/ko.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/lang/ko.xml [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/lang/ko.xml [euc-kr] Mon Apr  7 09:28:58 2008
@@ -77,11 +77,19 @@
         <message id="status">상태</message>
         <message id="module">모듈</message>
 
+        <!-- Status descriptions -->
+        <message id="base" letter="B">Base</message>
+        <message id="mpm" letter="M">MPM</message>
+        <message id="core" letter="C">Core</message>
+        <message id="extension" letter="E">Extension</message>
+        <message id="experimental" letter="X">Experimental</message>
+        <message id="external" letter="T">External</message>
+
         <!-- Used in directive context lists -->
-        <message id="serverconfig">주서버설정</message>
-        <message id="virtualhost">가상호스트</message>
-        <message id="directory">directory</message>
-        <message id="htaccess">.htaccess</message>
+        <message id="serverconfig" letter="s">주서버설정</message>
+        <message id="virtualhost" letter="v">가상호스트</message>
+        <message id="directory" letter="d">directory</message>
+        <message id="htaccess" letter="h">.htaccess</message>
 
         <!-- Used for directive lists -->
         <message id="directives">지시어들</message>
@@ -123,7 +131,8 @@
         <message id="sitemap">사이트맵</message>
 
         <!-- footer line -->
-        <message id="licensed">Licensed under the</message>
+        <message id="before-license">Licensed under the</message>
+        <message id="after-license"></message>
         <message id="langavail">가능한 언어</message>
 
         <!-- not up to date -->

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/lang/pt-br.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/lang/pt-br.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/lang/pt-br.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/lang/pt-br.xml Mon Apr  7 09:28:58 2008
@@ -79,11 +79,19 @@
         <message id="status">Status</message>
         <message id="module">M&#243;dulo</message>
 
+        <!-- Status descriptions -->
+        <message id="base" letter="B">Base</message>
+        <message id="mpm" letter="M">MPM</message>
+        <message id="core" letter="C">Core</message>
+        <message id="extension" letter="E">Extension</message>
+        <message id="experimental" letter="X">Experimental</message>
+        <message id="external" letter="T">External</message>
+
         <!-- Used in directive context lists -->
-        <message id="serverconfig">configura&#231;&#227;o do servidor</message>
-        <message id="virtualhost">hospedeiro virtual</message>
-        <message id="directory">diret&#243;rio</message>
-        <message id="htaccess">.htaccess</message>
+        <message id="serverconfig" letter="s">configura&#231;&#227;o do servidor</message>
+        <message id="virtualhost" letter="v">hospedeiro virtual</message>
+        <message id="directory" letter="d">diret&#243;rio</message>
+        <message id="htaccess" letter="h">.htaccess</message>
 
         <!-- Used for directive lists -->
         <message id="directives">Diretrizes</message>
@@ -122,7 +130,8 @@
         <message id="sitemap">Mapa do site</message>
 
         <!-- footer line -->	
-        <message id="licensed">Licenciado sob a</message>
+        <message id="before-license">Licenciado sob a</message>
+        <message id="after-license"></message>
         <message id="langavail">L&#237;nguas Dispon&#237;veis</message>
  
         <!-- not up to date -->

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/lang/ru.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/lang/ru.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/lang/ru.xml [koi8-r] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/lang/ru.xml [koi8-r] Mon Apr  7 09:28:58 2008
@@ -44,8 +44,10 @@
         <message id="corefeatures">Особенности ядра и мульти-процессные
             модули</message>
         <message id="othermodules">Другие модули</message>
+        <message id="obsoletemodules">Obsolete Modules</message>
 
         <!-- Used for the modulesynopsis and sitemap -->
+        <message id="obsoleteapachemodule">Obsolete Apache Module</message>
         <message id="apachemodule">Модуль Apache</message>
         <message id="apachecore">Особенности ядра Apache</message>
         <message id="apachempmcommon">Общие для всех МП-модулей директивы
@@ -73,6 +75,20 @@
         <message id="status">Статус</message>
         <message id="module">Модуль</message>
 
+        <!-- Status descriptions -->
+        <message id="base" letter="B">Base</message>
+        <message id="mpm" letter="M">MPM</message>
+        <message id="core" letter="C">Core</message>
+        <message id="extension" letter="E">Extension</message>
+        <message id="experimental" letter="X">Experimental</message>
+        <message id="external" letter="T">External</message>
+
+        <!-- Used in directive context lists -->
+        <message id="serverconfig" letter="s">server config</message>
+        <message id="virtualhost" letter="v">virtual host</message>
+        <message id="directory" letter="d">directory</message>
+        <message id="htaccess" letter="h">.htaccess</message>
+
         <!-- Used for directive lists -->
         <message id="directives">Директивы</message>
         <message id="directive">Директива</message>
@@ -107,7 +123,8 @@
         <message id="sitemap">Карта сайта</message>
 
         <!-- footer line -->
-        <message id="licensed">Licensed under the</message>
+        <message id="before-license">Licensed under the</message>
+        <message id="after-license"></message>
         <message id="langavail">Available Languages</message>
 
         <!-- not up to date -->

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/latex/quickreference.xsl
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/latex/quickreference.xsl?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/latex/quickreference.xsl (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/latex/quickreference.xsl Mon Apr  7 09:28:58 2008
@@ -85,25 +85,27 @@
       </xsl:if>
 
       <xsl:text>&amp;</xsl:text>
-
-            <xsl:if test="contextlist/context
-                          [normalize-space(.)='server config']">s</xsl:if>
-            <xsl:if test="contextlist/context
-                          [normalize-space(.)='virtual host']">v</xsl:if>
-            <xsl:if test="contextlist/context
-                          [normalize-space(.)='directory']">d</xsl:if>
-            <xsl:if test="contextlist/context
-                          [normalize-space(.)='.htaccess']">h</xsl:if>
+        <xsl:if test="contextlist/context
+                      [normalize-space(.)='server config']">
+            <xsl:value-of select="$message[@id='serverconfig']/@letter"/>
+        </xsl:if>
+        <xsl:if test="contextlist/context
+                      [normalize-space(.)='virtual host']">
+            <xsl:value-of select="$message[@id='virtualhost']/@letter"/>
+        </xsl:if>
+        <xsl:if test="contextlist/context
+                      [normalize-space(.)='directory']">
+            <xsl:value-of select="$message[@id='directory']/@letter"/>
+        </xsl:if>
+        <xsl:if test="contextlist/context
+                      [normalize-space(.)='.htaccess']">
+            <xsl:value-of select="$message[@id='htaccess']/@letter"/>
+        </xsl:if>
 
       <xsl:text>&amp;</xsl:text>
-            <xsl:choose>
-            <xsl:when test="../status='Base'">B</xsl:when>
-            <xsl:when test="../status='MPM'">M</xsl:when>
-            <xsl:when test="../status='Core'">C</xsl:when>
-            <xsl:when test="../status='Extension'">E</xsl:when>
-            <xsl:when test="../status='Experimental'">X</xsl:when>
-            </xsl:choose>
-
+        <xsl:variable name="status" select="translate(
+            ../status, $uppercase, $lowercase)"/>
+        <xsl:value-of select="$message[@id=$status]/@letter"/>
      <xsl:text>\\*
 </xsl:text>
 
@@ -134,7 +136,9 @@
 </xsl:template>
 
 <xsl:template match="legend">
-<xsl:apply-templates/>
+<!-- TODO: This table is no longer in source file
+     <xsl:apply-templates/>
+-->
 </xsl:template>
 
 </xsl:stylesheet>

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/latex/synopsis.xsl
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/latex/synopsis.xsl?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/latex/synopsis.xsl (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/latex/synopsis.xsl Mon Apr  7 09:28:58 2008
@@ -65,7 +65,9 @@
 
 <xsl:value-of select="$message[@id='status']" />
 <xsl:text>: &amp;</xsl:text>
-<xsl:value-of select="status" />
+    <xsl:variable name="status" select="translate(
+        status, $uppercase, $lowercase)"/>
+    <xsl:value-of select="$message[@id=$status]"/>
 <xsl:text>\\
 </xsl:text>
 
@@ -234,7 +236,9 @@
 
 <xsl:value-of select="$message[@id='status']" />
 <xsl:text>: &amp;</xsl:text>
-<xsl:value-of select="../status" />
+<xsl:variable name="status" select="translate(
+    ../status, $uppercase, $lowercase)"/>
+<xsl:value-of select="$message[@id=$status]"/>
 <xsl:text> \\
 </xsl:text>
 

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/manual.ja.xsl
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/manual.ja.xsl?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/manual.ja.xsl (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/manual.ja.xsl Mon Apr  7 09:28:58 2008
@@ -19,7 +19,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="EUC-JP" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/ja.xml')/language/messages/message"/>
@@ -27,7 +27,7 @@
 <xsl:variable name="allmodules" select="document('xsl/util/allmodules.xml')/items/item[@lang=$doclang]"/>
 
 <!-- some meta information have to be passed to the transformation -->
-<xsl:variable name="output-encoding">EUC-JP</xsl:variable>
+<xsl:variable name="output-encoding">UTF-8</xsl:variable>
 <xsl:variable name="is-chm" select="false()"/>
 <xsl:variable name="is-zip" select="false()"/>
 

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/xsl/common.xsl
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/xsl/common.xsl?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/xsl/common.xsl (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/xsl/common.xsl Mon Apr  7 09:28:58 2008
@@ -277,9 +277,11 @@
 
 <div id="footer">&lf;
     <p class="apache">
-        <xsl:text>Copyright 2007 The Apache Software Foundation.</xsl:text><br />
-        <xsl:value-of select="$message[@id='licensed']"/>
-        <xsl:text> </xsl:text>
+        <xsl:text>Copyright 2008 The Apache Software Foundation.</xsl:text><br />
+        <xsl:if test="normalize-space($message[@id='before-license'])">
+            <xsl:value-of select="$message[@id='before-license']"/>
+            <xsl:text> </xsl:text>
+        </xsl:if>
 
         <a href="http://www.apache.org/licenses/LICENSE-2.0">
             <xsl:if test="$ext-target">
@@ -287,6 +289,11 @@
             </xsl:if>
             <xsl:text>Apache License, Version 2.0</xsl:text>
         </a>
+        <xsl:if test="normalize-space($message[@id='after-license'])">
+            <xsl:text> </xsl:text>
+            <xsl:value-of select="$message[@id='after-license']"/>
+        </xsl:if>
+
         <xsl:text>.</xsl:text>
     </p>&lf;
 

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/xsl/quickreference.xsl
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/xsl/quickreference.xsl?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/xsl/quickreference.xsl (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/xsl/quickreference.xsl Mon Apr  7 09:28:58 2008
@@ -68,10 +68,112 @@
                     </span>
                 </td>&lf;
                 <td>
-                    <xsl:apply-templates select="legend/table[position()=1]" />
+                    <table>
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='serverconfig']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='serverconfig']"/>
+                        </td>
+                    </tr>&lf;
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='virtualhost']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='virtualhost']"/>
+                        </td>
+                    </tr>&lf;
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='directory']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='directory']"/>
+                        </td>
+                    </tr>&lf;
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='htaccess']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='htaccess']"/>
+                        </td>
+                    </tr>&lf;
+                    </table>
                 </td>&lf;
                 <td>
-                    <xsl:apply-templates select="legend/table[position()=2]" />
+                    <table>
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='core']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='core']"/>
+                        </td>
+                    </tr>&lf;
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='mpm']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='mpm']"/>
+                        </td>
+                    </tr>&lf;
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='base']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='base']"/>
+                        </td>
+                    </tr>&lf;
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='extension']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='extension']"/>
+                        </td>
+                    </tr>&lf;
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='experimental']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='experimental']"/>
+                        </td>
+                    </tr>&lf;
+                    <tr>
+                        <th>
+                            <xsl:value-of
+                                select="$message[@id='external']/@letter"/>
+                        </th>
+                        <td>
+                            <xsl:value-of
+                                select="$message[@id='external']"/>
+                        </td>
+                    </tr>&lf;
+                    </table>
                 </td>
             </tr>&lf;
             </table>&lf;
@@ -156,29 +258,42 @@
         </td>
         <td>
             <xsl:if test="contextlist/context
-                          [normalize-space(.)='server config']">s</xsl:if>
+                          [normalize-space(.)='server config']">
+                <xsl:value-of select="$message[@id='serverconfig']/@letter"/>
+            </xsl:if>
             <xsl:if test="contextlist/context
-                          [normalize-space(.)='virtual host']">v</xsl:if>
+                          [normalize-space(.)='virtual host']">
+                <xsl:value-of select="$message[@id='virtualhost']/@letter"/>
+            </xsl:if>
             <xsl:if test="contextlist/context
-                          [normalize-space(.)='directory']">d</xsl:if>
+                          [normalize-space(.)='directory']">
+                <xsl:value-of select="$message[@id='directory']/@letter"/>
+            </xsl:if>
             <xsl:if test="contextlist/context
-                          [normalize-space(.)='.htaccess']">h</xsl:if>
+                          [normalize-space(.)='.htaccess']">
+                <xsl:value-of select="$message[@id='htaccess']/@letter"/>
+            </xsl:if>
         </td>
         <td>
             <xsl:choose>
-            <xsl:when test="../status='Base'">B</xsl:when>
-            <xsl:when test="../status='MPM'">M</xsl:when>
-            <xsl:when test="../status='Core'">C</xsl:when>
-            <xsl:when test="../status='Extension'">E</xsl:when>
-            <xsl:when test="../status='Experimental'">X</xsl:when>
             <xsl:when test="../status='External'">
                 <xsl:choose>
                 <xsl:when test="../status/@href">
-                    <a href="{../status/@href}">T</a>
+                    <a href="{../status/@href}">
+                        <xsl:value-of
+                            select="$message[@id='external']/@letter"/>
+                    </a>
                 </xsl:when>
-                <xsl:otherwise>T</xsl:otherwise>
+                <xsl:otherwise>
+                    <xsl:value-of select="$message[@id='external']/@letter"/>
+                </xsl:otherwise>
                 </xsl:choose>
             </xsl:when>
+            <xsl:otherwise>
+                <xsl:variable name="status" select="translate(
+                    ../status, $uppercase, $lowercase)"/>
+                <xsl:value-of select="$message[@id=$status]/@letter"/>
+            </xsl:otherwise>
             </xsl:choose>
         </td>
     </tr>

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/xsl/synopsis.xsl
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/xsl/synopsis.xsl?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/xsl/synopsis.xsl (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/xsl/synopsis.xsl Mon Apr  7 09:28:58 2008
@@ -89,14 +89,17 @@
                         </a>
                     </th>
                     <td>
+                        <xsl:variable name="status" select="translate(
+                            status, $uppercase, $lowercase)"/>
                         <xsl:choose>
                         <xsl:when test="status = 'External' and status/@href">
                             <a href="{status/@href}">
-                                <xsl:value-of select="status" />
+                                <xsl:value-of select="$message[@id=$status]"/>
                             </a>
                         </xsl:when>
                         <xsl:otherwise>
-                            <xsl:value-of select="status" />
+                            <xsl:value-of
+                                select="$message[@id=$status]"/>
                         </xsl:otherwise>
                         </xsl:choose>
                     </td>
@@ -384,7 +387,9 @@
                 </a>
             </th>
             <td>
-                <xsl:value-of select="../status" />
+                <xsl:variable name="status" select="translate(
+                    ../status, $uppercase, $lowercase)"/>
+                <xsl:value-of select="$message[@id=$status]"/>
             </td>
         </tr>&lf;
 

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/xsl/util/allmodules.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/xsl/util/allmodules.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/xsl/util/allmodules.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/xsl/util/allmodules.xml Mon Apr  7 09:28:58 2008
@@ -8,4 +8,5 @@
 <item lang="ko">../../../mod/allmodules.xml.ko</item>
 <item lang="pt-br">../../../mod/allmodules.xml.pt-br</item>
 <item lang="ru">../../../mod/allmodules.xml.ru</item>
+<item lang="tr">../../../mod/allmodules.xml.tr</item>
 </items>

Modified: httpd/sandbox/amsterdam/d/docs/manual/style/xsl/util/designations.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/style/xsl/util/designations.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/style/xsl/util/designations.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/style/xsl/util/designations.xml Mon Apr  7 09:28:58 2008
@@ -4,8 +4,9 @@
 <item charset="ISO-8859-1" lang="en">.html.en</item>
 <item charset="ISO-8859-1" lang="es">.html.es</item>
 <item charset="ISO-8859-1" lang="fr">.html.fr</item>
-<item charset="EUC-JP" lang="ja">.html.ja.euc-jp</item>
+<item charset="UTF-8" lang="ja">.html.ja.utf8</item>
 <item charset="EUC-KR" lang="ko">.html.ko.euc-kr</item>
 <item charset="ISO-8859-1" lang="pt-br">.html.pt-br</item>
 <item charset="KOI8-R" lang="ru">.html.ru.koi8-r</item>
+<item charset="UTF-8" lang="tr">.html.tr.utf8</item>
 </items>

Modified: httpd/sandbox/amsterdam/d/docs/manual/suexec.html
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/suexec.html?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/suexec.html (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/suexec.html Mon Apr  7 09:28:58 2008
@@ -2,9 +2,9 @@
 Content-Language: en
 Content-type: text/html; charset=ISO-8859-1
 
-URI: suexec.html.ja.euc-jp
+URI: suexec.html.ja.utf8
 Content-Language: ja
-Content-type: text/html; charset=EUC-JP
+Content-type: text/html; charset=UTF-8
 
 URI: suexec.html.ko.euc-kr
 Content-Language: ko

Modified: httpd/sandbox/amsterdam/d/docs/manual/suexec.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/suexec.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/suexec.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/suexec.html.en Mon Apr  7 09:28:58 2008
@@ -446,7 +446,7 @@
     command <code>make install</code> to install them. The binary image
     <code>suexec</code> is installed in the directory defined by the
     <code>--sbindir</code> option. The default location is
-    "/usr/local/apache2/sbin/suexec".<br />
+    "/usr/local/apache2/bin/suexec".<br />
      Please note that you need <strong><em>root
     privileges</em></strong> for the installation step. In order
     for the wrapper to set the user ID, it must be installed as
@@ -472,7 +472,7 @@
 </code></p></div>
 
     <p>and <code class="program"><a href="./programs/suexec.html">suexec</a></code> is installed at
-    "/usr/local/apache2/sbin/suexec", you should run:</p>
+    "/usr/local/apache2/bin/suexec", you should run:</p>
 
 <div class="example"><p><code>
     chgrp webgroup /usr/local/apache2/bin/suexec<br />
@@ -603,6 +603,6 @@
 <a href="./ja/suexec.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="./ko/suexec.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 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 2008 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="./faq/">FAQ</a> | <a href="./glossary.html">Glossary</a> | <a href="./sitemap.html">Sitemap</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/suexec.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/suexec.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/suexec.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/suexec.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -529,6 +529,6 @@
 <a href="./ja/suexec.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="./ko/suexec.html" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 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 2008 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="./faq/">FAQ</a> | <a href="./glossary.html">용어</a> | <a href="./sitemap.html">사이트맵</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/suexec.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/suexec.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/suexec.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/suexec.xml Mon Apr  7 09:28:58 2008
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8" ?>
+<?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.en.xsl"?>
 <!-- $LastChangedRevision$ -->
@@ -437,7 +437,7 @@
     command <code>make install</code> to install them. The binary image
     <code>suexec</code> is installed in the directory defined by the
     <code>--sbindir</code> option. The default location is
-    "/usr/local/apache2/sbin/suexec".<br />
+    "/usr/local/apache2/bin/suexec".<br />
      Please note that you need <strong><em>root
     privileges</em></strong> for the installation step. In order
     for the wrapper to set the user ID, it must be installed as
@@ -463,7 +463,7 @@
 </example>
 
     <p>and <program>suexec</program> is installed at
-    "/usr/local/apache2/sbin/suexec", you should run:</p>
+    "/usr/local/apache2/bin/suexec", you should run:</p>
 
 <example>
     chgrp webgroup /usr/local/apache2/bin/suexec<br />

Modified: httpd/sandbox/amsterdam/d/docs/manual/suexec.xml.ja
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/suexec.xml.ja?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/suexec.xml.ja [iso-2022-jp] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/suexec.xml.ja [iso-2022-jp] Mon Apr  7 09:28:58 2008
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="iso-2022-jp"?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.ja.xsl"?>
-<!-- English Revision: 151408:420990 (outdated) -->
+<!-- English Revision: 151408:606748 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/sandbox/amsterdam/d/docs/manual/suexec.xml.ko
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/suexec.xml.ko?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/suexec.xml.ko [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/suexec.xml.ko [euc-kr] Mon Apr  7 09:28:58 2008
@@ -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:420990 (outdated) -->
+<!-- English Revision: 105989:606748 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/sandbox/amsterdam/d/docs/manual/upgrading.html
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/upgrading.html?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/upgrading.html (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/upgrading.html Mon Apr  7 09:28:58 2008
@@ -6,9 +6,9 @@
 Content-Language: en
 Content-type: text/html; charset=ISO-8859-1
 
-URI: upgrading.html.ja.euc-jp
+URI: upgrading.html.ja.utf8
 Content-Language: ja
-Content-type: text/html; charset=EUC-JP
+Content-type: text/html; charset=UTF-8
 
 URI: upgrading.html.ko.euc-kr
 Content-Language: ko

Modified: httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.de
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.de?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.de (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.de Mon Apr  7 09:28:58 2008
@@ -106,6 +106,6 @@
 <a href="./pt-br/upgrading.html" hreflang="pt-br" rel="alternate" title="Português (Brasil)">&nbsp;pt-br&nbsp;</a> |
 <a href="./ru/upgrading.html" hreflang="ru" rel="alternate" title="Russian">&nbsp;ru&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 The Apache Software Foundation.<br />Lizenziert unter der <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2008 The Apache Software Foundation.<br />Lizenziert unter der <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Module</a> | <a href="./mod/directives.html">Direktiven</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossar</a> | <a href="./sitemap.html">Seitenindex</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.en Mon Apr  7 09:28:58 2008
@@ -74,6 +74,6 @@
 <a href="./pt-br/upgrading.html" hreflang="pt-br" rel="alternate" title="Português (Brasil)">&nbsp;pt-br&nbsp;</a> |
 <a href="./ru/upgrading.html" hreflang="ru" rel="alternate" title="Russian">&nbsp;ru&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 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 2008 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="./faq/">FAQ</a> | <a href="./glossary.html">Glossary</a> | <a href="./sitemap.html">Sitemap</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -199,6 +199,6 @@
 <a href="./pt-br/upgrading.html" hreflang="pt-br" rel="alternate" title="Portugu&#234;s (Brasil)">&nbsp;pt-br&nbsp;</a> |
 <a href="./ru/upgrading.html" hreflang="ru" rel="alternate" title="Russian">&nbsp;ru&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 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 2008 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="./faq/">FAQ</a> | <a href="./glossary.html">용어</a> | <a href="./sitemap.html">사이트맵</a></p></div>
 </body></html>

Modified: httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.pt-br
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.pt-br?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.pt-br (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/upgrading.html.pt-br Mon Apr  7 09:28:58 2008
@@ -220,6 +220,6 @@
 <a href="./pt-br/upgrading.html" title="Português (Brasil)">&nbsp;pt-br&nbsp;</a> |
 <a href="./ru/upgrading.html" hreflang="ru" rel="alternate" title="Russian">&nbsp;ru&nbsp;</a></p>
 </div><div id="footer">
-<p class="apache">Copyright 2007 The Apache Software Foundation.<br />Licenciado sob a <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2008 The Apache Software Foundation.<br />Licenciado sob a <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Módulos</a> | <a href="./mod/directives.html">Diretrizes</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossário</a> | <a href="./sitemap.html">Mapa do site</a></p></div>
 </body></html>