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 [18/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/platform/windows.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/platform/windows.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/platform/windows.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/platform/windows.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$ -->
@@ -147,8 +147,9 @@
       site(s).</p></li>
 
       <li><p><strong>Where to install.</strong> The default path is
-      <code>C:\Program Files\Apache Group</code> under which a directory
-      called <code>Apache2</code> will be created by default.</p></li>
+      <code>C:\Program Files\Apache Software Foundation</code>
+      under which a directory called 
+      <code>Apache2.3</code> will be created by default.</p></li>
     </ol>
 
     <p>During the installation, Apache will configure the files in the
@@ -249,7 +250,7 @@
       <li><p>Apache for Windows contains the ability to load modules at
       runtime, without recompiling the server. If Apache is compiled
       normally, it will install a number of optional modules in the
-      <code>\Apache2\modules</code> directory. To activate these or
+      <code>\Apache2.3\modules</code> directory. To activate these or
       other modules, the new <directive module="mod_so">LoadModule</directive>
       directive must be used. For example, to activate the status
       module, use the following (in addition to the status-activating
@@ -319,7 +320,7 @@
     the command prompt at the Apache <code>bin</code> subdirectory:</p>
 
     <example>
-      httpd -k install
+      httpd.exe -k install
     </example>
 
     <p>If you need to specify the name of the service you want to
@@ -328,14 +329,14 @@
     computer.</p>
 
     <example>
-      httpd -k install -n "MyServiceName"
+      httpd.exe -k install -n "MyServiceName"
     </example>
 
     <p>If you need to have specifically named configuration files for
     different services, you must use this:</p>
 
     <example>
-      httpd -k install -n "MyServiceName" -f "c:\files\my.conf"
+      httpd.exe -k install -n "MyServiceName" -f "c:\files\my.conf"
     </example>
 
     <p>If you use the first command without any special parameters except
@@ -346,13 +347,13 @@
     <p>Removing an Apache service is easy. Just use:</p>
 
     <example>
-      httpd -k uninstall
+      httpd.exe -k uninstall
     </example>
 
     <p>The specific Apache service to be uninstalled can be specified by using:</p>
 
     <example>
-      httpd -k uninstall -n "MyServiceName"
+      httpd.exe -k uninstall -n "MyServiceName"
     </example>
 
     <p>Normal starting, restarting and shutting down of an Apache
@@ -363,34 +364,34 @@
     service's configuration file by using:</p>
 
     <example>
-      httpd -n "MyServiceName" -t
+      httpd.exe -n "MyServiceName" -t
     </example>
 
     <p>You can control an Apache service by its command line switches,
     too. To start an installed Apache service you'll use this:</p>
 
     <example>
-      httpd -k start
+      httpd.exe -k start
     </example>
 
     <p>To stop an Apache service via the command line switches, use
     this:</p>
 
     <example>
-      httpd -k stop
+      httpd.exe -k stop
     </example>
 
     <p>or</p>
 
     <example>
-      httpd -k shutdown
+      httpd.exe -k shutdown
     </example>
 
     <p>You can also restart a running service and force it to reread
     its configuration file by using:</p>
 
     <example>
-      httpd -k restart
+      httpd.exe -k restart
     </example>
 
     <p>By default, all Apache services are registered to run as the
@@ -432,7 +433,7 @@
       Apache <code>logs</code> directory.</li>
 
       <li>Grant the account read and execute (RX) rights to the
-      <code>Apache.exe</code> binary executable.</li>
+      <code>httpd.exe</code> binary executable.</li>
     </ol>
 
     <note>It is usually a good practice to grant the user the Apache
@@ -482,7 +483,7 @@
       in the background. If you run the command</p>
 
       <example>
-        httpd -n "MyServiceName" -k start
+        httpd.exe -n "MyServiceName" -k start
       </example>
 
       <p>via a shortcut on your desktop, for example, then if the
@@ -530,7 +531,7 @@
     use the following command:</p>
 
     <example>
-      httpd
+      httpd.exe
     </example>
 
     <p>Apache will execute, and will remain running until it is stopped
@@ -551,7 +552,7 @@
     window and entering:</p>
 
     <example>
-      httpd -k shutdown
+      httpd.exe -k shutdown
     </example>
 
     <p>This should be preferred over pressing Control-C because this
@@ -562,7 +563,7 @@
     complete without interruption. To restart Apache, use:</p>
 
     <example>
-      httpd -k restart
+      httpd.exe -k restart
     </example>
 
     <note>Note for people familiar with the Unix version of Apache:
@@ -574,15 +575,15 @@
     <p>If the Apache console window closes immediately or unexpectedly
     after startup, open the Command Prompt from the Start Menu --&gt;
     Programs. Change to the folder to which you installed Apache, type
-    the command <code>apache</code>, and read the error message. Then
+    the command <code>httpd.exe</code>, and read the error message. Then
     change to the logs folder, and review the <code>error.log</code>
     file for configuration mistakes. If you accepted the defaults when
     you installed Apache, the commands would be:</p>
 
     <example>
       c: <br />
-      cd "\Program Files\Apache Group\Apache2\bin" <br />
-      httpd
+      cd "\Program Files\Apache Software Foundation\Apache2.3\bin" <br />
+      httpd.exe
     </example>
 
     <p>Then wait for Apache to stop, or press Control-C. Then enter the
@@ -602,20 +603,20 @@
       a particular configuration file:</p>
 
       <example>
-        httpd -f "c:\my server files\anotherconfig.conf"
+        httpd.exe -f "c:\my server files\anotherconfig.conf"
       </example>
 
       <p>or</p>
 
       <example>
-        httpd -f files\anotherconfig.conf
+        httpd.exe -f files\anotherconfig.conf
       </example></li>
 
       <li><p><code>-n</code> specifies the installed Apache service
       whose configuration file is to be used:</p>
 
       <example>
-        httpd -n "MyServiceName"
+        httpd.exe -n "MyServiceName"
       </example>
       </li>
     </ul>
@@ -651,7 +652,7 @@
 
       <li>The server root compiled into the server. This is <code>
       /apache</code> by default, you can verify it by using <code>
-      apache -V</code> and looking for a value labelled as
+      httpd.exe -V</code> and looking for a value labelled as
       <code>HTTPD_ROOT</code>.</li>
     </ol>
 
@@ -664,7 +665,7 @@
     </p>
 
     <example>
-      HKEY_LOCAL_MACHINE\SOFTWARE\Apache Group\Apache\2.0.43
+      HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Apache\2.3.2
     </example>
 
     <p>Correspondingly, if you chose to install Apache for the current
@@ -673,7 +674,7 @@
     logged on:</p>
 
     <example>
-      HKEY_CURRENT_USER\SOFTWARE\Apache Group\Apache\2.0.43
+      HKEY_CURRENT_USER\SOFTWARE\Apache Software Foundation\Apache\2.3.2
     </example>
 
     <p>This key is compiled into the server and can enable you to test
@@ -715,8 +716,8 @@
       http://localhost/
     </example>
 
-    <p>Apache should respond with a welcome page and a link to the
-    Apache manual. If nothing happens or you get an error, look in the
+    <p>Apache should respond with a welcome page and you should see
+    "It Works!". If nothing happens or you get an error, look in the
     <code>error.log</code> file in the <code>logs</code> subdirectory.
     If your host is not connected to the net, or if you have serious
     problems with your DNS (Domain Name Service) configuration, you
@@ -728,9 +729,9 @@
 
     <p>If you happen to be running Apache on an alternate port, you
     need to explicitly put that in the URL:</p>
-   
+
     <example>
-       http://127.0.0.1:8080/
+      http://127.0.0.1:8080/
     </example>
 
     <p>Once your basic installation is working, you should configure it

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

Modified: httpd/sandbox/amsterdam/d/docs/manual/programs/ab.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/ab.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/ab.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/ab.html.en Mon Apr  7 09:28:58 2008
@@ -195,6 +195,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/ab.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/ab.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/programs/ab.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/ab.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/ab.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/ab.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -196,6 +196,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/ab.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/ab.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/programs/apachectl.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/apachectl.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/apachectl.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/apachectl.html.en Mon Apr  7 09:28:58 2008
@@ -153,6 +153,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/apachectl.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/apachectl.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/programs/apachectl.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/apachectl.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/apachectl.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/apachectl.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -139,6 +139,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/apachectl.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/apachectl.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/programs/apxs.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/apxs.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/apxs.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/apxs.html.en Mon Apr  7 09:28:58 2008
@@ -324,6 +324,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/apxs.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/apxs.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/programs/apxs.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/apxs.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/apxs.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/apxs.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -319,6 +319,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/apxs.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/apxs.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/programs/configure.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/configure.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/configure.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/configure.html.en Mon Apr  7 09:28:58 2008
@@ -689,14 +689,18 @@
           </code></p></div>
           <p>will compile most modules and build them as DSO modules.
             </p>
-	  <p><em><strong>Caveat: </strong></em><code> --enable-mods-shared=all </code> does not
-		actually build all modules. To build all modules then, one might use:
-	<div class="example"><p><code>./configure \ <br />
-		--with-ldap \ <br />
-		--enable-mods-shared="all ssl ldap cache proxy authn_alias mem_cache file_cache authnz_ldap charset_lite dav_lock disk_cache" </code></p></div>
-	  </p>
+          <p><strong>Caveat:</strong>
+          <code>--enable-mods-shared=all</code> does not actually build all
+          modules. To build all modules then, one might use:</p>
+          <div class="example"><p><code>
+            ./configure \<br />
+            <span class="indent">
+                --with-ldap \<br />
+                --enable-mods-shared="all ssl ldap cache proxy authn_alias mem_cache file_cache authnz_ldap charset_lite dav_lock disk_cache"
+            </span>
+          </code></p></div>
         </dd>
-                    
+
         <dt><code>--enable-modules=<var>MODULE-LIST</var></code></dt>
         <dd>This option behaves similar to <code>--enable-mods-shared</code>, 
           but will link the given modules statically. This mean, these modules
@@ -938,6 +942,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/configure.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/configure.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/programs/configure.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/configure.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/configure.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/configure.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -925,6 +925,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/configure.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/configure.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/programs/configure.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/configure.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/configure.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/configure.xml Mon Apr  7 09:28:58 2008
@@ -695,14 +695,18 @@
           <p>will compile most modules and build them as DSO modules.
             <!-- See <a href="../install/enabledmodules.html">Overview of
               enabled modules</a> for further information. --></p>
-	  <p><em><strong>Caveat: </strong></em><code> --enable-mods-shared=all </code> does not
-		actually build all modules. To build all modules then, one might use:
-	<example>./configure \ <br />
-		--with-ldap \ <br />
-		--enable-mods-shared="all ssl ldap cache proxy authn_alias mem_cache file_cache authnz_ldap charset_lite dav_lock disk_cache" </example>
-	  </p>
+          <p><strong>Caveat:</strong>
+          <code>--enable-mods-shared=all</code> does not actually build all
+          modules. To build all modules then, one might use:</p>
+          <example>
+            ./configure \<br />
+            <indent>
+                --with-ldap \<br />
+                --enable-mods-shared="all ssl ldap cache proxy authn_alias mem_cache file_cache authnz_ldap charset_lite dav_lock disk_cache"
+            </indent>
+          </example>
         </dd>
-                    
+
         <dt><code>--enable-modules=<var>MODULE-LIST</var></code></dt>
         <dd>This option behaves similar to <code>--enable-mods-shared</code>, 
           but will link the given modules statically. This mean, these modules

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

Modified: httpd/sandbox/amsterdam/d/docs/manual/programs/dbmmanage.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/dbmmanage.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/dbmmanage.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/dbmmanage.html.en Mon Apr  7 09:28:58 2008
@@ -186,6 +186,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/dbmmanage.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/dbmmanage.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/programs/dbmmanage.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/dbmmanage.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/dbmmanage.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/dbmmanage.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -167,6 +167,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/dbmmanage.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/dbmmanage.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/programs/htcacheclean.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/htcacheclean.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/htcacheclean.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/htcacheclean.html.en Mon Apr  7 09:28:58 2008
@@ -115,6 +115,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/htcacheclean.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/htcacheclean.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/programs/htcacheclean.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/htcacheclean.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/htcacheclean.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/htcacheclean.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -108,6 +108,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/htcacheclean.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/htcacheclean.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/programs/htdbm.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/htdbm.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/htdbm.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/htdbm.html.en Mon Apr  7 09:28:58 2008
@@ -276,6 +276,6 @@
 <div class="bottomlang">
 <p><span>Available Languages: </span><a href="../en/programs/htdbm.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/programs/htdigest.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/htdigest.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/htdigest.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/htdigest.html.en Mon Apr  7 09:28:58 2008
@@ -73,6 +73,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/htdigest.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/htdigest.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/programs/htdigest.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/htdigest.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/htdigest.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/htdigest.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -70,6 +70,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/htdigest.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/htdigest.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/programs/htpasswd.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/htpasswd.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/htpasswd.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/htpasswd.html.en Mon Apr  7 09:28:58 2008
@@ -222,6 +222,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/htpasswd.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/htpasswd.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/programs/htpasswd.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/htpasswd.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/htpasswd.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/htpasswd.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -212,6 +212,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/htpasswd.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/htpasswd.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/programs/httpd.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/httpd.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/httpd.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/httpd.html.en Mon Apr  7 09:28:58 2008
@@ -191,6 +191,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/httpd.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/httpd.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/programs/httpd.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/httpd.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/httpd.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/httpd.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -183,6 +183,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/httpd.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/httpd.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/programs/httxt2dbm.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/httxt2dbm.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/httxt2dbm.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/httxt2dbm.html.en Mon Apr  7 09:28:58 2008
@@ -77,6 +77,6 @@
 <div class="bottomlang">
 <p><span>Available Languages: </span><a href="../en/programs/httxt2dbm.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/programs/index.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/index.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/index.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/index.html.en Mon Apr  7 09:28:58 2008
@@ -105,6 +105,6 @@
 <a href="../es/programs/" hreflang="es" rel="alternate" title="Español">&nbsp;es&nbsp;</a> |
 <a href="../ko/programs/" 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/programs/index.html.es
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/index.html.es?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/index.html.es (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/index.html.es Mon Apr  7 09:28:58 2008
@@ -95,6 +95,6 @@
 <a href="../es/programs/" title="Español">&nbsp;es&nbsp;</a> |
 <a href="../ko/programs/" 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/programs/index.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/index.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/index.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/index.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -91,6 +91,6 @@
 <a href="../es/programs/" hreflang="es" rel="alternate" title="Espa&#241;ol">&nbsp;es&nbsp;</a> |
 <a href="../ko/programs/" 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/programs/logresolve.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/logresolve.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/logresolve.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/logresolve.html.en Mon Apr  7 09:28:58 2008
@@ -67,6 +67,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/logresolve.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/logresolve.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/programs/logresolve.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/logresolve.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/logresolve.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/logresolve.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -64,6 +64,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/logresolve.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/logresolve.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/programs/other.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/other.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/other.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/other.html.en Mon Apr  7 09:28:58 2008
@@ -57,6 +57,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/other.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/other.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/programs/other.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/other.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/other.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/other.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -54,6 +54,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/other.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/other.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/programs/rotatelogs.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.html.en Mon Apr  7 09:28:58 2008
@@ -23,36 +23,12 @@
 </div>
 
      <p><code>rotatelogs</code> is a simple program for use in
-     conjunction with Apache's piped logfile feature.  For example:</p>
-
-<div class="example"><p><code>
-     CustomLog "|bin/rotatelogs /var/logs/logfile 86400" common
-</code></p></div>
-	 
-     <p>This creates the files /var/logs/logfile.nnnn where nnnn  is
-     the system time at which the log nominally starts (this time
-     will always be a multiple of the rotation time, so  you  can
-     synchronize cron scripts with it).  At the end of each rotation
-     time (here after 24 hours) a new log is started.</p>
-
-<div class="example"><p><code>
-     CustomLog "|bin/rotatelogs /var/logs/logfile 5M" common
-</code></p></div>
-
-     <p>This configuration will rotate the logfile whenever it reaches
-     a size of 5 megabytes.</p>
-
-<div class="example"><p><code>
-     ErrorLog "|bin/rotatelogs /var/logs/errorlog.%Y-%m-%d-%H_%M_%S 5M"
-</code></p></div>
-     <p>This configuration will rotate the error logfile whenever it
-     reaches a size of 5 megabytes, and the suffix to the logfile name
-     will be created of the form
-     <code>errorlog.YYYY-mm-dd-HH_MM_SS</code>.</p>
- 
+     conjunction with Apache's piped logfile feature.  It supports
+     rotation based on a time interval or maximum size of the log.</p>
 </div>
 <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#synopsis">Synopsis</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#options">Options</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#examples">Examples</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#portability">Portability</a></li>
 </ul></div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -61,9 +37,10 @@
 
      <p><code><strong>rotatelogs</strong>
      [ -<strong>l</strong> ]
+     [ -<strong>f</strong> ]
      <var>logfile</var>
-     [ <var>rotationtime</var> [ <var>offset</var> ]] |
-     [ <var>filesize</var>M ]</code></p>
+     <var>rotationtime</var>|<var>filesize</var>M 
+     [ <var>offset</var> ]</code></p>
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="options" id="options">Options</a></h2>
@@ -72,8 +49,19 @@
 
 <dt><code>-l</code></dt>
 <dd>Causes the use of local time rather than GMT as the base for the
-interval. Note that using <code>-l</code> in an environment which changes the
-GMT offset (such as for BST or DST) can lead to unpredictable results!</dd>
+interval or for <code>strftime(3)</code> formatting with size-based 
+rotation.  Note that using <code>-l</code> in an environment which
+changes the GMT offset (such as for BST or DST) can lead to unpredictable
+results!</dd>
+
+<dt><code>-f</code></dt>
+<dd>Causes the logfile to be opened immediately, as soon as
+<code>rotatelogs</code> starts, instead of waiting for the
+first logfile entry to be read (for non-busy sites, there may be
+a substantial delay between when the server is started
+and when the first request is handled, meaning that the
+associated logfile does not "exist" until then, which
+causes problems from some automated logging tools)</dd>
 
 <dt><code><var>logfile</var></code></dt>
 
@@ -82,26 +70,73 @@
 <code>strftime(3)</code>.  Otherwise, the suffix
 <var>.nnnnnnnnnn</var> is automatically added and is the time in
 seconds.  Both formats compute the start time from the beginning of
-the current period.</dd>
+the current period.  For example, if a rotation time of 86400 is 
+specified, the hour, minute, and second fields created from the
+<code>strftime(3)</code> format will all be zero, referring to the
+beginning of the current 24-hour period (midnight).</dd>
 
 <dt><code><var>rotationtime</var></code></dt>
 
-<dd>The time between log file rotations in seconds.</dd>
+<dd>The time between log file rotations in seconds.  The rotation
+occurs at the beginning of this interval.  For example, if the
+rotation time is 3600, the log file will be rotated at the beginning
+of every hour; if the rotation time is 86400, the log file will be
+rotated every night at midnight.  (If no data is logged during an
+interval, no file will be created.)</dd>
+
+<dt><code><var>filesize</var>M</code></dt>
+
+<dd>The maximum file size in megabytes followed by the letter
+<code>M</code> to specify size rather than time.</dd>
 
 <dt><code><var>offset</var></code></dt>
 
 <dd>The number of minutes offset from UTC.  If omitted, zero is
 assumed and UTC is used.  For example, to use local time in the zone
-UTC -5 hours, specify a value of <code>-300</code> for this argument.</dd>
-
-<dt><code><var>filesize</var>M</code></dt>
+UTC -5 hours, specify a value of <code>-300</code> for this argument.
+In most cases, <code>-l</code> should be used instead of specifying
+an offset.</dd>
 
-<dd>The maximum file size in megabytes followed by the letter
-<code>M</code> to specify size rather than time.  Use this parameter
-in place of both rotationtime and offset.</dd>
 </dl>
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
+<h2><a name="examples" id="examples">Examples</a></h2>
+
+<div class="example"><p><code>
+     CustomLog "|bin/rotatelogs /var/logs/logfile 86400" common
+</code></p></div>
+	 
+     <p>This creates the files /var/logs/logfile.nnnn where nnnn  is
+     the system time at which the log nominally starts (this time
+     will always be a multiple of the rotation time, so  you  can
+     synchronize cron scripts with it).  At the end of each rotation
+     time (here after 24 hours) a new log is started.</p>
+
+<div class="example"><p><code>
+     CustomLog "|bin/rotatelogs -l /var/logs/logfile.%Y.%m.%d 86400" common
+</code></p></div>
+	 
+     <p>This creates the files /var/logs/logfile.yyyy.mm.dd where
+     yyyy is the year, mm is the month, and dd is the day of the month.
+     Logging will switch to a new file every day at midnight, local time.</p>
+
+<div class="example"><p><code>
+     CustomLog "|bin/rotatelogs /var/logs/logfile 5M" common
+</code></p></div>
+
+     <p>This configuration will rotate the logfile whenever it reaches
+     a size of 5 megabytes.</p>
+
+<div class="example"><p><code>
+     ErrorLog "|bin/rotatelogs /var/logs/errorlog.%Y-%m-%d-%H_%M_%S 5M"
+</code></p></div>
+     <p>This configuration will rotate the error logfile whenever it
+     reaches a size of 5 megabytes, and the suffix to the logfile name
+     will be created of the form
+     <code>errorlog.YYYY-mm-dd-HH_MM_SS</code>.</p>
+ 
+</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
 <h2><a name="portability" id="portability">Portability</a></h2>
 
 <p>The following logfile format string substitutions should be
@@ -141,6 +176,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/rotatelogs.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/rotatelogs.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/programs/rotatelogs.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -23,6 +23,8 @@
 <p><span>가능한 언어: </span><a href="../en/programs/rotatelogs.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/rotatelogs.html" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">이 문서는 최신판 번역이 아닙니다.
+            최근에 변경된 내용은 영어 문서를 참고하세요.</div>
 
      <p><code>rotatelogs</code>는 아파치의 파이프 로그파일 기능을
      위한 간단한 프로그램이다. 예를 들어:</p>
@@ -138,6 +140,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/rotatelogs.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/rotatelogs.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/programs/rotatelogs.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml Mon Apr  7 09:28:58 2008
@@ -27,42 +27,18 @@
 
 <summary>
      <p><code>rotatelogs</code> is a simple program for use in
-     conjunction with Apache's piped logfile feature.  For example:</p>
-
-<example>
-     CustomLog "|bin/rotatelogs /var/logs/logfile 86400" common
-</example>
-	 
-     <p>This creates the files /var/logs/logfile.nnnn where nnnn  is
-     the system time at which the log nominally starts (this time
-     will always be a multiple of the rotation time, so  you  can
-     synchronize cron scripts with it).  At the end of each rotation
-     time (here after 24 hours) a new log is started.</p>
-
-<example>
-     CustomLog "|bin/rotatelogs /var/logs/logfile 5M" common
-</example>
-
-     <p>This configuration will rotate the logfile whenever it reaches
-     a size of 5 megabytes.</p>
-
-<example>
-     ErrorLog "|bin/rotatelogs /var/logs/errorlog.%Y-%m-%d-%H_%M_%S 5M"
-</example>
-     <p>This configuration will rotate the error logfile whenever it
-     reaches a size of 5 megabytes, and the suffix to the logfile name
-     will be created of the form
-     <code>errorlog.YYYY-mm-dd-HH_MM_SS</code>.</p>
- 
+     conjunction with Apache's piped logfile feature.  It supports
+     rotation based on a time interval or maximum size of the log.</p>
 </summary>
 
 <section id="synopsis"><title>Synopsis</title>
 
      <p><code><strong>rotatelogs</strong>
      [ -<strong>l</strong> ]
+     [ -<strong>f</strong> ]
      <var>logfile</var>
-     [ <var>rotationtime</var> [ <var>offset</var> ]] |
-     [ <var>filesize</var>M ]</code></p>
+     <var>rotationtime</var>|<var>filesize</var>M 
+     [ <var>offset</var> ]</code></p>
 </section>
 
 <section id="options"><title>Options</title>
@@ -71,8 +47,19 @@
 
 <dt><code>-l</code></dt>
 <dd>Causes the use of local time rather than GMT as the base for the
-interval. Note that using <code>-l</code> in an environment which changes the
-GMT offset (such as for BST or DST) can lead to unpredictable results!</dd>
+interval or for <code>strftime(3)</code> formatting with size-based 
+rotation.  Note that using <code>-l</code> in an environment which
+changes the GMT offset (such as for BST or DST) can lead to unpredictable
+results!</dd>
+
+<dt><code>-f</code></dt>
+<dd>Causes the logfile to be opened immediately, as soon as
+<code>rotatelogs</code> starts, instead of waiting for the
+first logfile entry to be read (for non-busy sites, there may be
+a substantial delay between when the server is started
+and when the first request is handled, meaning that the
+associated logfile does not "exist" until then, which
+causes problems from some automated logging tools)</dd>
 
 <dt><code><var>logfile</var></code></dt>
 
@@ -81,24 +68,71 @@
 <code>strftime(3)</code>.  Otherwise, the suffix
 <var>.nnnnnnnnnn</var> is automatically added and is the time in
 seconds.  Both formats compute the start time from the beginning of
-the current period.</dd>
+the current period.  For example, if a rotation time of 86400 is 
+specified, the hour, minute, and second fields created from the
+<code>strftime(3)</code> format will all be zero, referring to the
+beginning of the current 24-hour period (midnight).</dd>
 
 <dt><code><var>rotationtime</var></code></dt>
 
-<dd>The time between log file rotations in seconds.</dd>
+<dd>The time between log file rotations in seconds.  The rotation
+occurs at the beginning of this interval.  For example, if the
+rotation time is 3600, the log file will be rotated at the beginning
+of every hour; if the rotation time is 86400, the log file will be
+rotated every night at midnight.  (If no data is logged during an
+interval, no file will be created.)</dd>
+
+<dt><code><var>filesize</var>M</code></dt>
+
+<dd>The maximum file size in megabytes followed by the letter
+<code>M</code> to specify size rather than time.</dd>
 
 <dt><code><var>offset</var></code></dt>
 
 <dd>The number of minutes offset from UTC.  If omitted, zero is
 assumed and UTC is used.  For example, to use local time in the zone
-UTC -5 hours, specify a value of <code>-300</code> for this argument.</dd>
-
-<dt><code><var>filesize</var>M</code></dt>
+UTC -5 hours, specify a value of <code>-300</code> for this argument.
+In most cases, <code>-l</code> should be used instead of specifying
+an offset.</dd>
 
-<dd>The maximum file size in megabytes followed by the letter
-<code>M</code> to specify size rather than time.  Use this parameter
-in place of both rotationtime and offset.</dd>
 </dl>
+</section>
+
+<section id="examples"><title>Examples</title>
+
+<example>
+     CustomLog "|bin/rotatelogs /var/logs/logfile 86400" common
+</example>
+	 
+     <p>This creates the files /var/logs/logfile.nnnn where nnnn  is
+     the system time at which the log nominally starts (this time
+     will always be a multiple of the rotation time, so  you  can
+     synchronize cron scripts with it).  At the end of each rotation
+     time (here after 24 hours) a new log is started.</p>
+
+<example>
+     CustomLog "|bin/rotatelogs -l /var/logs/logfile.%Y.%m.%d 86400" common
+</example>
+	 
+     <p>This creates the files /var/logs/logfile.yyyy.mm.dd where
+     yyyy is the year, mm is the month, and dd is the day of the month.
+     Logging will switch to a new file every day at midnight, local time.</p>
+
+<example>
+     CustomLog "|bin/rotatelogs /var/logs/logfile 5M" common
+</example>
+
+     <p>This configuration will rotate the logfile whenever it reaches
+     a size of 5 megabytes.</p>
+
+<example>
+     ErrorLog "|bin/rotatelogs /var/logs/errorlog.%Y-%m-%d-%H_%M_%S 5M"
+</example>
+     <p>This configuration will rotate the error logfile whenever it
+     reaches a size of 5 megabytes, and the suffix to the logfile name
+     will be created of the form
+     <code>errorlog.YYYY-mm-dd-HH_MM_SS</code>.</p>
+ 
 </section>
 
 <section id="portability"><title>Portability</title>

Modified: httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml.ko
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml.ko?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml.ko [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.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: 420993 -->
+<!-- English Revision: 420993:632355 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml.meta
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml.meta?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml.meta (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/rotatelogs.xml.meta Mon Apr  7 09:28:58 2008
@@ -7,6 +7,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>ko</variant>
+    <variant outdated="yes">ko</variant>
   </variants>
 </metafile>

Modified: httpd/sandbox/amsterdam/d/docs/manual/programs/suexec.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/suexec.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/suexec.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/suexec.html.en Mon Apr  7 09:28:58 2008
@@ -56,6 +56,6 @@
 <p><span>Available Languages: </span><a href="../en/programs/suexec.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/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/programs/suexec.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/programs/suexec.html.ko.euc-kr?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/programs/suexec.html.ko.euc-kr [euc-kr] (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/programs/suexec.html.ko.euc-kr [euc-kr] Mon Apr  7 09:28:58 2008
@@ -59,6 +59,6 @@
 <p><span>가능한 언어: </span><a href="../en/programs/suexec.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/programs/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/rewrite/index.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/rewrite/index.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/rewrite/index.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/rewrite/index.html.en Mon Apr  7 09:28:58 2008
@@ -59,7 +59,8 @@
       <p>This module operates on the full URLs (including the
       path-info part) both in per-server context
       (<code>httpd.conf</code>) and per-directory context
-      (<code>.htaccess</code>) and can even generate query-string
+      (<code>.htaccess</code> files and <code>&lt;Directory&gt;</code>
+      blocks) and can even generate query-string
       parts on result. The rewritten result can lead to internal
       sub-processing, external request redirection or even to an
       internal proxy throughput.</p>
@@ -69,9 +70,8 @@
       entire module in just one day.</p>
 
 </div>
-<div id="quickview"><h3>See also</h3><ul class="seealso"><li><a href="../mod/mod_rewrite.html">mod_rewrite reference
-documentation</a></li><li><a href="rewrite_intro.html">Introduction</a></li><li><a href="rewrite_tech.html">Technical details</a></li><li><a href="rewrite_guide.html">Rewrite Guide - useful examples</a></li><li><a href="rewrite_guide_advanced.html">Advanced Rewrite Guide -
-advanced useful examples</a></li></ul></div>
+<div id="quickview"><h3>See also</h3><ul class="seealso"><li><a href="../urlmapping.html">Mapping URLs to the Filesystem</a></li><li><a href="http://wiki.apache.org/httpd/Rewrite">mod_rewrite
+wiki</a></li><li><a href="../glossary.html">Glossary</a></li></ul></div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="documentation" id="documentation">Documentation</a></h2>
@@ -79,16 +79,16 @@
 <li><a href="../mod/mod_rewrite.html">mod_rewrite reference
 documentation</a></li>
 <li><a href="rewrite_intro.html">Introduction</a></li>
+<li><a href="rewrite_flags.html">Flags</a></li>
 <li><a href="rewrite_tech.html">Technical details</a></li>
 <li><a href="rewrite_guide.html">Rewrite Guide - useful examples</a></li>
 <li><a href="rewrite_guide_advanced.html">Advanced Rewrite Guide - more
 useful examples</a></li>
-<li><a href="../glossary.html">Glossary</a></li>
 </ul>
 </div></div>
 <div class="bottomlang">
 <p><span>Available Languages: </span><a href="../en/rewrite/" 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/rewrite/index.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/rewrite/index.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/rewrite/index.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/rewrite/index.xml Mon Apr  7 09:28:58 2008
@@ -64,7 +64,8 @@
       <p>This module operates on the full URLs (including the
       path-info part) both in per-server context
       (<code>httpd.conf</code>) and per-directory context
-      (<code>.htaccess</code>) and can even generate query-string
+      (<code>.htaccess</code> files and <code>&lt;Directory&gt;</code>
+      blocks) and can even generate query-string
       parts on result. The rewritten result can lead to internal
       sub-processing, external request redirection or even to an
       internal proxy throughput.</p>
@@ -75,24 +76,21 @@
 
 </summary>
 
-<seealso><a href="../mod/mod_rewrite.html">mod_rewrite reference
-documentation</a></seealso>
-<seealso><a href="rewrite_intro.html">Introduction</a></seealso>
-<seealso><a href="rewrite_tech.html">Technical details</a></seealso>
-<seealso><a href="rewrite_guide.html">Rewrite Guide - useful examples</a></seealso>
-<seealso><a href="rewrite_guide_advanced.html">Advanced Rewrite Guide -
-advanced useful examples</a></seealso>
+<seealso><a href="../urlmapping.html">Mapping URLs to the Filesystem</a></seealso>
+<seealso><a href="http://wiki.apache.org/httpd/Rewrite">mod_rewrite
+wiki</a></seealso>
+<seealso><a href="../glossary.html">Glossary</a></seealso>
 
 <section id="documentation"><title>Documentation</title>
 <ul>
 <li><a href="../mod/mod_rewrite.html">mod_rewrite reference
 documentation</a></li>
 <li><a href="rewrite_intro.html">Introduction</a></li>
+<li><a href="rewrite_flags.html">Flags</a></li>
 <li><a href="rewrite_tech.html">Technical details</a></li>
 <li><a href="rewrite_guide.html">Rewrite Guide - useful examples</a></li>
 <li><a href="rewrite_guide_advanced.html">Advanced Rewrite Guide - more
 useful examples</a></li>
-<li><a href="../glossary.html">Glossary</a></li>
 </ul>
 </section>
 

Modified: httpd/sandbox/amsterdam/d/docs/manual/rewrite/rewrite_guide.html.en
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/rewrite/rewrite_guide.html.en?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/rewrite/rewrite_guide.html.en (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/rewrite/rewrite_guide.html.en Mon Apr  7 09:28:58 2008
@@ -14,9 +14,9 @@
 <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>
 <p class="apache">Apache HTTP Server Version 2.3</p>
 <img alt="" src="../images/feather.gif" /></div>
-<div class="up"><a href="./index.html"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
+<div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
 <div id="path">
-<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.3</a></div><div id="page-content"><div id="preamble"><h1>URL Rewriting Guide</h1>
+<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.3</a> &gt; <a href="./">Rewrite</a></div><div id="page-content"><div id="preamble"><h1>URL Rewriting Guide</h1>
 <div class="toplang">
 <p><span>Available Languages: </span><a href="../en/rewrite/rewrite_guide.html" title="English">&nbsp;en&nbsp;</a></p>
 </div>
@@ -50,11 +50,15 @@
 <li><img alt="" src="../images/down.gif" /> <a href="#uservhosts">Virtual User Hosts</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#redirecthome">Redirect Homedirs For Foreigners</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#redirectanchors">Redirecting Anchors</a></li>
-<li><img alt="" src="../images/down.gif" /> <a href="#time">Time-Dependent Rewriting</a></li>
-<li><img alt="" src="../images/down.gif" /> Backward Compatibility for YYYY to XXXX migration</li>
-<li><img alt="" src="../images/down.gif" /> <a href="#content">Content Handling</a></li>
-<li><img alt="" src="../images/down.gif" /> <a href="#access">Access Restriction</a></li>
-<li><img alt="" src="../images/down.gif" /> <a href="#other">Other</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#time-dependent">Time-Dependent Rewriting</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#backward-compatibility">Backward Compatibility for YYYY to XXXX migration</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#old-to-new">From Old to New (intern)</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#old-to-new-extern">From Old to New (extern)</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#static-to-dynamic">From Static to Dynamic</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#blocking-of-robots">Blocking of Robots</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#blocked-inline-images">Blocked Inline-Images</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#proxy-deny">Proxy Deny</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#external-rewriting">External Rewriting Engine</a></li>
 </ul><h3>See also</h3><ul class="seealso"><li><a href="../mod/mod_rewrite.html">Module
 documentation</a></li><li><a href="rewrite_intro.html">mod_rewrite
 introduction</a></li><li><a href="rewrite_guide_advanced.html">Advanced Rewrite Guide - advanced 
@@ -418,7 +422,7 @@
 
     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
-<h2><a name="time" id="time">Time-Dependent Rewriting</a></h2>
+<h2><a name="time-dependent" id="time-dependent">Time-Dependent Rewriting</a></h2>
 
       
 
@@ -459,7 +463,7 @@
 
     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
-<h2>Backward Compatibility for YYYY to XXXX migration</h2>
+<h2><a name="backward-compatibility" id="backward-compatibility">Backward Compatibility for YYYY to XXXX migration</a></h2>
 
       
 
@@ -502,11 +506,7 @@
 
     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
-<h2><a name="content" id="content">Content Handling</a></h2>
-
-    
-
-    <h3>From Old to New (intern)</h3>
+<h2><a name="old-to-new" id="old-to-new">From Old to New (intern)</a></h2>
 
       
 
@@ -535,9 +535,9 @@
         </dd>
       </dl>
 
-    
-
-    <h3>From Old to New (extern)</h3>
+    </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
+<h2><a name="old-to-new-extern" id="old-to-new-extern">From Old to New (extern)</a></h2>
 
       
 
@@ -567,9 +567,9 @@
         </dd>
       </dl>
 
-    
-
-    <h3>From Static to Dynamic</h3>
+    </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
+<h2><a name="static-to-dynamic" id="static-to-dynamic">From Static to Dynamic</a></h2>
 
       
 
@@ -601,14 +601,9 @@
         </dd>
       </dl>
 
-    
-</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+    </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
-<h2><a name="access" id="access">Access Restriction</a></h2>
-
-    
-
-    <h3>Blocking of Robots</h3>
+<h2><a name="blocking-of-robots" id="blocking-of-robots">Blocking of Robots</a></h2>
 
       
 
@@ -644,9 +639,9 @@
         </dd>
       </dl>
 
-    
-
-    <h3>Blocked Inline-Images</h3>
+    </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
+<h2><a name="blocked-inline-images" id="blocked-inline-images">Blocked Inline-Images</a></h2>
 
       
 
@@ -682,9 +677,9 @@
         </dd>
       </dl>
 
-    
-
-    <h3>Proxy Deny</h3>
+    </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
+<h2><a name="proxy-deny" id="proxy-deny">Proxy Deny</a></h2>
 
       
 
@@ -719,15 +714,9 @@
         </dd>
       </dl>
 
-    
-
-  </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+    </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
-<h2><a name="other" id="other">Other</a></h2>
-
-    
-
-    <h3>External Rewriting Engine</h3>
+<h2><a name="external-rewriting" id="external-rewriting">External Rewriting Engine</a></h2>
 
       
 
@@ -779,12 +768,10 @@
         </dd>
       </dl>
 
-    
-
-  </div></div>
+    </div></div>
 <div class="bottomlang">
 <p><span>Available Languages: </span><a href="../en/rewrite/rewrite_guide.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/rewrite/rewrite_guide.xml
URL: http://svn.apache.org/viewvc/httpd/sandbox/amsterdam/d/docs/manual/rewrite/rewrite_guide.xml?rev=645594&r1=645593&r2=645594&view=diff
==============================================================================
--- httpd/sandbox/amsterdam/d/docs/manual/rewrite/rewrite_guide.xml (original)
+++ httpd/sandbox/amsterdam/d/docs/manual/rewrite/rewrite_guide.xml Mon Apr  7 09:28:58 2008
@@ -21,7 +21,7 @@
 -->
 
 <manualpage metafile="rewrite_guide.xml.meta">
-  <parentdocument href="./index.html" />
+  <parentdocument href="./">Rewrite</parentdocument>
 
   <title>URL Rewriting Guide</title>
 
@@ -413,7 +413,7 @@
 
     </section>
 
-    <section id="time">
+    <section id="time-dependent">
 
       <title>Time-Dependent Rewriting</title>
 
@@ -454,7 +454,7 @@
 
     </section>
 
-    <section>
+    <section id="backward-compatibility">
 
       <title>Backward Compatibility for YYYY to XXXX migration</title>
 
@@ -497,11 +497,7 @@
 
     </section>
 
-  <section id="content">
-
-    <title>Content Handling</title>
-
-    <section>
+    <section id="old-to-new">
 
       <title>From Old to New (intern)</title>
 
@@ -532,7 +528,7 @@
 
     </section>
 
-    <section>
+    <section id="old-to-new-extern">
 
       <title>From Old to New (extern)</title>
 
@@ -564,7 +560,7 @@
 
     </section>
 
-    <section>
+    <section id="static-to-dynamic">
 
       <title>From Static to Dynamic</title>
 
@@ -597,13 +593,8 @@
       </dl>
 
     </section>
-</section>
-
-  <section id="access">
-
-    <title>Access Restriction</title>
 
-    <section>
+    <section id="blocking-of-robots">
 
       <title>Blocking of Robots</title>
 
@@ -641,7 +632,7 @@
 
     </section>
 
-    <section>
+    <section id="blocked-inline-images">
 
       <title>Blocked Inline-Images</title>
 
@@ -679,7 +670,7 @@
 
     </section>
 
-    <section>
+    <section id="proxy-deny">
 
       <title>Proxy Deny</title>
 
@@ -716,13 +707,7 @@
 
     </section>
 
-  </section>
-
-  <section id="other">
-
-    <title>Other</title>
-
-    <section>
+    <section id="external-rewriting">
 
       <title>External Rewriting Engine</title>
 
@@ -777,8 +762,6 @@
       </dl>
 
     </section>
-
-  </section>
 
 </manualpage>