summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Galić <igalic@apache.org>2010-12-01 15:25:11 +0000
committerIgor Galić <igalic@apache.org>2010-12-01 15:25:11 +0000
commit8c61b3090ce58b1b9de5b4ef5d85ae3db111983f (patch)
tree6d1cae9c2f0a4c7a7d48ca70978f35c35e3641a0
parent0bbf5d0968a035d6719f826611339fcd342c274d (diff)
downloadhttpd-8c61b3090ce58b1b9de5b4ef5d85ae3db111983f.tar.gz
fixing braino in r1041047, this should now fix pr#50381
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1041050 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/mod/core.html.de294
-rw-r--r--docs/manual/mod/core.xml.de321
-rw-r--r--docs/manual/mod/mod_autoindex.html.ko.euc-kr2
-rw-r--r--docs/manual/mod/mod_cache.html.ja.utf820
-rw-r--r--docs/manual/mod/mod_cache.html.ko.euc-kr28
-rw-r--r--docs/manual/mod/mod_cache_disk.html.ja.utf84
-rw-r--r--docs/manual/mod/mod_cache_disk.html.ko.euc-kr4
-rw-r--r--docs/manual/mod/mod_dir.html.ja.utf82
-rw-r--r--docs/manual/mod/mod_dir.html.ko.euc-kr2
-rw-r--r--docs/manual/mod/mod_dir.html.tr.utf82
-rw-r--r--docs/manual/mod/mod_log_config.html.ko.euc-kr2
-rw-r--r--docs/manual/mod/mod_mime.html.en8
-rw-r--r--docs/manual/mod/mod_mime.xml2
-rw-r--r--docs/manual/mod/mod_mime.xml.ja2
-rw-r--r--docs/manual/mod/mod_proxy.html.ja.utf810
-rw-r--r--docs/manual/mod/mod_speling.html.ko.euc-kr2
-rw-r--r--docs/manual/mod/quickreference.html.de14
17 files changed, 620 insertions, 99 deletions
diff --git a/docs/manual/mod/core.html.de b/docs/manual/mod/core.html.de
index 83e75fe57d..f82add5c41 100644
--- a/docs/manual/mod/core.html.de
+++ b/docs/manual/mod/core.html.de
@@ -122,7 +122,90 @@ Servers</td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+<tr><th><a href="directive-dict.html#Compatibility">Kompatibilitt:</a></th><td>Verfgbar ab Apache httpd 2.1.5.
+Auf Windows ab Apache httpd 2.3.3.</td></tr>
+</table>
+ <p>Diese Directive ermglicht Betriebsystem spezifische
+ Optimierungen fr seinen lauschenden Socket des
+ <code class="directive">Protocol</code> Typs.
+ Die Grundvoraussetzung ist, dass der Kernel nichts an den Socket eines
+ Serverprozesses schickt, solange entweder Daten angelangt sind, oder eine
+ vollstndige HTTP Anfrage gepuffert ist. Lediglich
+ <a href="http://www.freebsd.org/cgi/man.cgi?query=accept_filter&amp;sektion=9">
+ FreeBSDs Accept Filters</a>, Linuxs primitievere
+ <code>TCP_DEFER_ACCEPT</code>, und Windows' optimierte AcceptEx()
+ Funktionen sind derzeit untersttzt..</p>
+
+ <p>Die Verwendung von <code>none</code> als Argument schaltet jegliche accept
+ -Filter fr dieses Protokoll ab.
+ Dies ist ntzlich fr Protokolle, die von einem Server erfordern
+ zuerst Daten zu senden, wie zum Beispiel <code>ftp:</code> oder <code>nntp</code>:</p>
+ <div class="example"><p><code>AcceptFilter nntp none</code></p></div>
+
+ <p>Die voreingestellten Protokollnamen sind <code>https</code> fr
+ Port 443 und <code>http</code> fr stliche andere ports.
+ Um zu spezifizieren, dass ein anderes Protokkoll auf dem lauschenden Port
+ verwendet wird, fgen Sie das <var>Protokoll</var>
+ Argument zur <code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code>
+ Directive hinzu.</p>
+
+ <p>Die voreingestellten Werte sind auf FreeBSD:</p>
+ <div class="example"><p><code>
+ AcceptFilter http httpready <br />
+ AcceptFilter https dataready
+ </code></p></div>
+
+ <p>Der <code>httpready</code> accept-Filter puffert ganze HTTP Anfragen auf
+ Kernelebene. Ist die gesamte Anfrage erhalten, schickt sie der Kernel
+ an den Server. Siehe auch die Handbuchseite
+ <a href="http://www.freebsd.org/cgi/man.cgi?query=accf_http&amp;sektion=9">
+ accf_http(9)</a> fr mehr Details. Da HTTPS Anfragen verschlsselt
+ sind, werden lediglich die <a href="http://www.freebsd.org/cgi/man.cgi?query=accf_data&amp;sektion=9">
+ accf_data(9)</a> Filter eingesetzt.</p>
+
+ <p>Die voreingestellten Werte auf Linux sind:</p>
+ <div class="example"><p><code>
+ AcceptFilter http data <br />
+ AcceptFilter https data
+ </code></p></div>
+
+ <p>Linux's <code>TCP_DEFER_ACCEPT</code> untersttzt kein Puffern von
+ HTTP Anfragen. Jeglicher Werte neben <code>none</code> schalten
+ <code>TCP_DEFER_ACCEPT</code> auf dem lauschenden Port ein. Fr mehr
+ Details, siehe die Linux
+ <a href="http://homepages.cwi.nl/~aeb/linux/man2html/man7/tcp.7.html">
+ tcp(7)</a> Handbuchseite.</p>
+
+ <p>Die voreingestellten Werte sind auf Windows:</p>
+ <div class="example"><p><code>
+ AcceptFilter http data <br />
+ AcceptFilter https data
+ </code></p></div>
+
+ <p>Windows mpm_winnt interpretiert AcceptFilter als Anweisung die AcceptEx()
+ Programmierschnitstelle umzuschalten. Desweiteren untersttzt es keine
+ Pufferung des HTTP Protokolls. Es gibt zwei Werte, welche von der Windows
+ AcceptEx() Programmierschnittstelle Gebrauch machen und welche die Netzwerk
+ Sockets zwischen den einzelnen Verbindungen wieder aufbereiten.
+ <code>data</code> wartet, wie oben dokumentiert, bis Daten bertragen
+ wurden und der initiale Datenpuffer, sowie die Netzwerkendpunkt Adresse
+ durch einen einzigen AcceptEx() Aufruf abgerufen wurden.
+ <code>connect</code> verwendet die AcceptEx() Programmierschnittstelle,
+ ruft ebenfalls die Netzwerkendpunkt Adresse ab, aber hnlich wie
+ <code>none</code>, wartet die <code>connect</code> Option nicht auf die
+ Initiale Databertragung.</p>
+
+ <p>Auf Windows verwendet <code>none</code> accept() anstelle von AcceptEx()
+ und verwertet die Sockets zwischen Verbindungen nicht wieder. Dies ist
+ ntzlich bei Netzwerkadaptern mit mangelhafter Treiber Untersttzung,
+ so wie einige virtuelle Netzwerk Anbieter, wie VPN Driver, oder Spam-, Viren-
+ oder Spyware-Filter.</p>
+
+
+<h3>Siehe auch</h3>
+<ul>
+<li><code class="directive">Protocol</code></li>
+</ul>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="AcceptPathInfo" id="AcceptPathInfo">AcceptPathInfo</a>-<a name="acceptpathinfo" id="acceptpathinfo">Direktive</a></h2>
@@ -668,13 +751,13 @@ nicht auf andere Weise ermitteln kann.</td></tr>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="Define" id="Define">Define</a>-<a name="define" id="define">Direktive</a></h2>
<table class="directive">
-<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Define the existence of a variable</td></tr>
+<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Define des Vorhandenseins einer variable</td></tr>
<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>Define <var>Parametername</var></code></td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
</table>
- <p>Equivalent zum bergeben von <var>Parametername</var> mittels des
+ <p>Equivalent zum bergeben von <var>Parametername</var> mittels des
<code>-D</code> Arguments an <code class="program"><a href="../programs/httpd.html">httpd</a></code>.</p>
<p>Diese Directive kann verwendet werden, um die Nutzung von <code class="directive"><a href="#ifdefine">&lt;IfDefine&gt;</a></code> Sectionen umzuschalten, ohne die
<code>-D</code> Argumentente in etwaigen Start-Skripten ndern
@@ -965,12 +1048,13 @@ Auslieferung zu lesen</td></tr>
<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Verwende die sendfile-Untersttzung des Kernels, um
Dateien an den Client auszuliefern</td></tr>
<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>EnableSendfile On|Off</code></td></tr>
-<tr><th><a href="directive-dict.html#Default">Voreinstellung:</a></th><td><code>EnableSendfile On</code></td></tr>
+<tr><th><a href="directive-dict.html#Default">Voreinstellung:</a></th><td><code>EnableSendfile Off</code></td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration, Virtual Host, Verzeichnis, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">AllowOverride:</a></th><td>FileInfo</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-<tr><th><a href="directive-dict.html#Compatibility">Kompatibilitt:</a></th><td>Verfgbar ab Apache Version 2.0.44</td></tr>
+<tr><th><a href="directive-dict.html#Compatibility">Kompatibilitt:</a></th><td>Verfgbar ab Version 2.0.44. Voreinstellung auf Off
+gendert in der Version 2.3.9</td></tr>
</table>
<p>Die Direktive steuert, ob <code class="program"><a href="../programs/httpd.html">httpd</a></code> die
sendfile-Untersttzung des Kernels verwenden kann, um
@@ -1030,12 +1114,40 @@ Dateien an den Client auszuliefern</td></tr>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="Error" id="Error">Error</a>-<a name="error" id="error">Direktive</a></h2>
<table class="directive">
-<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Abort configuration parsing with a custom error message</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code /></td></tr>
+<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Abbruch der Konfigurationsanalyse mit einer angepassenten
+Fehlermeldung</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>Error <var>Meldung</var></code></td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration, Virtual Host, Verzeichnis, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+<tr><th><a href="directive-dict.html#Compatibility">Kompatibilitt:</a></th><td>Verfgbar ab 2.3.9</td></tr>
+</table>
+ <p>Kann ein Fehler innheralb der Konfiguration erkannt werden, dann
+ kann diese Directive genutzt werden um eine angepasste Fehlermeldung zu
+ generieren und die Konfigurationsanalyse anzuhalten.
+ Typischerweise kann dies verwendet werden, um das Fehlen von erforderlichen
+ Modulen in der Konfiguration zu melden.</p>
+
+ <div class="example"><h3>Beispiel</h3><p><code>
+ # sicherstellen dass mod_include geladen ist<br />
+ &lt;IfModule !include_module&gt;<br />
+ Error mod_include wird von mod_foo verlangt. Laden Sie es mit LoadModule.<br />
+ &lt;/IfModule&gt;<br />
+ <br />
+ # sicherstellen dass genau eines von SSL,NOSSL definiert ist<br />
+ &lt;IfDefine SSL&gt;<br />
+ &lt;IfDefine NOSSL&gt;<br />
+ Error Beide SSL and NOSSL sind defined. Bitte definieren sie nur eines davon.<br />
+ &lt;/IfDefine&gt;<br />
+ &lt;/IfDefine&gt;<br />
+ &lt;IfDefine !SSL&gt;<br />
+ &lt;IfDefine !NOSSL&gt;<br />
+ Error Entweder SSL oder NOSSL muss definiert sein.<br />
+ &lt;/IfDefine&gt;<br />
+ &lt;/IfDefine&gt;<br />
+ </code></p></div>
+
+
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="ErrorDocument" id="ErrorDocument">ErrorDocument</a>-<a name="errordocument" id="errordocument">Direktive</a></h2>
@@ -1209,12 +1321,133 @@ Fehlermeldungen</a></li>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="ErrorLogFormat" id="ErrorLogFormat">ErrorLogFormat</a>-<a name="errorlogformat" id="errorlogformat">Direktive</a></h2>
<table class="directive">
-<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Format specification for error log entries</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code /></td></tr>
+<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Formatspecifikation fr Eintrge des Fehlerprotokolls</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code> ErrorLog [Verbindung|Anfrage] <var>Format</var></code></td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration, Virtual Host</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+<tr><th><a href="directive-dict.html#Compatibility">Kompatibilitt:</a></th><td>Verfgbar ab Apache httpd 2.3.9</td></tr>
+</table>Documentation not yet translated. Please see English version of document.
+ <p><code class="directive">ErrorLogFormat</code> erlaubt das Spezifizieren
+ supplementrer Information, welche zustzlich zur eigentlichen
+ Fehlermeldun mitprotokoliert werden.</p>
+
+ <div class="example"><h3>Einfaches Beispiel</h3><p><code>
+ ErrorLogFormat "[%t] [%l] [pid %P] %F: %E: [client %a] %M"
+ </code></p></div>
+
+ <p>Durch die Angabe des <code>Verbindungs</code> oder <code>Request</code>
+ Paramters an erster Stelle, erffnen Sie die Mglichkeit
+ zustzlicher Formate, die wiederum zustzliche Information
+ protokolieren, wenn die erste Meldung einer Verbindung, oder respektive
+ einer Anfrage protokoliert wird. Diese Zusatzinformation wird lediglich
+ einmal pro Verbindung/Anfrage protokolliert. Wird eine Verbindung oder eine Anfrage
+ verarbeitet, ohne einen Protokolleintrag zu verursachen, so wird auch die
+ Zusatzinformation nicht protokolliert.</p>
+
+ <p>Es kann geschehen, dass einige Format-Zeichenketten Teilpunkte keine
+ Ausgab
+ string item. A <code>-</code> (minus) modifier causes a minus to be logged if the
+ respective item does not produce any output. In once-per-connection/request
+ formats, it is also possible to use the <code>+</code> (plus) modifier. If an
+ item with the plus modifier does not produce any output, the whole line is
+ ommitted.</p>
+
+ <p>A number as modifier can be used to assign a log severity level to a
+ format item. The item will only be logged if the severity of the log
+ message is not higher than the specified log severity level. The number can
+ range from 1 (alert) over 4 (warn) and 7 (debug) to 15 (trace8).</p>
+
+ <p>Some format string items accept additional parameters in braces.</p>
+
+ <table class="bordered"><tr class="header"><th>Format&nbsp;String</th> <th>Description</th></tr>
+<tr><td><code>%%</code></td>
+ <td>Das Prozentzeichen</td></tr>
+<tr class="odd"><td><code>%...a</code></td>
+ <td>Entfernte IP Adresse und Port</td></tr>
+<tr><td><code>%...A</code></td>
+ <td>Lokale IP Adresse und Port</td></tr>
+<tr class="odd"><td><code>%...{name}e</code></td>
+ <td>Umgebungsvariable <code>Name</code> aus der Anfrage</td></tr>
+<tr><td><code>%...E</code></td>
+ <td>APR/OS Fehlerstatuskode und Zeichenkette</td></tr>
+<tr class="odd"><td><code>%...F</code></td>
+ <td>Dateiname der Quelle und Zeilennummer des Protokollaufrufs</td></tr>
+<tr><td><code>%...{name}i</code></td>
+ <td>Aufruf Header <code>Name</code></td></tr>
+<tr class="odd"><td><code>%...k</code></td>
+ <td>Anzahl der keep-alive Anfragen auf dieser Verbindung</td></tr>
+<tr><td><code>%...l</code></td>
+ <td>Loglevel der Meldung</td></tr>
+<tr class="odd"><td><code>%...L</code></td>
+ <td>Log ID der Anfrage</td></tr>
+<tr><td><code>%...{c}L</code></td>
+ <td>Log ID der Verbindung</td></tr>
+<tr class="odd"><td><code>%...{C}L</code></td>
+ <td>Log ID der Verbidung, wenn in einem Verbindungsrahmen verwendent, sonst leer.</td></tr>
+<tr><td><code>%...m</code></td>
+ <td>Name des Moduls, welches die Meldung protokoliert</td></tr>
+<tr class="odd"><td><code>%M</code></td>
+ <td>Die eigentliche Protokollmeldung</td></tr>
+<tr><td><code>%...{name}n</code></td>
+ <td>Request note <code>name</code></td></tr>
+<tr class="odd"><td><code>%...P</code></td>
+ <td>Process ID of current process</td></tr>
+<tr><td><code>%...T</code></td>
+ <td>Thread ID of current thread</td></tr>
+<tr class="odd"><td><code>%...t</code></td>
+ <td>The current time</td></tr>
+<tr><td><code>%...{u}t</code></td>
+ <td>The current time including micro-seconds</td></tr>
+<tr class="odd"><td><code>%...{cu}t</code></td>
+ <td>The current time in compact ISO 8601 format, including
+ micro-seconds</td></tr>
+<tr><td><code>%...v</code></td>
+ <td>The canonical <code class="directive"><a href="#servername">ServerName</a></code>
+ of the current server.</td></tr>
+<tr class="odd"><td><code>%...V</code></td>
+ <td>The server name of the server serving the request according to the
+ <code class="directive"><a href="#usecanonicalname">UseCanonicalName</a></code>
+ setting.</td></tr>
+<tr><td><code>\&nbsp;</code> (backslash space)</td>
+ <td>Non-field delimiting space</td></tr>
+<tr class="odd"><td><code>%&nbsp;</code> (percent space)</td>
+ <td>Field delimiter (no output)</td></tr>
+</table>
+
+ <p>The log ID format <code>%L</code> produces a unique id for a connection
+ or request. This can be used to correlate which log lines belong to the
+ same connection or request, which request happens on which connection.
+ A <code>%L</code> format string is also available in
+ <code class="module"><a href="../mod/mod_log_config.html">mod_log_config</a></code>, to allow to correlate access log entries
+ with error log lines. If <code class="module"><a href="../mod/mod_unique_id.html">mod_unique_id</a></code> is loaded, its
+ unique id will be used as log ID for requests.</p>
+
+ <div class="example"><h3>Example (somewhat similar to default format)</h3><p><code>
+ ErrorLogFormat "[%{u}t] [%-m:%l] [pid %P] %7F: %E: [client\ %a]
+ %M%&nbsp;,\&nbsp;referer\&nbsp;%{Referer}i"
+ </code></p></div>
+
+ <div class="example"><h3>Example (similar to the 2.2.x format)</h3><p><code>
+ ErrorLogFormat "[%t] [%l] %7F: %E: [client\ %a]
+ %M%&nbsp;,\&nbsp;referer\&nbsp;%{Referer}i"
+ </code></p></div>
+
+ <div class="example"><h3>Advanced example with request/connection log IDs</h3><p><code>
+ ErrorLogFormat "[%{uc}t] [%-m:%-l] [R:%L] [C:%{C}L] %7F: %E: %M"<br />
+ ErrorLogFormat request "[%{uc}t] [R:%L] Request %k on C:%{c}L pid:%P tid:%T"<br />
+ ErrorLogFormat request "[%{uc}t] [R:%L] UA:'%+{User-Agent}i'"<br />
+ ErrorLogFormat request "[%{uc}t] [R:%L] Referer:'%+{Referer}i'"<br />
+ ErrorLogFormat connection "[%{uc}t] [C:%{c}L] local\ %a remote\ %A"<br />
+ </code></p></div>
+
+
+<h3>Siehe auch</h3>
+<ul>
+<li><code class="directive"><a href="#errorlog">ErrorLog</a></code></li>
+<li><code class="directive"><a href="#loglevel">LogLevel</a></code></li>
+<li><a href="../logs.html">Apache HTTP Server Log Files</a></li>
+</ul>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="ExtendedStatus" id="ExtendedStatus">ExtendedStatus</a>-<a name="extendedstatus" id="extendedstatus">Direktive</a></h2>
@@ -1225,7 +1458,7 @@ request</td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+</table>Documentation not yet translated. Please see English version of document.
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="FileETag" id="FileETag">FileETag</a>-<a name="fileetag" id="fileetag">Direktive</a></h2>
@@ -1426,7 +1659,7 @@ angegebenen MIME-Content-Type</td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration, Virtual Host</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+</table>Documentation not yet translated. Please see English version of document.
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="HostnameLookups" id="HostnameLookups">HostnameLookups</a>-<a name="hostnamelookups" id="hostnamelookups">Direktive</a></h2>
@@ -1481,7 +1714,7 @@ satisfied by a request at runtime</td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration, Virtual Host, Verzeichnis, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+</table>Documentation not yet translated. Please see English version of document.
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="IfDefine" id="IfDefine">&lt;IfDefine&gt;</a>-<a name="ifdefine" id="ifdefine">Direktive</a></h2>
@@ -1609,7 +1842,7 @@ Server-Konfigurationsdatei ein</td></tr>
<p>Die Direktive erlaubt das Einfgen anderer Konfigurationsdateien
in die Konfigurationsdatei des Servers.</p>
- <p>Shell-typische (<code>fnmatch()</code>) Platzhlaterzeichen knnen
+ <p>Shell-typische (<code>fnmatch()</code>) Platzhalterzeichen knnen
dazu verwendet werden, mehrere Dateien auf einmal in alphabetischer
Reihenfolge einzufgen. Wenn <code class="directive">Include</code>
darber hinaus auf ein Verzeichnis anstatt auf eine Datei zeigt,
@@ -2339,7 +2572,7 @@ or specified mutexes</td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+</table>Documentation not yet translated. Please see English version of document.
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="NameVirtualHost" id="NameVirtualHost">NameVirtualHost</a>-<a name="namevirtualhost" id="namevirtualhost">Direktive</a></h2>
@@ -2573,7 +2806,7 @@ bestimmten Verzeichnis verfgbar sind</td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration, Virtual Host</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+</table>Documentation not yet translated. Please see English version of document.
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="Require" id="Require">Require</a>-<a name="require" id="require">Direktive</a></h2>
@@ -2878,7 +3111,7 @@ of a request or the last 63, assuming the request itself is greater than
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+</table>Documentation not yet translated. Please see English version of document.
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="ServerAdmin" id="ServerAdmin">ServerAdmin</a>-<a name="serveradmin" id="serveradmin">Direktive</a></h2>
@@ -3291,22 +3524,31 @@ bevor er die Anfrage abbricht</td></tr>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="TraceEnable" id="TraceEnable">TraceEnable</a>-<a name="traceenable" id="traceenable">Direktive</a></h2>
<table class="directive">
-<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Determines the behaviour on <code>TRACE</code> requests</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code /></td></tr>
+<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Entscheidet ber das Verhalten bei <code>TRACE</code>
+Anfragen</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>TraceEnable <var>[on|off|extended]</var></code></td></tr>
+<tr><th><a href="directive-dict.html#Default">Voreinstellung:</a></th><td><code>TraceEnable on</code></td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+<tr><th><a href="directive-dict.html#Compatibility">Kompatibilitt:</a></th><td> in Apache HTTP Server 1.3.34, 2.0.55 and later</td></tr>
+</table>Documentation not yet translated. Please see English version of document.
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="UnDefine" id="UnDefine">UnDefine</a>-<a name="undefine" id="undefine">Direktive</a></h2>
<table class="directive">
-<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Undefine the existence of a variable</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code /></td></tr>
+<tr><th><a href="directive-dict.html#Description">Beschreibung:</a></th><td>Hebt die Definition einer Variablen auf</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>UnDefine <var>Parametername</var></code></td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+</table>
+ <p>Hebt die Auswirkungen eines <code class="directive"><a href="#define">Define</a></code>,
+ oder des bergeben eines <code>-D</code> Argument an <code class="program"><a href="../programs/httpd.html">httpd</a></code> wieder auf.</p>
+ <p>Diese Directive kann verwendet werden, um die Nutzung von <code class="directive"><a href="#ifdefine">&lt;IfDefine&gt;</a></code> Sectionen umzuschalten, ohne die
+ <code>-D</code> Argumentente in etwaigen Start-Skripten ndern
+ zu mssen.</p>
+
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="UseCanonicalName" id="UseCanonicalName">UseCanonicalName</a>-<a name="usecanonicalname" id="usecanonicalname">Direktive</a></h2>
@@ -3319,7 +3561,7 @@ ermittelt</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
</table>
- <p>In vielen Situationen muss der Apache eine
+ <p>In vielen Situationen muss der Apache httpd eine
<em>selbstreferenzierende</em> URL -- d.h. eine URL, die auf den selben
Server zurck verweist -- zusammenbauen. Bei <code>UseCanonicalName
On</code> verwendet der Apache den Hostnamen und Port, der in der
@@ -3386,7 +3628,7 @@ ermittelt</td></tr>
<tr><th><a href="directive-dict.html#Context">Kontext:</a></th><td>Serverkonfiguration, Virtual Host, Verzeichnis</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
<tr><th><a href="directive-dict.html#Module">Modul:</a></th><td>core</td></tr>
-</table><p>Documentation not yet translated. Please see English version of document.</p>
+</table>Documentation not yet translated. Please see English version of document.
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="VirtualHost" id="VirtualHost">&lt;VirtualHost&gt;</a>-<a name="virtualhost" id="virtualhost">Direktive</a></h2>
diff --git a/docs/manual/mod/core.xml.de b/docs/manual/mod/core.xml.de
index d861872c1b..bed6f93312 100644
--- a/docs/manual/mod/core.xml.de
+++ b/docs/manual/mod/core.xml.de
@@ -31,7 +31,88 @@ Servers</description>
<name>AcceptFilter</name>
<description>Configures optimizations for a Protocol's Listener Sockets</description>
<contextlist><context>server config</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<compatibility>Verf&uuml;gbar ab Apache httpd 2.1.5.
+Auf Windows ab Apache httpd 2.3.3.</compatibility>
+
+<usage>
+ <p>Diese Directive erm&ouml;glicht Betriebsystem spezifische
+ Optimierungen f&uuml;r seinen lauschenden Socket des
+ <directive>Protocol</directive> Typs.
+ Die Grundvoraussetzung ist, dass der Kernel nichts an den Socket eines
+ Serverprozesses schickt, solange entweder Daten angelangt sind, oder eine
+ vollst&auml;ndige HTTP Anfrage gepuffert ist. Lediglich
+ <a href="http://www.freebsd.org/cgi/man.cgi?query=accept_filter&amp;sektion=9">
+ FreeBSDs Accept Filters</a>, Linuxs primitievere
+ <code>TCP_DEFER_ACCEPT</code>, und Windows' optimierte AcceptEx()
+ Funktionen sind derzeit unterst&uuml;tzt..</p>
+
+ <p>Die Verwendung von <code>none</code> als Argument schaltet jegliche accept
+ -Filter f&uuml;r dieses Protokoll ab.
+ Dies ist n&uuml;tzlich f&uuml;r Protokolle, die von einem Server erfordern
+ zuerst Daten zu senden, wie zum Beispiel <code>ftp:</code> oder <code>nntp</code>:</p>
+ <example>AcceptFilter nntp none</example>
+
+ <p>Die voreingestellten Protokollnamen sind <code>https</code> f&uuml;r
+ Port 443 und <code>http</code> f&uuml;r s&auml;tliche andere ports.
+ Um zu spezifizieren, dass ein anderes Protokkoll auf dem lauschenden Port
+ verwendet wird, f&uuml;gen Sie das <var>Protokoll</var>
+ Argument zur <directive module="mpm_common">Listen</directive>
+ Directive hinzu.</p>
+
+ <p>Die voreingestellten Werte sind auf FreeBSD:</p>
+ <example>
+ AcceptFilter http httpready <br/>
+ AcceptFilter https dataready
+ </example>
+
+ <p>Der <code>httpready</code> accept-Filter puffert ganze HTTP Anfragen auf
+ Kernelebene. Ist die gesamte Anfrage erhalten, schickt sie der Kernel
+ an den Server. Siehe auch die Handbuchseite
+ <a href="http://www.freebsd.org/cgi/man.cgi?query=accf_http&amp;sektion=9">
+ accf_http(9)</a> f&uuml;r mehr Details. Da HTTPS Anfragen verschl&uuml;sselt
+ sind, werden lediglich die <a href="http://www.freebsd.org/cgi/man.cgi?query=accf_data&amp;sektion=9">
+ accf_data(9)</a> Filter eingesetzt.</p>
+
+ <p>Die voreingestellten Werte auf Linux sind:</p>
+ <example>
+ AcceptFilter http data <br/>
+ AcceptFilter https data
+ </example>
+
+ <p>Linux's <code>TCP_DEFER_ACCEPT</code> unterst&uuml;tzt kein Puffern von
+ HTTP Anfragen. Jeglicher Werte neben <code>none</code> schalten
+ <code>TCP_DEFER_ACCEPT</code> auf dem lauschenden Port ein. F&uuml;r mehr
+ Details, siehe die Linux
+ <a href="http://homepages.cwi.nl/~aeb/linux/man2html/man7/tcp.7.html">
+ tcp(7)</a> Handbuchseite.</p>
+
+ <p>Die voreingestellten Werte sind auf Windows:</p>
+ <example>
+ AcceptFilter http data <br/>
+ AcceptFilter https data
+ </example>
+
+ <p>Windows mpm_winnt interpretiert AcceptFilter als Anweisung die AcceptEx()
+ Programmierschnitstelle umzuschalten. Desweiteren unterst&uuml;tzt es keine
+ Pufferung des HTTP Protokolls. Es gibt zwei Werte, welche von der Windows
+ AcceptEx() Programmierschnittstelle Gebrauch machen und welche die Netzwerk
+ Sockets zwischen den einzelnen Verbindungen wieder aufbereiten.
+ <code>data</code> wartet, wie oben dokumentiert, bis Daten &uuml;bertragen
+ wurden und der initiale Datenpuffer, sowie die Netzwerkendpunkt Adresse
+ durch einen einzigen AcceptEx() Aufruf abgerufen wurden.
+ <code>connect</code> verwendet die AcceptEx() Programmierschnittstelle,
+ ruft ebenfalls die Netzwerkendpunkt Adresse ab, aber &auml;hnlich wie
+ <code>none</code>, wartet die <code>connect</code> Option nicht auf die
+ Initiale Data&uml;bertragung.</p>
+
+ <p>Auf Windows verwendet <code>none</code> accept() anstelle von AcceptEx()
+ und verwertet die Sockets zwischen Verbindungen nicht wieder. Dies ist
+ n&uuml;tzlich bei Netzwerkadaptern mit mangelhafter Treiber Unterst&uuml;tzung,
+ so wie einige virtuelle Netzwerk Anbieter, wie VPN Driver, oder Spam-, Viren-
+ oder Spyware-Filter.</p>
+
+</usage>
+<seealso><directive>Protocol</directive></seealso>
</directivesynopsis>
<directivesynopsis>
@@ -596,12 +677,12 @@ nicht auf andere Weise ermitteln kann.</description>
<directivesynopsis>
<name>Define</name>
-<description>Define the existence of a variable</description>
+<description>Define des Vorhandenseins einer variable</description>
<syntax>Define <var>Parametername</var></syntax>
<contextlist><context>server config</context></contextlist>
<usage>
- <p>Equivalent zum &uuml;bergeben von <var>Parametername</var> mittels des
+ <p>Equivalent zum &Uuml;bergeben von <var>Parametername</var> mittels des
<code>-D</code> Arguments an <program>httpd</program>.</p>
<p>Diese Directive kann verwendet werden, um die Nutzung von <directive module="core"
type="section">IfDefine</directive> Sectionen umzuschalten, ohne die
@@ -892,12 +973,13 @@ Auslieferung zu lesen</description>
<description>Verwende die sendfile-Unterst&uuml;tzung des Kernels, um
Dateien an den Client auszuliefern</description>
<syntax>EnableSendfile On|Off</syntax>
-<default>EnableSendfile On</default>
+<default>EnableSendfile Off</default>
<contextlist><context>server config</context><context>virtual host</context>
<context>directory</context><context>.htaccess</context>
</contextlist>
<override>FileInfo</override>
-<compatibility>Verf&uuml;gbar ab Apache Version 2.0.44</compatibility>
+<compatibility>Verf&uuml;gbar ab Version 2.0.44. Voreinstellung auf Off
+ge&auml;ndert in der Version 2.3.9</compatibility>
<usage>
<p>Die Direktive steuert, ob <program>httpd</program> die
@@ -959,9 +1041,40 @@ Dateien an den Client auszuliefern</description>
<directivesynopsis>
<name>Error</name>
-<description>Abort configuration parsing with a custom error message</description>
-<contextlist><context>server config</context><context>virtual host</context><context>directory</context><context>.htaccess</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<description>Abbruch der Konfigurationsanalyse mit einer angepassenten
+Fehlermeldung</description>
+<syntax>Error <var>Meldung</var></syntax>
+<contextlist><context>server config</context><context>virtual host</context>
+<context>directory</context><context>.htaccess</context></contextlist>
+<compatibility>Verf&uuml;gbar ab 2.3.9</compatibility>
+
+<usage>
+ <p>Kann ein Fehler innheralb der Konfiguration erkannt werden, dann
+ kann diese Directive genutzt werden um eine angepasste Fehlermeldung zu
+ generieren und die Konfigurationsanalyse anzuhalten.
+ Typischerweise kann dies verwendet werden, um das Fehlen von erforderlichen
+ Modulen in der Konfiguration zu melden.</p>
+
+ <example><title>Beispiel</title>
+ # sicherstellen dass mod_include geladen ist<br />
+ &lt;IfModule !include_module&gt;<br />
+ Error mod_include wird von mod_foo verlangt. Laden Sie es mit LoadModule.<br />
+ &lt;/IfModule&gt;<br />
+ <br />
+ # sicherstellen dass genau eines von SSL,NOSSL definiert ist<br />
+ &lt;IfDefine SSL&gt;<br />
+ &lt;IfDefine NOSSL&gt;<br />
+ Error Beide SSL and NOSSL sind defined. Bitte definieren sie nur eines davon.<br />
+ &lt;/IfDefine&gt;<br />
+ &lt;/IfDefine&gt;<br />
+ &lt;IfDefine !SSL&gt;<br />
+ &lt;IfDefine !NOSSL&gt;<br />
+ Error Entweder SSL oder NOSSL muss definiert sein.<br />
+ &lt;/IfDefine&gt;<br />
+ &lt;/IfDefine&gt;<br />
+ </example>
+
+</usage>
</directivesynopsis>
<directivesynopsis>
@@ -1137,9 +1250,157 @@ Fehlermeldungen</a></seealso>
<directivesynopsis>
<name>ErrorLogFormat</name>
-<description>Format specification for error log entries</description>
+<description>Formatspecifikation f&uuml;r Eintr&auml;ge des Fehlerprotokolls</description>
+<syntax> ErrorLog [Verbindung|Anfrage] <var>Format</var></syntax>
<contextlist><context>server config</context><context>virtual host</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<compatibility>Verf&uuml;gbar ab Apache httpd 2.3.9</compatibility>
+<usage>Documentation not yet translated. Please see English version of document.</usage>
+
+<usage>
+ <p><directive>ErrorLogFormat</directive> erlaubt das Spezifizieren
+ supplement&auml;rer Information, welche zus&auml;tzlich zur eigentlichen
+ Fehlermeldun mitprotokoliert werden.</p>
+
+ <example><title>Einfaches Beispiel</title>
+ ErrorLogFormat "[%t] [%l] [pid %P] %F: %E: [client %a] %M"
+ </example>
+
+ <p>Durch die Angabe des <code>Verbindungs</code> oder <code>Request</code>
+ Paramters an erster Stelle, er&ouml;ffnen Sie die M&ouml;glichkeit
+ zus&auml;tzlicher Formate, die wiederum zus&auml;tzliche Information
+ protokolieren, wenn die erste Meldung einer Verbindung, oder respektive
+ einer Anfrage protokoliert wird. Diese Zusatzinformation wird lediglich
+ einmal pro Verbindung/Anfrage protokolliert. Wird eine Verbindung oder eine Anfrage
+ verarbeitet, ohne einen Protokolleintrag zu verursachen, so wird auch die
+ Zusatzinformation nicht protokolliert.</p>
+
+ <p>Es kann geschehen, dass einige Format-Zeichenketten Teilpunkte keine
+ Ausgab
+ string item. A <code>-</code> (minus) modifier causes a minus to be logged if the
+ respective item does not produce any output. In once-per-connection/request
+ formats, it is also possible to use the <code>+</code> (plus) modifier. If an
+ item with the plus modifier does not produce any output, the whole line is
+ ommitted.</p>
+
+ <p>A number as modifier can be used to assign a log severity level to a
+ format item. The item will only be logged if the severity of the log
+ message is not higher than the specified log severity level. The number can
+ range from 1 (alert) over 4 (warn) and 7 (debug) to 15 (trace8).</p>
+
+ <p>Some format string items accept additional parameters in braces.</p>
+
+ <table border="1" style="zebra">
+ <columnspec><column width=".2"/><column width=".8"/></columnspec>
+
+ <tr><th>Format&nbsp;String</th> <th>Description</th></tr>
+
+ <tr><td><code>%%</code></td>
+ <td>Das Prozentzeichen</td></tr>
+
+ <tr><td><code>%...a</code></td>
+ <td>Entfernte IP Adresse und Port</td></tr>
+
+ <tr><td><code>%...A</code></td>
+ <td>Lokale IP Adresse und Port</td></tr>
+
+ <tr><td><code>%...{name}e</code></td>
+ <td>Umgebungsvariable <code>Name</code> aus der Anfrage</td></tr>
+
+ <tr><td><code>%...E</code></td>
+ <td>APR/OS Fehlerstatuskode und Zeichenkette</td></tr>
+
+ <tr><td><code>%...F</code></td>
+ <td>Dateiname der Quelle und Zeilennummer des Protokollaufrufs</td></tr>
+
+ <tr><td><code>%...{name}i</code></td>
+ <td>Aufruf Header <code>Name</code></td></tr>
+
+ <tr><td><code>%...k</code></td>
+ <td>Anzahl der keep-alive Anfragen auf dieser Verbindung</td></tr>
+
+ <tr><td><code>%...l</code></td>
+ <td>Loglevel der Meldung</td></tr>
+
+ <tr><td><code>%...L</code></td>
+ <td>Log ID der Anfrage</td></tr>
+
+ <tr><td><code>%...{c}L</code></td>
+ <td>Log ID der Verbindung</td></tr>
+
+ <tr><td><code>%...{C}L</code></td>
+ <td>Log ID der Verbidung, wenn in einem Verbindungsrahmen verwendent, sonst leer.</td></tr>
+
+ <tr><td><code>%...m</code></td>
+ <td>Name des Moduls, welches die Meldung protokoliert</td></tr>
+
+ <tr><td><code>%M</code></td>
+ <td>Die eigentliche Protokollmeldung</td></tr>
+
+ <tr><td><code>%...{name}n</code></td>
+ <td>Request note <code>name</code></td></tr>
+
+ <tr><td><code>%...P</code></td>
+ <td>Process ID of current process</td></tr>
+
+ <tr><td><code>%...T</code></td>
+ <td>Thread ID of current thread</td></tr>
+
+ <tr><td><code>%...t</code></td>
+ <td>The current time</td></tr>
+
+ <tr><td><code>%...{u}t</code></td>
+ <td>The current time including micro-seconds</td></tr>
+
+ <tr><td><code>%...{cu}t</code></td>
+ <td>The current time in compact ISO 8601 format, including
+ micro-seconds</td></tr>
+
+ <tr><td><code>%...v</code></td>
+ <td>The canonical <directive module="core">ServerName</directive>
+ of the current server.</td></tr>
+
+ <tr><td><code>%...V</code></td>
+ <td>The server name of the server serving the request according to the
+ <directive module="core" >UseCanonicalName</directive>
+ setting.</td></tr>
+
+ <tr><td><code>\&nbsp;</code> (backslash space)</td>
+ <td>Non-field delimiting space</td></tr>
+
+ <tr><td><code>%&nbsp;</code> (percent space)</td>
+ <td>Field delimiter (no output)</td></tr>
+ </table>
+
+ <p>The log ID format <code>%L</code> produces a unique id for a connection
+ or request. This can be used to correlate which log lines belong to the
+ same connection or request, which request happens on which connection.
+ A <code>%L</code> format string is also available in
+ <module>mod_log_config</module>, to allow to correlate access log entries
+ with error log lines. If <module>mod_unique_id</module> is loaded, its
+ unique id will be used as log ID for requests.</p>
+
+ <example><title>Example (somewhat similar to default format)</title>
+ ErrorLogFormat "[%{u}t] [%-m:%l] [pid %P] %7F: %E: [client\ %a]
+ %M%&nbsp;,\&nbsp;referer\&nbsp;%{Referer}i"
+ </example>
+
+ <example><title>Example (similar to the 2.2.x format)</title>
+ ErrorLogFormat "[%t] [%l] %7F: %E: [client\ %a]
+ %M%&nbsp;,\&nbsp;referer\&nbsp;%{Referer}i"
+ </example>
+
+ <example><title>Advanced example with request/connection log IDs</title>
+ ErrorLogFormat "[%{uc}t] [%-m:%-l] [R:%L] [C:%{C}L] %7F: %E: %M"<br/>
+ ErrorLogFormat request "[%{uc}t] [R:%L] Request %k on C:%{c}L pid:%P tid:%T"<br/>
+ ErrorLogFormat request "[%{uc}t] [R:%L] UA:'%+{User-Agent}i'"<br/>
+ ErrorLogFormat request "[%{uc}t] [R:%L] Referer:'%+{Referer}i'"<br/>
+ ErrorLogFormat connection "[%{uc}t] [C:%{c}L] local\ %a remote\ %A"<br/>
+ </example>
+
+</usage>
+<seealso><directive module="core">ErrorLog</directive></seealso>
+<seealso><directive module="core">LogLevel</directive></seealso>
+<seealso><a href="../logs.html">Apache HTTP Server Log Files</a></seealso>
</directivesynopsis>
<directivesynopsis>
@@ -1147,7 +1408,7 @@ Fehlermeldungen</a></seealso>
<description>Keep track of extended status information for each
request</description>
<contextlist><context>server config</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<usage>Documentation not yet translated. Please see English version of document.</usage>
</directivesynopsis>
<directivesynopsis>
@@ -1351,7 +1612,7 @@ angegebenen MIME-Content-Type</description>
<name>GprofDir</name>
<description>Directory to write gmon.out profiling data to. </description>
<contextlist><context>server config</context><context>virtual host</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<usage>Documentation not yet translated. Please see English version of document.</usage>
</directivesynopsis>
<directivesynopsis>
@@ -1404,7 +1665,7 @@ angegebenen MIME-Content-Type</description>
<description>Contains directives that apply only if a condition is
satisfied by a request at runtime</description>
<contextlist><context>server config</context><context>virtual host</context><context>directory</context><context>.htaccess</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<usage>Documentation not yet translated. Please see English version of document.</usage>
</directivesynopsis>
<directivesynopsis type="section">
@@ -1539,7 +1800,7 @@ Server-Konfigurationsdatei ein</description>
<p>Die Direktive erlaubt das Einf&uuml;gen anderer Konfigurationsdateien
in die Konfigurationsdatei des Servers.</p>
- <p>Shell-typische (<code>fnmatch()</code>) Platzhlaterzeichen k&ouml;nnen
+ <p>Shell-typische (<code>fnmatch()</code>) Platzhalterzeichen k&ouml;nnen
dazu verwendet werden, mehrere Dateien auf einmal in alphabetischer
Reihenfolge einzuf&uuml;gen. Wenn <directive>Include</directive>
dar&uuml;ber hinaus auf ein Verzeichnis anstatt auf eine Datei zeigt,
@@ -2274,7 +2535,7 @@ zul&auml;ssig sind</description>
<description>Configures mutex mechanism and lock file directory for all
or specified mutexes</description>
<contextlist><context>server config</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<usage>Documentation not yet translated. Please see English version of document.</usage>
</directivesynopsis>
<directivesynopsis>
@@ -2565,7 +2826,7 @@ Ressource zugreifen k&ouml;nnen</description>
<name>Protocol</name>
<description>Protocol for a listening socket</description>
<contextlist><context>server config</context><context>virtual host</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<usage>Documentation not yet translated. Please see English version of document.</usage>
</directivesynopsis>
<directivesynopsis>
@@ -2802,7 +3063,7 @@ Die Option <code>Registry-Strict</code> ist verf&uuml;gbar seit Apache
of a request or the last 63, assuming the request itself is greater than
63 chars.</description>
<contextlist><context>server config</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<usage>Documentation not yet translated. Please see English version of document.</usage>
</directivesynopsis>
<directivesynopsis>
@@ -3198,16 +3459,30 @@ bevor er die Anfrage abbricht</description>
<directivesynopsis>
<name>TraceEnable</name>
-<description>Determines the behaviour on <code>TRACE</code> requests</description>
+<description>Entscheidet &uuml;ber das Verhalten bei <code>TRACE</code>
+Anfragen</description>
+<syntax>TraceEnable <var>[on|off|extended]</var></syntax>
+<default>TraceEnable on</default>
<contextlist><context>server config</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<compatibility> in Apache HTTP Server 1.3.34, 2.0.55 and later</compatibility>
+<usage>Documentation not yet translated. Please see English version of document.</usage>
</directivesynopsis>
<directivesynopsis>
<name>UnDefine</name>
-<description>Undefine the existence of a variable</description>
+<description>Hebt die Definition einer Variablen auf</description>
+<syntax>UnDefine <var>Parametername</var></syntax>
<contextlist><context>server config</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+
+<usage>
+ <p>Hebt die Auswirkungen eines <directive module="core">Define</directive>,
+ oder des &Uuml;bergeben eines <code>-D</code> Argument an <program
+ >httpd</program> wieder auf.</p>
+ <p>Diese Directive kann verwendet werden, um die Nutzung von <directive module="core"
+ type="section">IfDefine</directive> Sectionen umzuschalten, ohne die
+ <code>-D</code> Argumentente in etwaigen Start-Skripten &auml;ndern
+ zu m&uuml;ssen.</p>
+</usage>
</directivesynopsis>
<directivesynopsis>
@@ -3220,7 +3495,7 @@ ermittelt</description>
<context>directory</context></contextlist>
<usage>
- <p>In vielen Situationen muss der Apache eine
+ <p>In vielen Situationen muss der Apache httpd eine
<em>selbstreferenzierende</em> URL -- d.h. eine URL, die auf den selben
Server zur&uuml;ck verweist -- zusammenbauen. Bei <code>UseCanonicalName
On</code> verwendet der Apache den Hostnamen und Port, der in der
@@ -3283,7 +3558,7 @@ ermittelt</description>
<name>UseCanonicalPhysicalPort</name>
<description>Configures how the server determines its own name and port</description>
<contextlist><context>server config</context><context>virtual host</context><context>directory</context></contextlist>
-<usage><p>Documentation not yet translated. Please see English version of document.</p></usage>
+<usage>Documentation not yet translated. Please see English version of document.</usage>
</directivesynopsis>
<directivesynopsis type="section">
diff --git a/docs/manual/mod/mod_autoindex.html.ko.euc-kr b/docs/manual/mod/mod_autoindex.html.ko.euc-kr
index e7050216f2..65bc742cc6 100644
--- a/docs/manual/mod/mod_autoindex.html.ko.euc-kr
+++ b/docs/manual/mod/mod_autoindex.html.ko.euc-kr
@@ -459,7 +459,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_autoindex</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="IndexIgnore" id="IndexIgnore">IndexIgnore</a> <a name="indexignore" id="indexignore">þ</a></h2>
diff --git a/docs/manual/mod/mod_cache.html.ja.utf8 b/docs/manual/mod/mod_cache.html.ja.utf8
index 5e7f36a8f0..7c65e062bc 100644
--- a/docs/manual/mod/mod_cache.html.ja.utf8
+++ b/docs/manual/mod/mod_cache.html.ja.utf8
@@ -172,7 +172,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheDisable" id="CacheDisable">CacheDisable</a> <a name="cachedisable" id="cachedisable">ディレクティブ</a></h2>
@@ -249,7 +249,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheIgnoreCacheControl" id="CacheIgnoreCacheControl">CacheIgnoreCacheControl</a> <a name="cacheignorecachecontrol" id="cacheignorecachecontrol">ディレクティブ</a></h2>
@@ -398,7 +398,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheKeyBaseURL" id="CacheKeyBaseURL">CacheKeyBaseURL</a> <a name="cachekeybaseurl" id="cachekeybaseurl">ディレクティブ</a></h2>
@@ -408,7 +408,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheLastModifiedFactor" id="CacheLastModifiedFactor">CacheLastModifiedFactor</a> <a name="cachelastmodifiedfactor" id="cachelastmodifiedfactor">ディレクティブ</a></h2>
@@ -454,7 +454,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheLockMaxAge" id="CacheLockMaxAge">CacheLockMaxAge</a> <a name="cachelockmaxage" id="cachelockmaxage">ディレクティブ</a></h2>
@@ -464,7 +464,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheLockPath" id="CacheLockPath">CacheLockPath</a> <a name="cachelockpath" id="cachelockpath">ディレクティブ</a></h2>
@@ -474,7 +474,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheMaxExpire" id="CacheMaxExpire">CacheMaxExpire</a> <a name="cachemaxexpire" id="cachemaxexpire">ディレクティブ</a></h2>
@@ -525,7 +525,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheStaleOnError" id="CacheStaleOnError">CacheStaleOnError</a> <a name="cachestaleonerror" id="cachestaleonerror">ディレクティブ</a></h2>
@@ -535,7 +535,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheStoreExpired" id="CacheStoreExpired">CacheStoreExpired</a> <a name="cachestoreexpired" id="cachestoreexpired">ディレクティブ</a></h2>
@@ -545,7 +545,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheStoreNoStore" id="CacheStoreNoStore">CacheStoreNoStore</a> <a name="cachestorenostore" id="cachestorenostore">ディレクティブ</a></h2>
diff --git a/docs/manual/mod/mod_cache.html.ko.euc-kr b/docs/manual/mod/mod_cache.html.ko.euc-kr
index 43d400825e..60b809c627 100644
--- a/docs/manual/mod/mod_cache.html.ko.euc-kr
+++ b/docs/manual/mod/mod_cache.html.ko.euc-kr
@@ -159,7 +159,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheDisable" id="CacheDisable">CacheDisable</a> <a name="cachedisable" id="cachedisable">þ</a></h2>
@@ -219,7 +219,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheIgnoreCacheControl" id="CacheIgnoreCacheControl">CacheIgnoreCacheControl</a> <a name="cacheignorecachecontrol" id="cacheignorecachecontrol">þ</a></h2>
@@ -327,7 +327,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheIgnoreURLSessionIdentifiers" id="CacheIgnoreURLSessionIdentifiers">CacheIgnoreURLSessionIdentifiers</a> <a name="cacheignoreurlsessionidentifiers" id="cacheignoreurlsessionidentifiers">þ</a></h2>
@@ -338,7 +338,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheKeyBaseURL" id="CacheKeyBaseURL">CacheKeyBaseURL</a> <a name="cachekeybaseurl" id="cachekeybaseurl">þ</a></h2>
@@ -348,7 +348,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheLastModifiedFactor" id="CacheLastModifiedFactor">CacheLastModifiedFactor</a> <a name="cachelastmodifiedfactor" id="cachelastmodifiedfactor">þ</a></h2>
@@ -390,7 +390,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheLockMaxAge" id="CacheLockMaxAge">CacheLockMaxAge</a> <a name="cachelockmaxage" id="cachelockmaxage">þ</a></h2>
@@ -400,7 +400,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheLockPath" id="CacheLockPath">CacheLockPath</a> <a name="cachelockpath" id="cachelockpath">þ</a></h2>
@@ -410,7 +410,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheMaxExpire" id="CacheMaxExpire">CacheMaxExpire</a> <a name="cachemaxexpire" id="cachemaxexpire">þ</a></h2>
@@ -440,7 +440,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheQuickHandler" id="CacheQuickHandler">CacheQuickHandler</a> <a name="cachequickhandler" id="cachequickhandler">þ</a></h2>
@@ -450,7 +450,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheStaleOnError" id="CacheStaleOnError">CacheStaleOnError</a> <a name="cachestaleonerror" id="cachestaleonerror">þ</a></h2>
@@ -460,7 +460,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheStoreExpired" id="CacheStoreExpired">CacheStoreExpired</a> <a name="cachestoreexpired" id="cachestoreexpired">þ</a></h2>
@@ -470,7 +470,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheStoreNoStore" id="CacheStoreNoStore">CacheStoreNoStore</a> <a name="cachestorenostore" id="cachestorenostore">þ</a></h2>
@@ -480,7 +480,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheStorePrivate" id="CacheStorePrivate">CacheStorePrivate</a> <a name="cachestoreprivate" id="cachestoreprivate">þ</a></h2>
@@ -490,7 +490,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
</div>
<div class="bottomlang">
diff --git a/docs/manual/mod/mod_cache_disk.html.ja.utf8 b/docs/manual/mod/mod_cache_disk.html.ja.utf8
index 12ec211b1e..4e2f0bba7d 100644
--- a/docs/manual/mod/mod_cache_disk.html.ja.utf8
+++ b/docs/manual/mod/mod_cache_disk.html.ja.utf8
@@ -159,7 +159,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache_disk</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheReadTime" id="CacheReadTime">CacheReadTime</a> <a name="cachereadtime" id="cachereadtime">ディレクティブ</a></h2>
@@ -169,7 +169,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_cache_disk</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheRoot" id="CacheRoot">CacheRoot</a> <a name="cacheroot" id="cacheroot">ディレクティブ</a></h2>
diff --git a/docs/manual/mod/mod_cache_disk.html.ko.euc-kr b/docs/manual/mod/mod_cache_disk.html.ko.euc-kr
index 9068e8f1be..4c252767f1 100644
--- a/docs/manual/mod/mod_cache_disk.html.ko.euc-kr
+++ b/docs/manual/mod/mod_cache_disk.html.ko.euc-kr
@@ -154,7 +154,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache_disk</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheReadTime" id="CacheReadTime">CacheReadTime</a> <a name="cachereadtime" id="cachereadtime">þ</a></h2>
@@ -165,7 +165,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Experimental</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_cache_disk</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CacheRoot" id="CacheRoot">CacheRoot</a> <a name="cacheroot" id="cacheroot">þ</a></h2>
diff --git a/docs/manual/mod/mod_dir.html.ja.utf8 b/docs/manual/mod/mod_dir.html.ja.utf8
index 8037cb1883..7585b046dc 100644
--- a/docs/manual/mod/mod_dir.html.ja.utf8
+++ b/docs/manual/mod/mod_dir.html.ja.utf8
@@ -183,7 +183,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_dir</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
</div>
<div class="bottomlang">
diff --git a/docs/manual/mod/mod_dir.html.ko.euc-kr b/docs/manual/mod/mod_dir.html.ko.euc-kr
index 15120fe83a..b7288710b9 100644
--- a/docs/manual/mod/mod_dir.html.ko.euc-kr
+++ b/docs/manual/mod/mod_dir.html.ko.euc-kr
@@ -169,7 +169,7 @@ index Ѵ</td></tr>
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_dir</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
</div>
<div class="bottomlang">
diff --git a/docs/manual/mod/mod_dir.html.tr.utf8 b/docs/manual/mod/mod_dir.html.tr.utf8
index 6a438a83bb..7760ea2d30 100644
--- a/docs/manual/mod/mod_dir.html.tr.utf8
+++ b/docs/manual/mod/mod_dir.html.tr.utf8
@@ -216,7 +216,7 @@
<tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli, sanal konak, dizin, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Temel</td></tr>
<tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>mod_dir</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
</div>
<div class="bottomlang">
diff --git a/docs/manual/mod/mod_log_config.html.ko.euc-kr b/docs/manual/mod/mod_log_config.html.ko.euc-kr
index e15939705c..df32af14eb 100644
--- a/docs/manual/mod/mod_log_config.html.ko.euc-kr
+++ b/docs/manual/mod/mod_log_config.html.ko.euc-kr
@@ -247,7 +247,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_log_config</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CookieLog" id="CookieLog">CookieLog</a> <a name="cookielog" id="cookielog">þ</a></h2>
diff --git a/docs/manual/mod/mod_mime.html.en b/docs/manual/mod/mod_mime.html.en
index 748cf0090e..dc9dcf2fb7 100644
--- a/docs/manual/mod/mod_mime.html.en
+++ b/docs/manual/mod/mod_mime.html.en
@@ -646,12 +646,14 @@ components as part of the filename</td></tr>
ModMimeUsePathInfo On
</code></p></div>
- <p>If you have a request for <code>/index.php/foo.shtml</code> where
- <code>/index.php</code> <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code> will now treat the
+ <p>If you have a request for <code>/index.php/foo.shtml</code>
+ <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code> will now treat the
incoming request as <code>/index.php/foo.shtml</code> and directives
like <code>AddOutputFilter INCLUDES .shtml</code> will add the
<code>INCLUDES</code> filter to the request. If <code class="directive">ModMimeUsePathInfo</code> is not set, the
- <code>INCLUDES</code> filter will not be added.</p>
+ <code>INCLUDES</code> filter will not be added. This will work
+ analogously for virtual paths, such as those defined by
+ <code class="directive">&lt;Location&gt;</code></p>
<h3>See also</h3>
<ul>
diff --git a/docs/manual/mod/mod_mime.xml b/docs/manual/mod/mod_mime.xml
index 68849684d1..4f13810169 100644
--- a/docs/manual/mod/mod_mime.xml
+++ b/docs/manual/mod/mod_mime.xml
@@ -701,7 +701,7 @@ components as part of the filename</description>
>ModMimeUsePathInfo</directive> is not set, the
<code>INCLUDES</code> filter will not be added. This will work
analogously for virtual paths, such as those defined by
- <section>Location</Location></p>
+ <directive type="section">Location</directive></p>
</usage>
<seealso><directive module="core">AcceptPathInfo</directive></seealso>
</directivesynopsis>
diff --git a/docs/manual/mod/mod_mime.xml.ja b/docs/manual/mod/mod_mime.xml.ja
index 92e1ed327b..6257634b22 100644
--- a/docs/manual/mod/mod_mime.xml.ja
+++ b/docs/manual/mod/mod_mime.xml.ja
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 659902:1041030 (outdated) -->
+<!-- English Revision: 659902:1041047 (outdated) -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/docs/manual/mod/mod_proxy.html.ja.utf8 b/docs/manual/mod/mod_proxy.html.ja.utf8
index e8f3064c91..3dcd005956 100644
--- a/docs/manual/mod/mod_proxy.html.ja.utf8
+++ b/docs/manual/mod/mod_proxy.html.ja.utf8
@@ -334,7 +334,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>ディレクトリ</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_proxy</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="NoProxy" id="NoProxy">NoProxy</a> <a name="noproxy" id="noproxy">ディレクティブ</a></h2>
@@ -885,7 +885,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_proxy</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="ProxyPassMatch" id="ProxyPassMatch">ProxyPassMatch</a> <a name="proxypassmatch" id="proxypassmatch">ディレクティブ</a></h2>
@@ -895,7 +895,7 @@
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_proxy</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="ProxyPassReverse" id="ProxyPassReverse">ProxyPassReverse</a> <a name="proxypassreverse" id="proxypassreverse">ディレクティブ</a></h2>
@@ -1114,7 +1114,7 @@ URL を調整する</td></tr>
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>ディレクトリ</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_proxy</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="ProxyStatus" id="ProxyStatus">ProxyStatus</a> <a name="proxystatus" id="proxystatus">ディレクティブ</a></h2>
@@ -1124,7 +1124,7 @@ URL を調整する</td></tr>
<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト</td></tr>
<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_proxy</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="ProxyTimeout" id="ProxyTimeout">ProxyTimeout</a> <a name="proxytimeout" id="proxytimeout">ディレクティブ</a></h2>
diff --git a/docs/manual/mod/mod_speling.html.ko.euc-kr b/docs/manual/mod/mod_speling.html.ko.euc-kr
index 44dae6f008..de079bdb46 100644
--- a/docs/manual/mod/mod_speling.html.ko.euc-kr
+++ b/docs/manual/mod/mod_speling.html.ko.euc-kr
@@ -72,7 +72,7 @@
<tr><th><a href="directive-dict.html#Context">:</a></th><td>ּ, ȣƮ, directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Status">:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">:</a></th><td>mod_speling</td></tr>
-</table>Documentation not yet translated. Please see English version of document.
+</table><p>Documentation not yet translated. Please see English version of document.</p>
</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="CheckSpelling" id="CheckSpelling">CheckSpelling</a> <a name="checkspelling" id="checkspelling">þ</a></h2>
diff --git a/docs/manual/mod/quickreference.html.de b/docs/manual/mod/quickreference.html.de
index 4495945fc6..61c4a88e21 100644
--- a/docs/manual/mod/quickreference.html.de
+++ b/docs/manual/mod/quickreference.html.de
@@ -348,7 +348,7 @@ header field for all resources in the current context that have not been
assigned a language-tag by some other means.</td></tr>
<tr class="odd"><td><a href="core.html#defaulttype">DefaultType <var>MIME-Type</var></a></td><td> text/plain </td><td>svdh</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">MIME-Content-Type, der gesendet wird, wenn der Server den Typ
nicht auf andere Weise ermitteln kann.</td></tr>
-<tr><td><a href="core.html#define">Define <var>Parametername</var></a></td><td></td><td>s</td><td>C</td></tr><tr><td class="descr" colspan="4">Define the existence of a variable</td></tr>
+<tr><td><a href="core.html#define">Define <var>Parametername</var></a></td><td></td><td>s</td><td>C</td></tr><tr><td class="descr" colspan="4">Define des Vorhandenseins einer variable</td></tr>
<tr class="odd"><td><a href="mod_deflate.html#deflatebuffersize">DeflateBufferSize <var>value</var></a></td><td> 8096 </td><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Fragment size to be compressed at one time by zlib</td></tr>
<tr><td><a href="mod_deflate.html#deflatecompressionlevel">DeflateCompressionLevel <var>value</var></a></td><td></td><td>sv</td><td>E</td></tr><tr><td class="descr" colspan="4">How much compression do we apply to the output</td></tr>
<tr class="odd"><td><a href="mod_deflate.html#deflatefilternote">DeflateFilterNote [<var>type</var>] <var>notename</var></a></td><td></td><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Places the compression ratio in a note for logging</td></tr>
@@ -378,13 +378,14 @@ Web sichtbar ist.</td></tr>
Ausnahmefehler behandeln lassen kann</td></tr>
<tr><td><a href="core.html#enablemmap">EnableMMAP On|Off</a></td><td> On </td><td>svdh</td><td>C</td></tr><tr><td class="descr" colspan="4">Verwende Memory-Mapping, um Dateien whrend der
Auslieferung zu lesen</td></tr>
-<tr class="odd"><td><a href="core.html#enablesendfile">EnableSendfile On|Off</a></td><td> On </td><td>svdh</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Verwende die sendfile-Untersttzung des Kernels, um
+<tr class="odd"><td><a href="core.html#enablesendfile">EnableSendfile On|Off</a></td><td> Off </td><td>svdh</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Verwende die sendfile-Untersttzung des Kernels, um
Dateien an den Client auszuliefern</td></tr>
-<tr><td><a href="core.html#error" /></td><td></td><td>svdh</td><td>C</td></tr><tr><td class="descr" colspan="4">Abort configuration parsing with a custom error message</td></tr>
+<tr><td><a href="core.html#error">Error <var>Meldung</var></a></td><td></td><td>svdh</td><td>C</td></tr><tr><td class="descr" colspan="4">Abbruch der Konfigurationsanalyse mit einer angepassenten
+Fehlermeldung</td></tr>
<tr class="odd"><td><a href="core.html#errordocument">ErrorDocument <var>Fehlercode</var> <var>Dokument</var></a></td><td></td><td>svdh</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Das, was der Server im Fehlerfall an den Client
zurckgibt</td></tr>
<tr><td><a href="core.html#errorlog"> ErrorLog <var>Dateiname</var>|syslog[:<var>facility</var>]</a></td><td> logs/error_log (Uni +</td><td>sv</td><td>C</td></tr><tr><td class="descr" colspan="4">Ablageort, an dem der Server Fehler protokolliert</td></tr>
-<tr class="odd"><td><a href="core.html#errorlogformat" /></td><td></td><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Format specification for error log entries</td></tr>
+<tr class="odd"><td><a href="core.html#errorlogformat"> ErrorLog [Verbindung|Anfrage] <var>Format</var></a></td><td></td><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Formatspecifikation fr Eintrge des Fehlerprotokolls</td></tr>
<tr><td><a href="mod_example.html#example">Example</a></td><td></td><td>svdh</td><td>X</td></tr><tr><td class="descr" colspan="4">Demonstration directive to illustrate the Apache module
API</td></tr>
<tr class="odd"><td><a href="mod_expires.html#expiresactive">ExpiresActive On|Off</a></td><td> Off </td><td>svdh</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Enables generation of <code>Expires</code>
@@ -906,10 +907,11 @@ Certificate verification</td></tr>
verwendet wird, die Client-Verbindungen bearbeiten.</td></tr>
<tr class="odd"><td><a href="core.html#timeout">TimeOut <var>Sekunden</var></a></td><td> 300 </td><td>s</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Zeitspanne, die der Server auf verschiedene Ereignisse wartet,
bevor er die Anfrage abbricht</td></tr>
-<tr><td><a href="core.html#traceenable" /></td><td></td><td>s</td><td>C</td></tr><tr><td class="descr" colspan="4">Determines the behaviour on <code>TRACE</code> requests</td></tr>
+<tr><td><a href="core.html#traceenable">TraceEnable <var>[on|off|extended]</var></a></td><td> on </td><td>s</td><td>C</td></tr><tr><td class="descr" colspan="4">Entscheidet ber das Verhalten bei <code>TRACE</code>
+Anfragen</td></tr>
<tr class="odd"><td><a href="mod_log_config.html#transferlog">TransferLog <var>file</var>|<var>pipe</var></a></td><td></td><td>sv</td><td>B</td></tr><tr class="odd"><td class="descr" colspan="4">Specify location of a log file</td></tr>
<tr><td><a href="mod_mime.html#typesconfig">TypesConfig <var>file-path</var></a></td><td> conf/mime.types </td><td>s</td><td>B</td></tr><tr><td class="descr" colspan="4">The location of the <code>mime.types</code> file</td></tr>
-<tr class="odd"><td><a href="core.html#undefine" id="U" name="U" /></td><td></td><td>s</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Undefine the existence of a variable</td></tr>
+<tr class="odd"><td><a href="core.html#undefine" id="U" name="U">UnDefine <var>Parametername</var></a></td><td></td><td>s</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Hebt die Definition einer Variablen auf</td></tr>
<tr><td><a href="mod_env.html#unsetenv">UnsetEnv <var>env-variable</var> [<var>env-variable</var>]
...</a></td><td></td><td>svdh</td><td>B</td></tr><tr><td class="descr" colspan="4">Removes variables from the environment</td></tr>
<tr class="odd"><td><a href="core.html#usecanonicalname">UseCanonicalName On|Off|DNS</a></td><td> Off </td><td>svd</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Bestimmt, wie der Server seinen eigenen Namen und Port