You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/04/24 20:46:57 UTC

svn commit: r1329931 [10/11] - in /httpd/httpd/trunk/docs/manual: ./ developer/ faq/ howto/ misc/ mod/ platform/ programs/ rewrite/ ssl/ vhosts/

Modified: httpd/httpd/trunk/docs/manual/programs/split-logfile.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/programs/split-logfile.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/programs/split-logfile.html.en (original)
+++ httpd/httpd/trunk/docs/manual/programs/split-logfile.html.en Tue Apr 24 18:46:16 2012
@@ -1,70 +1,70 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
-        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
-              This file is generated from xml source: DO NOT EDIT
-        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
-      -->
-<title>split-logfile - Split up multi-vhost logfiles - Apache HTTP Server</title>
-<link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
-<link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
-<link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="../style/css/prettify.css" />
-<script src="../style/scripts/prettify.js" type="text/javascript">
-</script>
-
-<link href="../images/favicon.ico" rel="shortcut icon" /></head>
-<body id="manual-page" class="no-sidebar"><div id="page-header">
-<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.5</p>
-<img alt="" src="../images/feather.gif" /></div>
-<div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
-<div id="path">
-<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.5</a> &gt; <a href="./">Programs</a></div><div id="page-content"><div id="preamble"><h1>split-logfile - Split up multi-vhost logfiles</h1>
-<div class="toplang">
-<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> |
-<a href="../tr/programs/other.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
-</div>
-
-    <p>This perl script will take a combined Web server access log file and
-    break its contents into separate files. It assumes that the first field of
-    each line is the virtual host identity, put there using the "<code>%v</code>"
-    variable in <code class="directive"><a href="../mod/mod_log_config.html#logformat">LogFormat</a></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="split-logfile" id="split-logfile">Usage</a></h2>
-
-    <p>Create a log file with virtual host information in it:</p>
-
-    <div class="example"><p><code>
-        LogFormat "%v %h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-agent}i\""
-             combined_plus_vhost<br />
-        CustomLog logs/access_log combined_plus_vhost
-    </code></p></div>
-
-    <p>Log files will be created, in the directory where you run the
-    script, for each virtual host name that appears in the combined log file.
-    These logfiles will named after the hostname, with a
-    <code>.log</code> file extension.</p>
-
-    <p>The combined log file is read from stdin. Records read will be appended
-    to any existing log files.</p>
-
-    <div class="example"><p><code>split-logfile &lt; access_log</code></p></div>
-
-
-</div></div>
-<div class="bottomlang">
-<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> |
-<a href="../tr/programs/other.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
-</div><div id="footer">
-<p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
-        prettyPrint();
-    }
-</script>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
+        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
+              This file is generated from xml source: DO NOT EDIT
+        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
+      -->
+<title>split-logfile - Split up multi-vhost logfiles - Apache HTTP Server</title>
+<link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
+<link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
+<link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="../style/css/prettify.css" />
+<script src="../style/scripts/prettify.js" type="text/javascript">
+</script>
+
+<link href="../images/favicon.ico" rel="shortcut icon" /></head>
+<body id="manual-page" class="no-sidebar"><div id="page-header">
+<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.5</p>
+<img alt="" src="../images/feather.gif" /></div>
+<div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
+<div id="path">
+<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.5</a> &gt; <a href="./">Programs</a></div><div id="page-content"><div id="preamble"><h1>split-logfile - Split up multi-vhost logfiles</h1>
+<div class="toplang">
+<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> |
+<a href="../tr/programs/other.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
+</div>
+
+    <p>This perl script will take a combined Web server access log file and
+    break its contents into separate files. It assumes that the first field of
+    each line is the virtual host identity, put there using the "<code>%v</code>"
+    variable in <code class="directive"><a href="../mod/mod_log_config.html#logformat">LogFormat</a></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="split-logfile" id="split-logfile">Usage</a></h2>
+
+    <p>Create a log file with virtual host information in it:</p>
+
+    <div class="example"><p><code>
+        LogFormat "%v %h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-agent}i\""
+             combined_plus_vhost<br />
+        CustomLog logs/access_log combined_plus_vhost
+    </code></p></div>
+
+    <p>Log files will be created, in the directory where you run the
+    script, for each virtual host name that appears in the combined log file.
+    These logfiles will named after the hostname, with a
+    <code>.log</code> file extension.</p>
+
+    <p>The combined log file is read from stdin. Records read will be appended
+    to any existing log files.</p>
+
+    <div class="example"><p><code>split-logfile &lt; access_log</code></p></div>
+
+
+</div></div>
+<div class="bottomlang">
+<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> |
+<a href="../tr/programs/other.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
+</div><div id="footer">
+<p class="apache">Copyright 2012 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><script type="text/javascript">
+    if (typeof(prettyPrint) !== undefined) {
+        prettyPrint();
+    }
+</script>
 </body></html>
\ No newline at end of file

Modified: httpd/httpd/trunk/docs/manual/programs/suexec.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/programs/suexec.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/programs/suexec.html.en (original)
+++ httpd/httpd/trunk/docs/manual/programs/suexec.html.en Tue Apr 24 18:46:16 2012
@@ -63,7 +63,7 @@ changeable only at compile time.</dd>
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/programs/suexec.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/programs/suexec.html.ko.euc-kr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/programs/suexec.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/programs/suexec.html.ko.euc-kr [euc-kr] Tue Apr 24 18:46:16 2012
@@ -66,7 +66,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/programs/suexec.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/programs/suexec.html.tr.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/programs/suexec.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/programs/suexec.html.tr.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -63,7 +63,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="../mod/">Modüller</a> | <a href="../mod/directives.html">Yönergeler</a> | <a href="../faq/">SSS</a> | <a href="../glossary.html">Terimler</a> | <a href="../sitemap.html">Site Haritası</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/access.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/access.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/access.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/access.html.en Tue Apr 24 18:46:16 2012
@@ -305,7 +305,7 @@ http://badguys.example.com/bad/index3.ht
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/advanced.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/advanced.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/advanced.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/advanced.html.en Tue Apr 24 18:46:16 2012
@@ -503,7 +503,7 @@ RewriteCond %{ENV:rewritten} =1
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en Tue Apr 24 18:46:16 2012
@@ -227,7 +227,7 @@ use in &lt;If&gt; sections, and in certa
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/flags.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/flags.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/flags.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/flags.html.en Tue Apr 24 18:46:16 2012
@@ -730,7 +730,7 @@ The <code>L</code> flag can be useful in
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/flags.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/flags.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/flags.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/flags.html.fr Tue Apr 24 18:46:16 2012
@@ -776,7 +776,7 @@ utiliser le drapeau <code>L</code> pour 
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/htaccess.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/htaccess.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/htaccess.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/htaccess.html.en Tue Apr 24 18:46:16 2012
@@ -38,7 +38,7 @@ and how to deal with these changes.</p>
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/index.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/index.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/index.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/index.html.en Tue Apr 24 18:46:16 2012
@@ -87,7 +87,7 @@ wiki</a></li><li><a href="../glossary.ht
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/index.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/index.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/index.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/index.html.fr Tue Apr 24 18:46:16 2012
@@ -101,7 +101,7 @@ avec le système de fichiers</a></li><li
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/index.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/index.html.tr.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/index.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/index.html.tr.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -83,7 +83,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="../mod/">Modüller</a> | <a href="../mod/directives.html">Yönergeler</a> | <a href="../faq/">SSS</a> | <a href="../glossary.html">Terimler</a> | <a href="../sitemap.html">Site Haritası</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/index.html.zh-cn
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/index.html.zh-cn?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/index.html.zh-cn (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/index.html.zh-cn Tue Apr 24 18:46:16 2012
@@ -71,7 +71,7 @@ wiki</a></li><li><a href="../glossary.ht
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />基于 <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/">常见问题</a> | <a href="../glossary.html">术语</a> | <a href="../sitemap.html">网站导航</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/intro.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/intro.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/intro.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/intro.html.en Tue Apr 24 18:46:16 2012
@@ -334,7 +334,7 @@ the <code class="directive"><a href="../
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/intro.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/intro.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/intro.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/intro.html.fr Tue Apr 24 18:46:16 2012
@@ -359,7 +359,7 @@ requête est correctement mise en corres
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/proxy.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/proxy.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/proxy.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/proxy.html.en Tue Apr 24 18:46:16 2012
@@ -93,7 +93,7 @@ ProxyPassReverse / http://old.example.co
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/remapping.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/remapping.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/remapping.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/remapping.html.en Tue Apr 24 18:46:16 2012
@@ -646,7 +646,7 @@ file, as well as in a &lt;Directory&gt; 
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en Tue Apr 24 18:46:16 2012
@@ -451,7 +451,7 @@ RewriteMap myquery "fastdbd:SELECT desti
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/rewritemap.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/rewritemap.xml?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewritemap.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewritemap.xml Tue Apr 24 18:46:16 2012
@@ -372,14 +372,14 @@ by many requests.
     </example>
 
     <example><title>dash2under.pl</title>
-    #!/usr/bin/perl<br />
-    $| = 1; # Turn off I/O buffering<br />
-    while (&lt;STDIN&gt;) {<br />
-        <indent>
-        s/-/_/g; # Replace dashes with underscores<br />
-        print $_;<br />
-        </indent>
-    }<br />
+    <highlight language="perl">
+    #!/usr/bin/perl
+    $| = 1; # Turn off I/O buffering
+    while (&lt;STDIN&gt;) {
+        s/-/_/g; # Replace dashes with underscores
+        print $_;
+    }
+    </highlight>
     </example>
 
 <note><title>Caution!</title>

Modified: httpd/httpd/trunk/docs/manual/rewrite/tech.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/tech.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/tech.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/tech.html.en Tue Apr 24 18:46:16 2012
@@ -179,7 +179,7 @@ and URL matching.</p>
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/tech.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/tech.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/tech.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/tech.html.fr Tue Apr 24 18:46:16 2012
@@ -197,7 +197,7 @@ correspondance</a></li><li><a href="acce
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/rewrite/vhosts.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/vhosts.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/vhosts.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/vhosts.html.en Tue Apr 24 18:46:16 2012
@@ -205,7 +205,7 @@ RewriteRule  ^/(.*)$                    
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sections.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sections.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sections.html.en (original)
+++ httpd/httpd/trunk/docs/manual/sections.html.en Tue Apr 24 18:46:16 2012
@@ -543,7 +543,7 @@ Deny from badguy.example.com<br />
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sections.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sections.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sections.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/sections.html.fr Tue Apr 24 18:46:16 2012
@@ -595,7 +595,7 @@ Deny from badguy.example.com<br />
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossaire</a> | <a href="./sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sections.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sections.html.ja.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sections.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/sections.html.ja.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -497,7 +497,7 @@ Deny from badguy.example.com<br />
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />この文書は <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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sections.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sections.html.ko.euc-kr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sections.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/sections.html.ko.euc-kr [euc-kr] Tue Apr 24 18:46:16 2012
@@ -426,7 +426,7 @@ Deny from badguy.example.com<br />
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sections.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sections.html.tr.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sections.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/sections.html.tr.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -580,7 +580,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="./mod/">Modüller</a> | <a href="./mod/directives.html">Yönergeler</a> | <a href="./faq/">SSS</a> | <a href="./glossary.html">Terimler</a> | <a href="./sitemap.html">Site Haritası</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/server-wide.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/server-wide.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/server-wide.html.en (original)
+++ httpd/httpd/trunk/docs/manual/server-wide.html.en Tue Apr 24 18:46:16 2012
@@ -116,7 +116,7 @@ the basic operations of the server.</p>
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/server-wide.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/server-wide.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/server-wide.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/server-wide.html.fr Tue Apr 24 18:46:16 2012
@@ -118,7 +118,7 @@ serveur.</p>
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossaire</a> | <a href="./sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/server-wide.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/server-wide.html.ja.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/server-wide.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/server-wide.html.ja.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -108,7 +108,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />この文書は <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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/server-wide.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/server-wide.html.ko.euc-kr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/server-wide.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/server-wide.html.ko.euc-kr [euc-kr] Tue Apr 24 18:46:16 2012
@@ -99,7 +99,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/server-wide.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/server-wide.html.tr.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/server-wide.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/server-wide.html.tr.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -114,7 +114,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="./mod/">Modüller</a> | <a href="./mod/directives.html">Yönergeler</a> | <a href="./faq/">SSS</a> | <a href="./glossary.html">Terimler</a> | <a href="./sitemap.html">Site Haritası</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sitemap.html.de
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sitemap.html.de?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sitemap.html.de (original)
+++ httpd/httpd/trunk/docs/manual/sitemap.html.de Tue Apr 24 18:46:16 2012
@@ -329,7 +329,7 @@ konvertieren</a></li>
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Lizenziert unter der <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Module</a> | <a href="./mod/directives.html">Direktiven</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossar</a> | <a href="./sitemap.html">Seitenindex</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sitemap.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sitemap.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sitemap.html.en (original)
+++ httpd/httpd/trunk/docs/manual/sitemap.html.en Tue Apr 24 18:46:16 2012
@@ -320,7 +320,7 @@ Server on HPUX</a></li>
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sitemap.html.es
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sitemap.html.es?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sitemap.html.es (original)
+++ httpd/httpd/trunk/docs/manual/sitemap.html.es Tue Apr 24 18:46:16 2012
@@ -315,7 +315,7 @@ Referencia de Directivas</a></li>
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sitemap.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sitemap.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sitemap.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/sitemap.html.fr Tue Apr 24 18:46:16 2012
@@ -339,7 +339,7 @@ version 2.x</a></li>
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossaire</a> | <a href="./sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sitemap.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sitemap.html.ja.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sitemap.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/sitemap.html.ja.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -316,7 +316,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />この文書は <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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sitemap.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sitemap.html.ko.euc-kr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sitemap.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/sitemap.html.ko.euc-kr [euc-kr] Tue Apr 24 18:46:16 2012
@@ -314,7 +314,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sitemap.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sitemap.html.tr.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sitemap.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/sitemap.html.tr.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -317,7 +317,7 @@ Windows ile Apache Kullanımı</a></li>
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="./mod/">Modüller</a> | <a href="./mod/directives.html">Yönergeler</a> | <a href="./faq/">SSS</a> | <a href="./glossary.html">Terimler</a> | <a href="./sitemap.html">Site Haritası</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/sitemap.html.zh-cn
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/sitemap.html.zh-cn?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/sitemap.html.zh-cn (original)
+++ httpd/httpd/trunk/docs/manual/sitemap.html.zh-cn Tue Apr 24 18:46:16 2012
@@ -314,7 +314,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />基于 <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/">常见问题</a> | <a href="./glossary.html">术语</a> | <a href="./sitemap.html">网站导航</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/socache.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/socache.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/socache.html.en (original)
+++ httpd/httpd/trunk/docs/manual/socache.html.en Tue Apr 24 18:46:16 2012
@@ -117,7 +117,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/index.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/index.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/index.html.en (original)
+++ httpd/httpd/trunk/docs/manual/ssl/index.html.en Tue Apr 24 18:46:16 2012
@@ -62,7 +62,7 @@ provided by this module is provided in t
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/index.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/index.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/index.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/ssl/index.html.fr Tue Apr 24 18:46:16 2012
@@ -64,7 +64,7 @@ d'environnement fournies par ce module s
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/index.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/index.html.ja.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/index.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/ssl/index.html.ja.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -69,7 +69,7 @@ Secure Sockts Layer と Transport Layer 
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />この文書は <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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/index.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/index.html.tr.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/index.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/ssl/index.html.tr.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -64,7 +64,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="../mod/">Modüller</a> | <a href="../mod/directives.html">Yönergeler</a> | <a href="../faq/">SSS</a> | <a href="../glossary.html">Terimler</a> | <a href="../sitemap.html">Site Haritası</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/index.html.zh-cn
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/index.html.zh-cn?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/index.html.zh-cn (original)
+++ httpd/httpd/trunk/docs/manual/ssl/index.html.zh-cn Tue Apr 24 18:46:16 2012
@@ -63,7 +63,7 @@ Ralf S. Engelschall 的 mod_ssl é¡�
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />基于 <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/">常见问题</a> | <a href="../glossary.html">术语</a> | <a href="../sitemap.html">网站导航</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/ssl_compat.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/ssl_compat.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/ssl_compat.html.en (original)
+++ httpd/httpd/trunk/docs/manual/ssl/ssl_compat.html.en Tue Apr 24 18:46:16 2012
@@ -222,7 +222,7 @@ are listed in <a href="#table3">Table 3<
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/ssl_compat.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/ssl_compat.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/ssl_compat.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/ssl/ssl_compat.html.fr Tue Apr 24 18:46:16 2012
@@ -231,7 +231,7 @@ actuellement implémentés sont énumér
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/ssl_faq.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/ssl_faq.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/ssl_faq.html.en (original)
+++ httpd/httpd/trunk/docs/manual/ssl/ssl_faq.html.en Tue Apr 24 18:46:16 2012
@@ -857,7 +857,7 @@ the reason for my core dump?</a></h3>
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/ssl_faq.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/ssl_faq.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/ssl_faq.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/ssl/ssl_faq.html.fr Tue Apr 24 18:46:16 2012
@@ -949,7 +949,7 @@ d'obtenir une journalisation des évène
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/ssl_howto.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/ssl_howto.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/ssl_howto.html.en (original)
+++ httpd/httpd/trunk/docs/manual/ssl/ssl_howto.html.en Tue Apr 24 18:46:16 2012
@@ -291,7 +291,7 @@ Require              valid-user
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/ssl_howto.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/ssl_howto.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/ssl_howto.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/ssl/ssl_howto.html.fr Tue Apr 24 18:46:16 2012
@@ -327,7 +327,7 @@ Require              valid-user
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.en (original)
+++ httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.en Tue Apr 24 18:46:16 2012
@@ -650,7 +650,7 @@ Version 3.0</q>, 1996. See <a href="http
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.fr Tue Apr 24 18:46:16 2012
@@ -705,7 +705,7 @@ Version 3.0</q>, 1996. Voir <a href="htt
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.ja.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/ssl/ssl_intro.html.ja.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -704,7 +704,7 @@ Version 3.0</q>, 1996. See <a href="http
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />この文書は <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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/stopping.html.de
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/stopping.html.de?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/stopping.html.de (original)
+++ httpd/httpd/trunk/docs/manual/stopping.html.de Tue Apr 24 18:46:16 2012
@@ -262,7 +262,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Lizenziert unter der <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Module</a> | <a href="./mod/directives.html">Direktiven</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossar</a> | <a href="./sitemap.html">Seitenindex</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/stopping.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/stopping.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/stopping.html.en (original)
+++ httpd/httpd/trunk/docs/manual/stopping.html.en Tue Apr 24 18:46:16 2012
@@ -238,7 +238,7 @@ syntax error(s).</div>
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/stopping.html.es
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/stopping.html.es?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/stopping.html.es (original)
+++ httpd/httpd/trunk/docs/manual/stopping.html.es Tue Apr 24 18:46:16 2012
@@ -271,7 +271,7 @@ más arriba cómo puede solucionar este 
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/stopping.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/stopping.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/stopping.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/stopping.html.fr Tue Apr 24 18:46:16 2012
@@ -274,7 +274,7 @@ vous recevrez un message concernant ces 
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossaire</a> | <a href="./sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/stopping.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/stopping.html.ja.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/stopping.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/stopping.html.ja.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -257,7 +257,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />この文書は <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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/stopping.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/stopping.html.ko.euc-kr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/stopping.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/stopping.html.ko.euc-kr [euc-kr] Tue Apr 24 18:46:16 2012
@@ -209,7 +209,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/stopping.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/stopping.html.tr.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/stopping.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/stopping.html.tr.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -247,7 +247,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="./mod/">Modüller</a> | <a href="./mod/directives.html">Yönergeler</a> | <a href="./faq/">SSS</a> | <a href="./glossary.html">Terimler</a> | <a href="./sitemap.html">Site Haritası</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/suexec.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/suexec.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/suexec.html.en (original)
+++ httpd/httpd/trunk/docs/manual/suexec.html.en Tue Apr 24 18:46:16 2012
@@ -618,7 +618,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/suexec.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/suexec.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/suexec.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/suexec.html.fr Tue Apr 24 18:46:16 2012
@@ -664,7 +664,7 @@ de suEXEC</a></h2>
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossaire</a> | <a href="./sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/suexec.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/suexec.html.ja.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/suexec.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/suexec.html.ja.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -617,7 +617,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />この文書は <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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/suexec.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/suexec.html.ko.euc-kr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/suexec.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/suexec.html.ko.euc-kr [euc-kr] Tue Apr 24 18:46:16 2012
@@ -538,7 +538,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/suexec.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/suexec.html.tr.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/suexec.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/suexec.html.tr.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -559,7 +559,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="./mod/">Modüller</a> | <a href="./mod/directives.html">Yönergeler</a> | <a href="./faq/">SSS</a> | <a href="./glossary.html">Terimler</a> | <a href="./sitemap.html">Site Haritası</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/upgrading.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/upgrading.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/upgrading.html.en (original)
+++ httpd/httpd/trunk/docs/manual/upgrading.html.en Tue Apr 24 18:46:16 2012
@@ -347,7 +347,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/upgrading.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/upgrading.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/upgrading.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/upgrading.html.fr Tue Apr 24 18:46:16 2012
@@ -391,7 +391,7 @@ nécessiter une mise à jour des fichier
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossaire</a> | <a href="./sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/urlmapping.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/urlmapping.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/urlmapping.html.en (original)
+++ httpd/httpd/trunk/docs/manual/urlmapping.html.en Tue Apr 24 18:46:16 2012
@@ -335,7 +335,7 @@ proxying scenarios can be handled.</p>
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/urlmapping.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/urlmapping.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/urlmapping.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/urlmapping.html.fr Tue Apr 24 18:46:16 2012
@@ -355,7 +355,7 @@ URLs</a></h2>
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossaire</a> | <a href="./sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/urlmapping.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/urlmapping.html.ja.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/urlmapping.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/urlmapping.html.ja.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -292,7 +292,7 @@ ProxyPassReverseCookiePath /foo/ /bar/
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />この文書は <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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/urlmapping.html.ko.euc-kr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/urlmapping.html.ko.euc-kr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/urlmapping.html.ko.euc-kr [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/urlmapping.html.ko.euc-kr [euc-kr] Tue Apr 24 18:46:16 2012
@@ -251,7 +251,7 @@ ProxyPassReverse /foo/ http://internal.e
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/urlmapping.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/urlmapping.html.tr.utf8?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/urlmapping.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/urlmapping.html.tr.utf8 [utf-8] Tue Apr 24 18:46:16 2012
@@ -324,7 +324,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p>
 <p class="menu"><a href="./mod/">Modüller</a> | <a href="./mod/directives.html">Yönergeler</a> | <a href="./faq/">SSS</a> | <a href="./glossary.html">Terimler</a> | <a href="./sitemap.html">Site Haritası</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/vhosts/details.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/vhosts/details.html.en?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/vhosts/details.html.en (original)
+++ httpd/httpd/trunk/docs/manual/vhosts/details.html.en Tue Apr 24 18:46:16 2012
@@ -318,7 +318,7 @@
 </div><div id="footer">
 <p class="apache">Copyright 2012 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><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>

Modified: httpd/httpd/trunk/docs/manual/vhosts/details.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/vhosts/details.html.fr?rev=1329931&r1=1329930&r2=1329931&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/vhosts/details.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/vhosts/details.html.fr Tue Apr 24 18:46:16 2012
@@ -338,7 +338,7 @@ dynamiquement</a></li></ul></div>
 </div><div id="footer">
 <p class="apache">Copyright 2012 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript">
-    if (prettyPrint) {
+    if (typeof(prettyPrint) !== undefined) {
         prettyPrint();
     }
 </script>