You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2012/04/27 21:07:00 UTC

svn commit: r1331546 [1/2] - in /httpd/httpd/trunk/docs/manual: ./ developer/ howto/ mod/ platform/ rewrite/

Author: nd
Date: Fri Apr 27 19:06:57 2012
New Revision: 1331546

URL: http://svn.apache.org/viewvc?rev=1331546&view=rev
Log:
update transformation

Modified:
    httpd/httpd/trunk/docs/manual/developer/output-filters.html.en
    httpd/httpd/trunk/docs/manual/howto/htaccess.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_actions.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_auth_basic.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_auth_digest.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_auth_form.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_authn_core.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_buffer.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_cache.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_cgid.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_charset_lite.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_data.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_dav.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_dir.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_dumpio.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_echo.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_env.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_expires.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_ext_filter.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_file_cache.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_firehose.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_info.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_log_config.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_mime.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_mime_magic.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_policy.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_proxy.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_proxy_ftp.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_proxy_scgi.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_ratelimit.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_remoteip.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_sed.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_session.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_session_cookie.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_session_crypto.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_session_dbd.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_ssl.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_substitute.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_suexec.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_unixd.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_version.html.en
    httpd/httpd/trunk/docs/manual/mod/mpm_common.html.en
    httpd/httpd/trunk/docs/manual/platform/windows.html.en
    httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en
    httpd/httpd/trunk/docs/manual/upgrading.html.en

Modified: httpd/httpd/trunk/docs/manual/developer/output-filters.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/developer/output-filters.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/developer/output-filters.html.en (original)
+++ httpd/httpd/trunk/docs/manual/developer/output-filters.html.en Fri Apr 27 19:06:57 2012
@@ -129,8 +129,7 @@
     brigade should have no side effects (such as changing any state
     private to the filter).</p>
 
-    <div class="example"><h3>How to handle an empty brigade</h3><p><code>
-    <pre class="prettyprint lang-c">
+    <div class="example"><h3>How to handle an empty brigade</h3><pre class="prettyprint lang-c">
     apr_status_t dummy_filter(ap_filter_t *f, apr_bucket_brigade *bb)<br />
     {
         if (APR_BRIGADE_EMPTY(bb)) {
@@ -138,8 +137,7 @@
         }
         ....
     </pre>
-
-    </code></p></div>
+</div>
 
   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -256,8 +254,7 @@
     <p>Taking an example which loops through the entire brigade as
     follows:</p>
 
-    <div class="example"><h3>Bad output filter -- do not imitate!</h3><p><code>
-    <pre class="prettyprint lang-c">
+    <div class="example"><h3>Bad output filter -- do not imitate!</h3><pre class="prettyprint lang-c">
 apr_bucket *e = APR_BRIGADE_FIRST(bb);
 const char *data;
 apr_size_t len;
@@ -270,8 +267,7 @@ while (e != APR_BRIGADE_SENTINEL(bb)) {
 
 return ap_pass_brigade(bb);
 </pre>
-
-    </code></p></div>
+</div>
 
     <p>The above implementation would consume memory proportional to
     content size.  If passed a <code>FILE</code> bucket, for example,
@@ -283,8 +279,7 @@ return ap_pass_brigade(bb);
     amount of memory to filter any brigade; a temporary brigade is
     needed and must be allocated only once per response, see the <a href="#state">Maintaining state</a> section.</p>
 
-    <div class="example"><h3>Better output filter</h3><p><code>
-<pre class="prettyprint lang-c">
+    <div class="example"><h3>Better output filter</h3><pre class="prettyprint lang-c">
 apr_bucket *e;
 const char *data;
 apr_size_t len;
@@ -302,8 +297,7 @@ while ((e = APR_BRIGADE_FIRST(bb)) != AP
    apr_brigade_cleanup(tmpbb);
 }
 </pre>
-
-    </code></p></div>
+</div>
 
   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -317,8 +311,7 @@ while ((e = APR_BRIGADE_FIRST(bb)) != AP
     temporary brigade in such a structure, to avoid having to allocate
     a new brigade per invocation as described in the <a href="#brigade">Brigade structure</a> section.</p>
 
-  <div class="example"><h3>Example code to maintain filter state</h3><p><code>
-  <pre class="prettyprint lang-c">
+  <div class="example"><h3>Example code to maintain filter state</h3><pre class="prettyprint lang-c">
 struct dummy_state {
    apr_bucket_brigade *tmpbb;
    int filter_state;
@@ -343,8 +336,7 @@ apr_status_t dummy_filter(ap_filter_t *f
     }
     ...
 </pre>
-
-    </code></p></div>
+</div>
 
   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -418,9 +410,7 @@ apr_status_t dummy_filter(ap_filter_t *f
     script; reading from such a bucket will block when waiting for the
     CGI script to produce more output.</p>
 
-    <div class="example"><h3>Example code using non-blocking bucket reads</h3><p><code>
-      
-      <pre class="prettyprint lang-c">
+    <div class="example"><h3>Example code using non-blocking bucket reads</h3><pre class="prettyprint lang-c">
 apr_bucket *e;
 apr_read_type_e mode = APR_NONBLOCK_READ;
 
@@ -448,8 +438,7 @@ while ((e = APR_BRIGADE_FIRST(bb)) != AP
     ...
 }
 </pre>
-
-    </code></p></div>
+</div>
 
   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">

Modified: httpd/httpd/trunk/docs/manual/howto/htaccess.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/htaccess.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/htaccess.html.en (original)
+++ httpd/httpd/trunk/docs/manual/howto/htaccess.html.en Fri Apr 27 19:06:57 2012
@@ -193,20 +193,16 @@ changes on a per-directory basis.</p>
     <p><code>.htaccess</code> file in <code>/www/htdocs/example</code>:</p>
 
     <div class="example"><h3>Contents of .htaccess file in
-    <code>/www/htdocs/example</code></h3><p><code>
-    <pre class="prettyprint lang-config">AddType text/example .exm</pre>
-
-    </code></p></div>
+    <code>/www/htdocs/example</code></h3><pre class="prettyprint lang-config">AddType text/example .exm</pre>
+</div>
 
     <div class="example"><h3>Section from your <code>httpd.conf</code>
-    file</h3><p><code>
-    <pre class="prettyprint lang-config">
+    file</h3><pre class="prettyprint lang-config">
 &lt;Directory /www/htdocs/example&gt;<br />
     AddType text/example .exm<br />
 &lt;/Directory&gt;
     </pre>
-
-    </code></p></div>
+</div>
 
     <p>However, putting this configuration in your server configuration
     file will result in less of a performance hit, as the configuration is

Modified: httpd/httpd/trunk/docs/manual/mod/mod_actions.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_actions.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_actions.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_actions.html.en Fri Apr 27 19:06:57 2012
@@ -78,27 +78,22 @@ introduced in Apache 2.1</td></tr>
     environment variables. The handler used for the particular request
     is passed using the <code>REDIRECT_HANDLER</code> variable.</p>
 
-    <div class="example"><h3>Example: MIME type</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example: MIME type</h3><pre class="prettyprint lang-config">
 # Requests for files of a particular MIME content type:
 Action image/gif /cgi-bin/images.cgi
     </pre>
-
-    </code></p></div>
+</div>
 
     <p>In this example, requests for files with a MIME content
     type of <code>image/gif</code> will be handled by the
     specified cgi script <code>/cgi-bin/images.cgi</code>.</p>
 
-    <div class="example"><h3>Example: File extension</h3><p><code>
-        
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example: File extension</h3><pre class="prettyprint lang-config">
 # Files of a particular file extension
 AddHandler my-file-type .xyz
 Action my-file-type /cgi-bin/program.cgi
     </pre>
-
-    </code></p></div>
+</div>
     <p>In this example, requests for files with a file extension of
     <code>.xyz</code> are handled by the specified cgi script
     <code>/cgi-bin/program.cgi</code>.</p>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_auth_basic.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_auth_basic.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_auth_basic.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_auth_basic.html.en Fri Apr 27 19:06:57 2012
@@ -100,8 +100,7 @@ lower level modules</td></tr>
     The default <code>file</code> provider is implemented
     by the <code class="module"><a href="../mod/mod_authn_file.html">mod_authn_file</a></code> module.  Make sure
     that the chosen provider module is present in the server.</p>
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 &lt;Location /secure&gt;
     AuthType basic
     AuthName "private area"
@@ -111,8 +110,7 @@ lower level modules</td></tr>
     Require            valid-user
 &lt;/Location&gt;
     </pre>
-
-    </code></p></div>
+</div>
     <p> Providers are queried in order until a provider finds a match
     for the requested username, at which point this sole provider will
     attempt to check the password.  A failure to verify the password does

Modified: httpd/httpd/trunk/docs/manual/mod/mod_auth_digest.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_auth_digest.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_auth_digest.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_auth_digest.html.en Fri Apr 27 19:06:57 2012
@@ -77,8 +77,7 @@
     <p>Appropriate user (text) files can be created using the
     <code class="program"><a href="../programs/htdigest.html">htdigest</a></code> tool.</p>
 
-    <div class="example"><h3>Example:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example:</h3><pre class="prettyprint lang-config">
 &lt;Location /private/&gt;
     AuthType Digest
     AuthName "private area"
@@ -89,8 +88,7 @@
     Require valid-user
 &lt;/Location&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
     <div class="note"><h3>Note</h3>
     <p>Digest authentication is more secure than Basic authentication,
@@ -128,12 +126,10 @@
     remove the query string from the digest comparison.  Using this
     method would look similar to the following.</p>
 
-    <div class="example"><h3>Using Digest Authentication with MSIE:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Using Digest Authentication with MSIE:</h3><pre class="prettyprint lang-config">
         BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
     </pre>
-
-    </code></p></div>
+</div>
 
     <p>This workaround is not necessary for MSIE 7, though enabling it does
     not cause any compatibility issues or significant overhead.</p>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_auth_form.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_auth_form.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_auth_form.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_auth_form.html.en Fri Apr 27 19:06:57 2012
@@ -106,8 +106,7 @@
       a file using <code class="module"><a href="../mod/mod_authn_file.html">mod_authn_file</a></code>. If authentication is unsuccessful,
       the user will be redirected to the form login page.</p>
 
-      <div class="example"><h3>Basic example</h3><p><code>
-      <pre class="prettyprint lang-config">
+      <div class="example"><h3>Basic example</h3><pre class="prettyprint lang-config">
 AuthFormProvider file
 AuthUserFile conf/passwd
 AuthType form
@@ -117,8 +116,7 @@ Session On
 SessionCookieName session path=/
 SessionCryptoPassphrase secret
         </pre>
-
-      </code></p></div>
+</div>
 
       <p>The directive <code class="directive"><a href="../mod/mod_authn_core.html#authtype">AuthType</a></code> will enable
       the <code class="module"><a href="../mod/mod_auth_form.html">mod_auth_form</a></code> authentication when set to the value <var>form</var>.
@@ -163,8 +161,7 @@ SessionCryptoPassphrase secret
       The action of the form should point at this handler, which is configured within
       Apache httpd as follows:</p>
 
-      <div class="example"><h3>Form login handler example</h3><p><code>
-      <pre class="prettyprint lang-config">
+      <div class="example"><h3>Form login handler example</h3><pre class="prettyprint lang-config">
 &lt;Location /dologin.html&gt;
     SetHandler form-login-handler
     AuthFormLoginRequiredLocation http://example.com/login.html
@@ -178,8 +175,7 @@ SessionCryptoPassphrase secret
     SessionCryptoPassphrase secret
 &lt;/Location&gt;
         </pre>
-
-      </code></p></div>
+</div>
 
       <p>The URLs specified by the
       <code class="directive"><a href="#authformloginrequiredlocation">AuthFormLoginRequiredLocation</a></code> directive will typically
@@ -231,8 +227,7 @@ SessionCryptoPassphrase secret
       returned by the <var>HTTP_UNAUTHORIZED</var> status code with a custom error document
       containing the login form, as follows:</p>
 
-      <div class="example"><h3>Basic inline example</h3><p><code>
-      <pre class="prettyprint lang-config">
+      <div class="example"><h3>Basic inline example</h3><pre class="prettyprint lang-config">
 AuthFormProvider file
 ErrorDocument 401 /login.shtml
 AuthUserFile conf/passwd
@@ -243,8 +238,7 @@ Session On
 SessionCookieName session path=/
 SessionCryptoPassphrase secret
         </pre>
-
-      </code></p></div>
+</div>
 
       <p>The error document page should contain a login form with an empty action property,
       as per the example below.  This has the effect of submitting the form to
@@ -311,14 +305,12 @@ SessionCryptoPassphrase secret
       <p>Another option is to render the login form using a CGI script or other dynamic
       technology.</p>
 
-      <div class="example"><h3>CGI example</h3><p><code>
-      <pre class="prettyprint lang-config">
+      <div class="example"><h3>CGI example</h3><pre class="prettyprint lang-config">
         AuthFormProvider file
         <strong>ErrorDocument 401 /cgi-bin/login.cgi</strong>
         ...
         </pre>
-
-      </code></p></div>
+</div>
 
     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -335,8 +327,7 @@ SessionCryptoPassphrase secret
       logout. This URL might explain to the user that they have been logged out, and
       give the user the option to log in again.</p>
 
-      <div class="example"><h3>Basic logout example</h3><p><code>
-      <pre class="prettyprint lang-config">
+      <div class="example"><h3>Basic logout example</h3><pre class="prettyprint lang-config">
 SetHandler form-logout-handler
 AuthName realm
 AuthFormLogoutLocation http://example.com/loggedout.html
@@ -344,8 +335,7 @@ Session On
 SessionCookieName session path=/
 SessionCryptoPassphrase secret
         </pre>
-
-      </code></p></div>
+</div>
 
       <p>Note that logging a user out does not delete the session; it merely removes
       the username and password from the session. If this results in an empty session,
@@ -355,8 +345,7 @@ SessionCryptoPassphrase secret
       value, like 1 (setting the directive to zero would mean no session age limit).
       </p>
 
-      <div class="example"><h3>Basic session expiry example</h3><p><code>
-      <pre class="prettyprint lang-config">
+      <div class="example"><h3>Basic session expiry example</h3><pre class="prettyprint lang-config">
 SetHandler form-logout-handler
 AuthFormLogoutLocation http://example.com/loggedout.html
 Session On
@@ -364,8 +353,7 @@ SessionMaxAge 1
 SessionCookieName session path=/
 SessionCryptoPassphrase secret
         </pre>
-
-      </code></p></div>
+</div>
 
     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -539,8 +527,7 @@ lower level modules</td></tr>
     <p>When a URI is accessed that is served by the handler <code>form-logout-handler</code>,
     the page specified by this directive will be shown to the end user. For example:</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 &lt;Location /logout&gt;
     SetHandler form-logout-handler
     AuthFormLogoutLocation http://example.com/loggedout.html
@@ -548,8 +535,7 @@ lower level modules</td></tr>
     #...
 &lt;/Location&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>An attempt to access the URI <var>/logout/</var> will result in the user being logged
     out, and the page <var>/loggedout.html</var> will be displayed. Make sure that the page
@@ -638,8 +624,7 @@ lower level modules</td></tr>
     by the <code class="module"><a href="../mod/mod_authn_file.html">mod_authn_file</a></code> module.  Make sure
     that the chosen provider module is present in the server.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 &lt;Location /secure&gt;
     AuthType form
     AuthName "private area"
@@ -650,8 +635,7 @@ lower level modules</td></tr>
     #...
 &lt;/Location&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>Providers are implemented by <code class="module"><a href="../mod/mod_authn_dbm.html">mod_authn_dbm</a></code>,
     <code class="module"><a href="../mod/mod_authn_file.html">mod_authn_file</a></code>, <code class="module"><a href="../mod/mod_authn_dbd.html">mod_authn_dbd</a></code>,

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.en Fri Apr 27 19:06:57 2012
@@ -93,8 +93,7 @@
       (<code class="directive"><a href="#anonymous_logemail">Anonymous_LogEmail</a></code>)</li>
     </ul>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 &lt;Directory /var/www/html/private&gt;
     AuthName "Use 'anonymous' &amp; Email address for guest entry"
     AuthType Basic
@@ -110,8 +109,7 @@
     Require valid-user
 &lt;/Directory&gt;
       </pre>
-
-    </code></p></div>
+</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="Anonymous" id="Anonymous">Anonymous</a> <a name="anonymous" id="anonymous">Directive</a></h2>
@@ -135,12 +133,10 @@ password verification</td></tr>
     '<code>anonymous</code>' is always one of the allowed
     userIDs.</p>
 
-    <div class="example"><h3>Example:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example:</h3><pre class="prettyprint lang-config">
       Anonymous anonymous "Not Registered" "I don't know"
     </pre>
-
-    </code></p></div>
+</div>
 
     <p>This would allow the user to enter without password
     verification by using the userIDs "anonymous",

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authn_core.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authn_core.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authn_core.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authn_core.html.en Fri Apr 27 19:06:57 2012
@@ -68,8 +68,7 @@
         <p>This example checks for passwords in two different text
         files.</p>
 
-        <div class="example"><h3>Checking multiple text password files</h3><p><code>
-        <pre class="prettyprint lang-config">
+        <div class="example"><h3>Checking multiple text password files</h3><pre class="prettyprint lang-config">
 # Check here first
 &lt;AuthnProviderAlias file file1&gt;
     AuthUserFile /www/conf/passwords1
@@ -88,16 +87,14 @@
     Require valid-user
 &lt;/Directory&gt;
         </pre>
-
-        </code></p></div>
+</div>
 
         <p>The example below creates two different ldap authentication
         provider aliases based on the ldap provider.  This allows
         a single authenticated location to be serviced by multiple ldap
         hosts:</p>
 
-        <div class="example"><h3>Checking multiple LDAP servers</h3><p><code>
-        <pre class="prettyprint lang-config">
+        <div class="example"><h3>Checking multiple LDAP servers</h3><pre class="prettyprint lang-config">
 &lt;AuthnProviderAlias ldap ldap-alias1&gt;
     AuthLDAPBindDN cn=youruser,o=ctx
     AuthLDAPBindPassword yourpassword
@@ -121,8 +118,7 @@ Alias /secure /webpages/secure
     Require valid-user
 &lt;/Directory&gt;
           </pre>
-
-        </code></p></div>
+</div>
     
 
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_buffer.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_buffer.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_buffer.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_buffer.html.en Fri Apr 27 19:06:57 2012
@@ -58,12 +58,10 @@
     <code class="directive"><a href="../mod/mod_mime.html#addoutputfilter">AddOutputFilter</a></code> or
     <code class="directive"><a href="../mod/mod_filter.html#addoutputfilterbytype">AddOutputFilterByType</a></code> directives.</p>
 
-      <div class="example"><h3>Using buffer with mod_include</h3><p><code>
-      <pre class="prettyprint lang-config">
+      <div class="example"><h3>Using buffer with mod_include</h3><pre class="prettyprint lang-config">
         AddOutputFilterByType INCLUDES;BUFFER text/html
         </pre>
-
-      </code></p></div>
+</div>
 
     <div class="warning">The buffer filters read the request/response into
         RAM and then repack the request/response into the fewest memory

Modified: httpd/httpd/trunk/docs/manual/mod/mod_cache.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_cache.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_cache.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_cache.html.en Fri Apr 27 19:06:57 2012
@@ -169,8 +169,7 @@
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="sampleconf" id="sampleconf">Sample Configuration</a></h2>
-    <div class="example"><h3>Sample httpd.conf</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Sample httpd.conf</h3><pre class="prettyprint lang-config">
 #
 # Sample Cache Configuration
 #
@@ -188,8 +187,7 @@ LoadModule cache_module modules/mod_cach
     CacheDisable http://security.update.server/update-list/
 &lt;/IfModule&gt;
       </pre>
-
-    </code></p></div>
+</div>
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="thunderingherd" id="thunderingherd">Avoiding the Thundering Herd</a></h2>
@@ -241,8 +239,7 @@ LoadModule cache_module modules/mod_cach
   
   <h3>Example configuration</h3>
     
-    <div class="example"><h3>Enabling the cache lock</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Enabling the cache lock</h3><pre class="prettyprint lang-config">
 #
 # Enable the cache lock
 #
@@ -252,8 +249,7 @@ LoadModule cache_module modules/mod_cach
     CacheLockMaxAge 5
 &lt;/IfModule&gt;
       </pre>
-
-    </code></p></div>
+</div>
   
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -437,25 +433,21 @@ CacheDetailHeader on
     <code class="module"><a href="../mod/mod_cache.html">mod_cache</a></code> to <em>not</em> cache urls at or below
     <var>url-string</var>.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       CacheDisable /local_files
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>If used in a <code class="directive">&lt;Location&gt;</code> directive,
     the path needs to be specified below the Location, or if the word "on"
     is used, caching for the whole location will be disabled.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 &lt;Location /foo&gt;
     CacheDisable on
 &lt;/Location&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>The <code>no-cache</code> environment variable can be set to
     disable caching on a finer grained set of resources in versions
@@ -662,19 +654,15 @@ CacheHeader on
     behaviour), <code class="directive">CacheIgnoreHeaders</code> can be set to
     <code>None</code>.</p>
 
-    <div class="example"><h3>Example 1</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example 1</h3><pre class="prettyprint lang-config">
       CacheIgnoreHeaders Set-Cookie
       </pre>
+</div>
 
-    </code></p></div>
-
-    <div class="example"><h3>Example 2</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example 2</h3><pre class="prettyprint lang-config">
       CacheIgnoreHeaders None
       </pre>
-
-    </code></p></div>
+</div>
 
     <div class="warning"><h3>Warning:</h3>
       If headers like <code>Expires</code> which are needed for proper cache
@@ -765,19 +753,15 @@ header.</td></tr>
     <p><code>CacheIgnoreURLSessionIdentifiers None</code> clears the list of ignored
     identifiers. Otherwise, each identifier is added to the list.</p>
 
-    <div class="example"><h3>Example 1</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example 1</h3><pre class="prettyprint lang-config">
       CacheIgnoreURLSessionIdentifiers jsessionid
       </pre>
+</div>
 
-    </code></p></div>
-
-    <div class="example"><h3>Example 2</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example 2</h3><pre class="prettyprint lang-config">
       CacheIgnoreURLSessionIdentifiers None
       </pre>
-
-    </code></p></div>
+</div>
 
 
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.en Fri Apr 27 19:06:57 2012
@@ -177,12 +177,10 @@
     taken relative to the <code class="directive"><a href="../mod/core.html#serverroot">ServerRoot</a></code>.
     </p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       ScriptLog logs/cgi_log
     </pre>
-
-    </code></p></div>
+</div>
 
     <p>This log will be opened as the user the child processes run
     as, <em>i.e.</em> the user specified in the main <code class="directive"><a href="../mod/mod_unixd.html#user">User</a></code> directive. This means that

Modified: httpd/httpd/trunk/docs/manual/mod/mod_cgid.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_cgid.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_cgid.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_cgid.html.en Fri Apr 27 19:06:57 2012
@@ -92,12 +92,10 @@ the cgi daemon</td></tr>
     scripts, it is important that no other user has permission to
     write in the directory where the socket is located.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       ScriptSock /var/run/cgid.sock
     </pre>
-
-    </code></p></div>
+</div>
 
 
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_charset_lite.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_charset_lite.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_charset_lite.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_charset_lite.html.en Fri Apr 27 19:06:57 2012
@@ -114,15 +114,13 @@
     <a class="glossarylink" href="../glossary.html#apr" title="see glossary">APR</a>. Generally, this means that it must be
     supported by iconv.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 &lt;Directory /export/home/trawick/apacheinst/htdocs/convert&gt;
     CharsetSourceEnc  UTF-16BE
     CharsetDefault    ISO-8859-1
 &lt;/Directory&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
      <div class="note">
      Specifying the same charset for both <code class="directive"><a href="#charsetsourceenc">CharsetSourceEnc</a></code>
@@ -186,15 +184,13 @@
     <a class="glossarylink" href="../glossary.html#apr" title="see glossary">APR</a>. Generally, this means that it must be
     supported by iconv.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 &lt;Directory /export/home/trawick/apacheinst/htdocs/convert&gt;
     CharsetSourceEnc  UTF-16BE
     CharsetDefault    ISO-8859-1
 &lt;/Directory&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>The character set names in this example work with the iconv
     translation support in Solaris 8.</p>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_data.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_data.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_data.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_data.html.en Fri Apr 27 19:06:57 2012
@@ -58,14 +58,12 @@
     or any of the directives supported by the <code class="module"><a href="../mod/mod_filter.html">mod_filter</a></code>
     module.</p>
 
-    <div class="example"><h3>Configuring the filter</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Configuring the filter</h3><pre class="prettyprint lang-config">
 &lt;Location /data/images&gt;
     SetOutputFilter DATA
 &lt;/Location&gt;
         </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div id="quickview"><h3 class="directives">Directives</h3>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dav.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dav.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dav.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dav.html.en Fri Apr 27 19:06:57 2012
@@ -94,8 +94,7 @@
     directive. The "normal" <code class="directive"><a href="../mod/core.html#limitrequestbody">LimitRequestBody</a></code> directive has no effect on DAV
     requests.</p>
 
-    <div class="example"><h3>Full Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Full Example</h3><pre class="prettyprint lang-config">
 DavLockDB /usr/local/apache2/var/DavLock
 
 &lt;Directory /usr/local/apache2/htdocs/foo&gt;
@@ -111,8 +110,7 @@ DavLockDB /usr/local/apache2/var/DavLock
     &lt;/LimitExcept&gt;
 &lt;/Directory&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -249,14 +247,12 @@ a DAV resource</td></tr>
     (like 600 seconds) to reduce the chance of the client losing
     the lock due to network latency.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 &lt;Location /MSWord&gt;
     DavMinTimeout 600
 &lt;/Location&gt;
     </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.html.en Fri Apr 27 19:06:57 2012
@@ -40,12 +40,10 @@
     will be invoked by using the <code class="directive"><a href="../mod/mod_dav.html#dav">Dav</a></code>
     directive:</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       Dav filesystem
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>Since <code>filesystem</code> is the default provider for
     <code class="module"><a href="../mod/mod_dav.html">mod_dav</a></code>, you may simply use the value
@@ -77,12 +75,10 @@
 
     
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       DavLockDB var/DavLock
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>The directory containing the lock database file must be
     writable by the <code class="directive"><a href="../mod/mod_unixd.html#user">User</a></code>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.en Fri Apr 27 19:06:57 2012
@@ -79,12 +79,10 @@
     <code class="module"><a href="../mod/mod_dav_lock.html">mod_dav_lock</a></code> uses a SDBM database to track user
     locks.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       DavGenericLockDB var/DavLock
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>The directory containing the lock database file must be
     writable by the <code class="directive"><a href="../mod/mod_unixd.html#user">User</a></code>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en Fri Apr 27 19:06:57 2012
@@ -63,19 +63,16 @@ client</td></tr>
 <h2><a name="recommended" id="recommended">Sample Configurations</a></h2>
     <p>This is a simple sample configuration for the impatient.</p>
 
-    <div class="example"><h3>Compress only a few types</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Compress only a few types</h3><pre class="prettyprint lang-config">
       AddOutputFilterByType DEFLATE text/html text/plain text/xml
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>The following configuration, while resulting in more compressed content,
     is also much more complicated.  Do not use this unless you fully understand
     all the configuration details.</p>
 
-    <div class="example"><h3>Compress everything except images</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Compress everything except images</h3><pre class="prettyprint lang-config">
 &lt;Location /&gt;
     # Insert filter
     SetOutputFilter DEFLATE
@@ -95,8 +92,7 @@ client</td></tr>
     Header append Vary User-Agent env=!dont-vary
 &lt;/Location&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -247,12 +243,10 @@ BrowserMatch \bMSIE             !no-gzip
     <code>Vary</code> header to the value <code>*</code>. This prevents
     compliant proxies from caching entirely.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       Header set Vary *
       </pre>
-
-    </code></p></div>
+</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="DeflateBufferSize" id="DeflateBufferSize">DeflateBufferSize</a> <a name="deflatebuffersize" id="deflatebuffersize">Directive</a></h2>
@@ -303,15 +297,13 @@ BrowserMatch \bMSIE             !no-gzip
     the directive. You can use that note for statistical purposes by
     adding the value to your <a href="../logs.html#accesslog">access log</a>.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       DeflateFilterNote ratio
     
       LogFormat '"%r" %b (%{ratio}n) "%{User-agent}i"' deflate
       CustomLog logs/deflate_log deflate
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>If you want to extract more accurate values from your logs, you
     can use the <var>type</var> argument to specify the type of data
@@ -332,8 +324,7 @@ BrowserMatch \bMSIE             !no-gzip
 
     <p>Thus you may log it this way:</p>
 
-    <div class="example"><h3>Accurate Logging</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Accurate Logging</h3><pre class="prettyprint lang-config">
 DeflateFilterNote Input instream
 DeflateFilterNote Output outstream
 DeflateFilterNote Ratio ratio
@@ -341,8 +332,7 @@ DeflateFilterNote Ratio ratio
 LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
 CustomLog logs/deflate_log deflate
 </pre>
-
-    </code></p></div>
+</div>
 
 <h3>See also</h3>
 <ul>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dir.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dir.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dir.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dir.html.en Fri Apr 27 19:06:57 2012
@@ -92,12 +92,10 @@ a directory</td></tr>
     set, the server will generate its own listing of the
     directory.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       DirectoryIndex index.html
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>then a request for <code>http://example.com/docs/</code> would
     return <code>http://example.com/docs/index.html</code> if it
@@ -141,12 +139,10 @@ a directory</td></tr>
     and returned transparently to the client.  <code class="directive">DirectoryIndexRedirect</code> causes an external redirect
     to instead be issued.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       DirectoryIndexRedirect on
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>A request for <code>http://example.com/docs/</code> would
     return a temporary redirect to <code>http://example.com/docs/index.html</code>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dumpio.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dumpio.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dumpio.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dumpio.html.en Fri Apr 27 19:06:57 2012
@@ -82,12 +82,10 @@ later.</td></tr>
 </table>
     <p>Enable dumping of all input.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       DumpIOInput On
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -104,12 +102,10 @@ later.</td></tr>
 </table>
     <p>Enable dumping of all output.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       DumpIOOutput On
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_echo.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_echo.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_echo.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_echo.html.en Fri Apr 27 19:06:57 2012
@@ -62,12 +62,10 @@ later.</td></tr>
     <p>The <code class="directive">ProtocolEcho</code> directive enables or
     disables the echo server.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       ProtocolEcho On
     </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_env.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_env.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_env.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_env.html.en Fri Apr 27 19:06:57 2012
@@ -73,12 +73,10 @@ SSI pages</td></tr>
     native OS environment of the shell which invoked the
     <code class="program"><a href="../programs/httpd.html">httpd</a></code> process.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       PassEnv LD_LIBRARY_PATH
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -94,12 +92,10 @@ SSI pages</td></tr>
     <p>Sets an internal environment variable, which is then available to Apache
     HTTP Server modules, and passed on to CGI scripts and SSI pages.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       SetEnv SPECIAL_PATH /foo/bin
       </pre>
-
-    </code></p></div>
+</div>
 
     <div class="note"><p>The internal environment variables set by this directive are set
     <em>after</em> most early request processing directives are run, such as access
@@ -130,12 +126,10 @@ SSI pages</td></tr>
     <p>Removes one or more internal environment variables from those passed
     on to CGI scripts and SSI pages.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       UnsetEnv LD_LIBRARY_PATH
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_expires.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_expires.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_expires.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_expires.html.en Fri Apr 27 19:06:57 2012
@@ -205,8 +205,7 @@ by MIME type</td></tr>
     the same images (<em>i.e.</em>, the images will be accessed
     repeatedly within a relatively short timespan).</p>
 
-    <div class="example"><h3>Example:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example:</h3><pre class="prettyprint lang-config">
 # enable expirations
 ExpiresActive On
 # expire GIF images after a month in the client's cache
@@ -215,8 +214,7 @@ ExpiresByType image/gif A2592000
 # time they were changed
 ExpiresByType text/html M604800
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>Note that this directive only has effect if
     <code>ExpiresActive On</code> has been specified. It overrides,

Modified: httpd/httpd/trunk/docs/manual/mod/mod_ext_filter.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_ext_filter.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_ext_filter.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_ext_filter.html.en Fri Apr 27 19:06:57 2012
@@ -186,8 +186,7 @@ ExtFilterDefine traceafter \
       </pre>
 
 
-      <div class="example"><h3>Here is the filter which traces the data:</h3><p><code>
-      <pre class="prettyprint lang-perl">
+      <div class="example"><h3>Here is the filter which traces the data:</h3><pre class="prettyprint lang-perl">
 #!/usr/local/bin/perl -w
 use strict;
 
@@ -201,8 +200,7 @@ while (&lt;STDIN&gt;) {
 
 close(SAVE);
         </pre>
-
-      </code></p></div>
+</div>
     
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_file_cache.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_file_cache.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_file_cache.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_file_cache.html.en Fri Apr 27 19:06:57 2012
@@ -168,12 +168,10 @@
     with filenames rewritten by <code class="module"><a href="../mod/mod_alias.html">mod_alias</a></code> or
     <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code>.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       CacheFile /usr/local/apache/htdocs/index.html
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -201,12 +199,10 @@
     with filenames rewritten by <code class="module"><a href="../mod/mod_alias.html">mod_alias</a></code> or
     <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code>.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       MMapFile /usr/local/apache/htdocs/index.html
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_firehose.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_firehose.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_firehose.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_firehose.html.en Fri Apr 27 19:06:57 2012
@@ -177,12 +177,10 @@ later.</td></tr>
     requests will be captured within the same connection if keepalive is
     present.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       FirehoseConnectionInput connection-input.firehose
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -201,12 +199,10 @@ later.</td></tr>
     Multiple requests will be captured within the same connection if
     keepalive is present.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       FirehoseConnectionOutput connection-output.firehose
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -223,12 +219,10 @@ later.</td></tr>
 </table>
     <p>Capture traffic being received by mod_proxy.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       FirehoseProxyConnectionInput proxy-input.firehose
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -245,12 +239,10 @@ later.</td></tr>
 </table>
     <p>Capture traffic being sent out by mod_proxy.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       FirehoseProxyConnectionOutput proxy-output.firehose
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -268,12 +260,10 @@ later.</td></tr>
     <p>Capture traffic coming into the server on each request. Requests
     will be captured separately, regardless of the presence of keepalive.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       FirehoseRequestInput request-input.firehose
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -291,12 +281,10 @@ later.</td></tr>
     <p>Capture traffic going out of the server on each request. Requests
     will be captured separately, regardless of the presence of keepalive.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       FirehoseRequestOutput request-output.firehose
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_info.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_info.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_info.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_info.html.en Fri Apr 27 19:06:57 2012
@@ -91,8 +91,7 @@ configuration</td></tr>
     <p>You will probably want to use <code class="module"><a href="../mod/mod_authz_host.html">mod_authz_host</a></code>
     to limit access to your server configuration information.</p>
 
-    <div class="example"><h3>Access control</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Access control</h3><pre class="prettyprint lang-config">
 &lt;Location /server-info&gt;
     SetHandler server-info
     Order allow,deny
@@ -102,8 +101,7 @@ configuration</td></tr>
     Allow from 192.168.1.17
 &lt;/Location&gt;
       </pre>
-
-    </code></p></div>
+</div>
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="queries" id="queries">Selecting the information shown</a></h2>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_log_config.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_log_config.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_log_config.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_log_config.html.en Fri Apr 27 19:06:57 2012
@@ -494,12 +494,10 @@ CustomLog referer.log referer env=!local
     to define another nickname. Note that the nickname should not contain
     percent signs (<code>%</code>).</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       LogFormat "%v %h %l %u %t \"%r\" %&gt;s %b" vhost_common
       </pre>
-
-    </code></p></div>
+</div>
     
 
 </div>
@@ -521,13 +519,11 @@ CustomLog referer.log referer env=!local
     which does not define a nickname. Common Log Format is used if no
     other format has been specified.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 LogFormat "%h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-agent}i\""
 TransferLog logs/access_log
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en Fri Apr 27 19:06:57 2012
@@ -458,14 +458,12 @@ end
     <p>In general stat or forever is good for production, and stat or never
     for development.</p>
 
-    <div class="example"><h3>Examples:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Examples:</h3><pre class="prettyprint lang-config">
 LuaCodeCache stat
 LuaCodeCache forever
 LuaCodeCache never
     </pre>
-
-    </code></p></div>
+</div>
 
 
 </div>
@@ -692,12 +690,10 @@ end
     match groups into both the file path and the function name
     be careful writing your regular expressions to avoid security
     issues.</p>
-   <div class="example"><h3>Examples:</h3><p><code>
-   <pre class="prettyprint lang-config">
+   <div class="example"><h3>Examples:</h3><pre class="prettyprint lang-config">
     LuaMapHandler /(\w+)/(/w+) /scripts/$1.lua handle_$2
     </pre>
-
-   </code></p></div>
+</div>
         <p>This would match uri's such as /photos/show?id=9
         to the file /scripts/photos.lua and invoke the
         handler function handle_show on the lua vm after
@@ -741,13 +737,11 @@ end
     conventions as lua. This just munges the package.path in the
     lua vms.</p>
 
-    <div class="example"><h3>Examples:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Examples:</h3><pre class="prettyprint lang-config">
 LuaPackagePath /scripts/lib/?.lua
 LuaPackagePath /scripts/lib/?/init.lua
     </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_mime.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_mime.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_mime.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_mime.html.en Fri Apr 27 19:06:57 2012
@@ -156,14 +156,12 @@
     script, but not the file <code>bar.cgi.html</code>, then instead
     of using <code>AddHandler cgi-script .cgi</code>, use</p>
 
-    <div class="example"><h3>Configure handler based on final extension only</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Configure handler based on final extension only</h3><pre class="prettyprint lang-config">
 &lt;FilesMatch \.cgi$&gt;
   SetHandler cgi-script
 &lt;/FilesMatch&gt;
     </pre>
-
-    </code></p></div>
+</div>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -270,15 +268,13 @@ charset</td></tr>
     overriding any mappings that already exist for the same
     <var>extension</var>.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 AddLanguage ja .ja
 AddCharset EUC-JP .euc
 AddCharset ISO-2022-JP .jis
 AddCharset SHIFT_JIS .sjis
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>Then the document <code>xxxx.ja.jis</code> will be treated
     as being a Japanese document whose charset is <code>ISO-2022-JP</code>
@@ -321,13 +317,11 @@ type</td></tr>
     overriding any mappings that already exist for the same
     <var>extension</var>.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 AddEncoding x-gzip .gz
 AddEncoding x-compress .Z
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>This will cause filenames containing the <code>.gz</code> extension
     to be marked as encoded using the <code>x-gzip</code> encoding, and
@@ -449,14 +443,12 @@ language</td></tr>
     This directive overrides any mappings that already exist for the same
     <var>extension</var>.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 AddEncoding x-compress .Z
 AddLanguage en .en
 AddLanguage fr .fr
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>Then the document <code>xxxx.en.Z</code> will be treated as
     being a compressed English document (as will the document
@@ -590,21 +582,17 @@ type</td></tr>
       <code class="directive"><a href="#typesconfig">TypesConfig</a></code> file.
     </div>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       AddType image/gif .gif
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>Or, to specify multiple file extensions in one directive:</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       AddType image/jpeg jpeg jpg jpe
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>The <var>extension</var> argument is case-insensitive and can
     be specified with or without a leading dot. Filenames may have <a href="#multipleext">multiple extensions</a> and the
@@ -616,12 +604,10 @@ type</td></tr>
     can be achieved by qualifying a <var>media-type</var> with
     <code>qs</code>:</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       AddType application/rss+xml;qs=0.8 .xml
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>This is useful in situations, <em>e.g.</em> when a client
     requesting <code>Accept: */*</code> can not actually processes
@@ -667,12 +653,10 @@ assigned a language-tag by some other me
     by <code class="directive"><a href="#addlanguage">AddLanguage</a></code>, then no
     Content-Language header field will be generated.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       DefaultLanguage en
       </pre>
-
-    </code></p></div>
+</div>
 
 <h3>See also</h3>
 <ul>
@@ -699,12 +683,10 @@ components as part of the filename</td><
 
     <p>This directive is recommended when you have a virtual filesystem.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       ModMimeUsePathInfo On
       </pre>
-
-    </code></p></div>
+</div>
 
     <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
@@ -806,12 +788,10 @@ later.</td></tr>
     <p>The <var>extension</var> argument is case-insensitive and can
     be specified with or without a leading dot.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       RemoveCharset .html .shtml
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -832,16 +812,14 @@ extensions</td></tr>
     any associations inherited from parent directories or the
     server config files. An example of its use might be:</p>
 
-    <div class="example"><h3>/foo/.htaccess:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>/foo/.htaccess:</h3><pre class="prettyprint lang-config">
 AddEncoding x-gzip .gz
 AddType text/plain .asc
 &lt;Files *.gz.asc&gt;
     RemoveEncoding .gz
 &lt;/Files&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>This will cause <code>foo.gz</code> to be marked as being
     encoded with the gzip method, but <code>foo.gz.asc</code> as an
@@ -876,19 +854,15 @@ extensions</td></tr>
     associations inherited from parent directories or the server
     config files. An example of its use might be:</p>
 
-    <div class="example"><h3>/foo/.htaccess:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>/foo/.htaccess:</h3><pre class="prettyprint lang-config">
       AddHandler server-parsed .html
       </pre>
+</div>
 
-    </code></p></div>
-
-    <div class="example"><h3>/foo/bar/.htaccess:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>/foo/bar/.htaccess:</h3><pre class="prettyprint lang-config">
       RemoveHandler .html
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>This has the effect of returning <code>.html</code> files in
     the <code>/foo/bar</code> directory to being treated as normal
@@ -976,12 +950,10 @@ later.</td></tr>
     <p>The <var>extension</var> argument is case-insensitive and can
     be specified with or without a leading dot.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       RemoveOutputFilter shtml
       </pre>
-
-    </code></p></div>
+</div>
 
 <h3>See also</h3>
 <ul>
@@ -1007,12 +979,10 @@ extensions</td></tr>
     directories or the server config files. An example of its use
     might be:</p>
 
-    <div class="example"><h3>/foo/.htaccess:</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>/foo/.htaccess:</h3><pre class="prettyprint lang-config">
       RemoveType .cgi
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>This will remove any special handling of <code>.cgi</code>
     files in the <code>/foo/</code> directory and any beneath it,

Modified: httpd/httpd/trunk/docs/manual/mod/mod_mime_magic.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_mime_magic.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_mime_magic.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_mime_magic.html.en Fri Apr 27 19:06:57 2012
@@ -264,12 +264,10 @@ using the specified magic file</td></tr>
     used, in which case the more specific setting overrides the main
     server's file.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       MimeMagicFile conf/magic
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_policy.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_policy.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_policy.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_policy.html.en Fri Apr 27 19:06:57 2012
@@ -284,13 +284,11 @@ later.</td></tr>
     <p>When logged or enforced, a response that should have been conditional
     but wasn't will be rejected.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # non-functional conditional responses should be rejected
 PolicyConditional enforce
     </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -327,13 +325,11 @@ later.</td></tr>
     variable is present and equal to the ignore-value, all policies will
     be ignored.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # downgrade if POLICY_CONTROL was present
 PolicyEnvironment POLICY_CONTROL log ignore
     </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -350,8 +346,7 @@ later.</td></tr>
 </table>
     <p>Master switch to enable or disable policies for a given URL space.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # enabled by default
 &lt;Location /&gt;
   PolicyFilter on
@@ -362,8 +357,7 @@ later.</td></tr>
   PolicyFilter off
 &lt;/Location&gt;
 </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -382,13 +376,11 @@ later.</td></tr>
     <code>Content-Length</code> header and a <code>Transfer-Encoding</code>
     of <code>chunked</code> will be rejected.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # missing Content-Length or Transfer-Encoding should be rejected
 PolicyKeepalive enforce
 </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -422,13 +414,11 @@ later.</td></tr>
     <p>When logged or enforced, a response that lacks an explicit
     <code>Content-Length</code> header will be rejected.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # missing Content-Length header should be rejected
 PolicyLength enforce
     </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -464,13 +454,11 @@ later.</td></tr>
     <code>Expires</code> header, or where the explicit freshness lifetime is
     smaller than the given value, will be rejected.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # reject responses with a freshness lifetime shorter than a day
 PolicyMaxage enforce 86400
     </pre>
-
-    </code></p></div>
+</div>
 
 
 </div>
@@ -506,13 +494,11 @@ later.</td></tr>
     using the <code>Cache-Control</code> or <code>Pragma</code> headers will
     be rejected.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # Cache-Control: no-cache will be rejected
 PolicyNocache enforce
     </pre>
-
-    </code></p></div>
+</div>
 
 
 </div>
@@ -548,21 +534,17 @@ later.</td></tr>
     header, where the <code>Content-Type</code> header is malformed, or where the
     header does not match the given pattern or patterns will be rejected.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # enforce json or XML
 PolicyType enforce application/json text/xml
     </pre>
+</div>
 
-    </code></p></div>
-
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # malformed content type should be rejected
 PolicyType enforce */*
     </pre>
-
-    </code></p></div>
+</div>
 
 
 </div>
@@ -598,13 +580,11 @@ later.</td></tr>
     <code>ETag</code> header or a <code>Last-Modified</code> header, or where
     either header is syntactically incorrect, will be rejected.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # no ETag or Last-Modified will be rejected
 PolicyValidation enforce
     </pre>
-
-    </code></p></div>
+</div>
 
 
 </div>
@@ -640,13 +620,11 @@ later.</td></tr>
     header which in turn contains one of the headers listed, will be
     rejected.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # reject reponses with "User-Agent" listed in the Vary header
 PolicyVary enforce User-Agent
     </pre>
-
-    </code></p></div>
+</div>
 
 
 </div>
@@ -681,13 +659,11 @@ later.</td></tr>
     <p>When logged or enforced, a request with a version lower than specified
     will be rejected.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 # reject requests with an HTTP version older than HTTP/1.1
 PolicyVersion enforce HTTP/1.1
     </pre>
-
-    </code></p></div>
+</div>
 
 
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy.html.en Fri Apr 27 19:06:57 2012
@@ -196,16 +196,13 @@
     <p>In addition, if you wish to have caching enabled, consult
     the documentation from <code class="module"><a href="../mod/mod_cache.html">mod_cache</a></code>.</p>
 
-    <div class="example"><h3>Reverse Proxy</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Reverse Proxy</h3><pre class="prettyprint lang-config">
 ProxyPass /foo http://foo.example.com/bar
 ProxyPassReverse /foo http://foo.example.com/bar
     </pre>
+</div>
 
-    </code></p></div>
-
-    <div class="example"><h3>Forward Proxy</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Forward Proxy</h3><pre class="prettyprint lang-config">
 ProxyRequests On
 ProxyVia On
 
@@ -213,8 +210,7 @@ ProxyVia On
   Require host internal.example.com
 &lt;/Proxy&gt;
     </pre>
-
-    </code></p></div>
+</div>
     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="workers" id="workers">Workers</a></h2>
@@ -531,13 +527,11 @@ directly</td></tr>
     always served directly, without forwarding to the configured
     <code class="directive"><a href="#proxyremote">ProxyRemote</a></code> proxy server(s).</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 ProxyRemote  *  http://firewall.example.com:81
 NoProxy         .example.com 192.168.112.0/21
     </pre>
-
-    </code></p></div>
+</div>
 
     <p>The <var>host</var> arguments to the <code class="directive">NoProxy</code>
     directive are one of the following type list:</p>
@@ -752,12 +746,10 @@ proxied</td></tr>
     may be hostnames during startup, and cache them for match test as
     well. That may slow down the startup time of the server.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       ProxyBlock news.example.com auctions.example.com friends.example.com
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>Note that <code>example</code> would also be sufficient to match any
     of these sites.</p>
@@ -790,14 +782,12 @@ proxied</td></tr>
     response to the same host with the configured <var>Domain</var> appended
     will be generated.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       ProxyRemote  *  http://firewall.example.com:81<br />
       NoProxy         .example.com 192.168.112.0/21<br />
       ProxyDomain     .example.com
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -886,12 +876,10 @@ through</td></tr>
     <code>Max-Forwards</code> header supplied with the request. This may
     be set to prevent infinite proxy loops, or a DoS attack.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       ProxyMaxForwards 15
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>Note that setting <code class="directive">ProxyMaxForwards</code> is a
     violation of the HTTP/1.1 protocol (RFC2616), which forbids a Proxy
@@ -1599,12 +1587,10 @@ connections</td></tr>
     to <code>0</code> to indicate that the system's default buffer size should
     be used.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
       ProxyReceiveBufferSize 2048
       </pre>
-
-    </code></p></div>
+</div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -1632,14 +1618,12 @@ connections</td></tr>
     are supported by this module. When using <code>https</code>, the requests
     are forwarded through the remote proxy using the HTTP CONNECT method.</p>
 
-    <div class="example"><h3>Example</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Example</h3><pre class="prettyprint lang-config">
 ProxyRemote http://goodguys.example.com/ http://mirrorguys.example.com:8000
 ProxyRemote * http://cleverproxy.localdomain
 ProxyRemote ftp http://ftpproxy.mydomain:8080
     </pre>
-
-    </code></p></div>
+</div>
 
     <p>In the last example, the proxy will forward FTP requests, encapsulated
     as yet another HTTP proxy request, to another proxy which can handle
@@ -1719,16 +1703,14 @@ expressions</td></tr>
     <code class="directive"><a href="../mod/mod_rewrite.html#rewriterule">RewriteRule</a></code> instead of a
     <code class="directive"><a href="#proxypass">ProxyPass</a></code> directive.</p>
 
-    <div class="example"><p><code>
-        <pre class="prettyprint lang-config">
+    <div class="example"><pre class="prettyprint lang-config">
 &lt;Proxy balancer://hotcluster&gt;
     BalancerMember http://www2.example.com:8080 loadfactor=1
     BalancerMember http://www3.example.com:8080 loadfactor=2
     ProxySet lbmethod=bytraffic
 &lt;/Proxy&gt;
       </pre>
-
-    </code></p></div>
+</div>
 
     <pre class="prettyprint lang-config">
 &lt;Proxy http://backend&gt;

Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.html.en Fri Apr 27 19:06:57 2012
@@ -72,16 +72,13 @@
     (e.g. Apache Tomcat) using the AJP13 protocol. The usage is similar to
     an HTTP reverse proxy, but uses the <code>ajp://</code> prefix:</p>
 
-    <div class="example"><h3>Simple Reverse Proxy</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Simple Reverse Proxy</h3><pre class="prettyprint lang-config">
     ProxyPass /app ajp://backend.example.com:8009/app
     </pre>
-
-    </code></p></div>
+</div>
 
     <p>Balancers may also be used:</p>
-    <div class="example"><h3>Balancer Reverse Proxy</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Balancer Reverse Proxy</h3><pre class="prettyprint lang-config">
 &lt;Proxy balancer://cluster&gt;
     BalancerMember ajp://app1.example.com:8009 loadfactor=1
     BalancerMember ajp://app2.example.com:8009 loadfactor=2
@@ -89,8 +86,7 @@
 &lt;/Proxy&gt;
 ProxyPass /app balancer://cluster/app
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>Note that usually no
     <code class="directive"><a href="../mod/mod_proxy.html#proxypassreverse">ProxyPassReverse</a></code>
@@ -104,13 +100,11 @@ ProxyPass /app balancer://cluster/app
     backend. In this case, a redirect header can be rewritten relative to the
     original host URL (not the backend <code>ajp://</code> URL), for
     example:</p>
-    <div class="example"><h3>Rewriting Proxied Path</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Rewriting Proxied Path</h3><pre class="prettyprint lang-config">
 ProxyPass /apps/foo ajp://backend.example.com:8009/foo
 ProxyPassReverse /apps/foo http://www.example.com/foo
     </pre>
-
-    </code></p></div>
+</div>
     <p>However, it is usually better to deploy the application on the backend
     server at the same path as the proxy rather than to take this approach.
     </p>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.html.en Fri Apr 27 19:06:57 2012
@@ -71,12 +71,10 @@
     <p>Remember, in order to make the following examples work, you have to
     enable <code class="module"><a href="../mod/mod_proxy.html">mod_proxy</a></code> and <code class="module"><a href="../mod/mod_proxy_fcgi.html">mod_proxy_fcgi</a></code>.</p>
 
-    <div class="example"><h3>Single application instance</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Single application instance</h3><pre class="prettyprint lang-config">
       ProxyPass /myapp/ fcgi://localhost:4000/
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>This application should be able to handle multiple concurrent
     connections.  <code class="module"><a href="../mod/mod_proxy.html">mod_proxy</a></code> enables connection reuse by
@@ -89,12 +87,10 @@
     reuse on the <code class="directive">ProxyPass</code> directive, as shown in
     the following example:</p>
 
-    <div class="example"><h3>Single application instance, no connection reuse</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Single application instance, no connection reuse</h3><pre class="prettyprint lang-config">
       ProxyPass /myapp/ fcgi://localhost:4000/ disablereuse=on
       </pre>
-
-    </code></p></div>
+</div>
 
     <p>The balanced gateway needs <code class="module"><a href="../mod/mod_proxy_balancer.html">mod_proxy_balancer</a></code> and
     at least one load balancer algorithm module, such as
@@ -102,16 +98,14 @@
     modules listed above.  <code class="module"><a href="../mod/mod_lbmethod_byrequests.html">mod_lbmethod_byrequests</a></code> is the
     default, and will be used for this example configuration.</p>
 
-    <div class="example"><h3>Balanced gateway to multiple application instances</h3><p><code>
-    <pre class="prettyprint lang-config">
+    <div class="example"><h3>Balanced gateway to multiple application instances</h3><pre class="prettyprint lang-config">
 ProxyPass /myapp/ balancer://myappcluster/
 &lt;Proxy balancer://myappcluster/&gt;
     BalancerMember fcgi://localhost:4000/
     BalancerMember fcgi://localhost:4001/
 &lt;/Proxy&gt;
     </pre>
-
-    </code></p></div>
+</div>
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="env" id="env">Environment Variables</a></h2>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_ftp.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy_ftp.html.en?rev=1331546&r1=1331545&r2=1331546&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy_ftp.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy_ftp.html.en Fri Apr 27 19:06:57 2012
@@ -80,10 +80,8 @@
 
       <div class="example"><pre>application/octet-stream   bin dms lha lzh exe class tgz taz</pre></div>
     <p>Alternatively you may prefer to default everything to binary:</p>
-      <div class="example"><p><code>
-        <pre class="prettyprint lang-config">ForceType application/octet-stream</pre>
-
-      </code></p></div>
+      <div class="example"><pre class="prettyprint lang-config">ForceType application/octet-stream</pre>
+</div>
     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="type" id="type">How can I force an FTP ASCII download of