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/05/04 17:02:21 UTC

svn commit: r1334011 - /httpd/httpd/branches/2.4.x/docs/manual/mod/

Author: humbedooh
Date: Fri May  4 15:02:21 2012
New Revision: 1334011

URL: http://svn.apache.org/viewvc?rev=1334011&view=rev
Log:
Backporting syntax highlighting for mod_b|c|d*.xml

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_buffer.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_disk.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cern_meta.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgi.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgid.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_charset_lite.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_data.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_fs.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_lock.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dbd.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_deflate.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dialup.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dumpio.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_buffer.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_buffer.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_buffer.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_buffer.xml Fri May  4 15:02:21 2012
@@ -55,7 +55,9 @@
     <directive module="mod_filter">AddOutputFilterByType</directive> directives.</p>
 
       <example><title>Using buffer with mod_include</title>
-        AddOutputFilterByType INCLUDES;BUFFER text/html<br />
+      <highlight language="config">
+        AddOutputFilterByType INCLUDES;BUFFER text/html
+        </highlight>
       </example>
 
     <note type="warning">The buffer filters read the request/response into

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache.xml Fri May  4 15:02:21 2012
@@ -112,6 +112,12 @@
     supported by this module. The <program>htcacheclean</program> tool is
     provided to list cached URLs, remove cached URLs, or to maintain the size
     of the disk cache within size and inode limits.</dd>
+    <dt><module>mod_cache_socache</module></dt>
+    <dd>Implements a shared object cache based storage manager. Headers and
+    bodies are stored together beneath a single key based on the URL of the
+    response being cached. Multiple content negotiated responses can
+    be stored concurrently, however the caching of partial content is not
+    supported by this module.</dd>
     </dl>
 
     <p>Further details, discussion, and examples, are provided in the
@@ -123,6 +129,7 @@
     <related>
       <modulelist>
         <module>mod_cache_disk</module>
+        <module>mod_cache_socache</module>
       </modulelist>
       <directivelist>
         <directive module="mod_cache_disk">CacheRoot</directive>
@@ -130,33 +137,36 @@
         <directive module="mod_cache_disk">CacheDirLength</directive>
         <directive module="mod_cache_disk">CacheMinFileSize</directive>
         <directive module="mod_cache_disk">CacheMaxFileSize</directive>
+        <directive module="mod_cache_socache">CacheSocache</directive>
+        <directive module="mod_cache_socache">CacheSocacheMaxTime</directive>
+        <directive module="mod_cache_socache">CacheSocacheMinTime</directive>
+        <directive module="mod_cache_socache">CacheSocacheMaxSize</directive>
+        <directive module="mod_cache_socache">CacheSocacheReadSize</directive>
+        <directive module="mod_cache_socache">CacheSocacheReadTime</directive>
       </directivelist>
     </related>
 </section>
 
 <section id="sampleconf"><title>Sample Configuration</title>
     <example><title>Sample httpd.conf</title>
-      #<br />
-      # Sample Cache Configuration<br />
-      #<br />
-      LoadModule cache_module modules/mod_cache.so<br />
-      <br />
-      &lt;IfModule mod_cache.c&gt;<br />
-      <indent>
-        LoadModule cache_disk_module modules/mod_cache_disk.so<br />
-        &lt;IfModule mod_cache_disk.c&gt;<br />
-        <indent>
-          CacheRoot c:/cacheroot<br />
-          CacheEnable disk  /<br />
-          CacheDirLevels 5<br />
-          CacheDirLength 3<br />
-        </indent>
-        &lt;/IfModule&gt; <br />
-        <br />
-        # When acting as a proxy, don't cache the list of security updates<br />
-        CacheDisable http://security.update.server/update-list/<br />
-      </indent>
-      &lt;/IfModule&gt;
+    <highlight language="config">
+#
+# Sample Cache Configuration
+#
+LoadModule cache_module modules/mod_cache.so
+&lt;IfModule mod_cache.c&gt;
+    LoadModule cache_disk_module modules/mod_cache_disk.so
+    &lt;IfModule mod_cache_disk.c&gt;
+        CacheRoot c:/cacheroot
+        CacheEnable disk  /
+        CacheDirLevels 5
+        CacheDirLength 3
+    &lt;/IfModule&gt;
+    
+    # When acting as a proxy, don't cache the list of security updates
+    CacheDisable http://security.update.server/update-list/
+&lt;/IfModule&gt;
+      </highlight>
     </example>
 </section>
 
@@ -210,16 +220,16 @@
   <section>
     <title>Example configuration</title>
     <example><title>Enabling the cache lock</title>
-      #<br />
-      # Enable the cache lock<br />
-      #<br />
-      &lt;IfModule mod_cache.c&gt;<br />
-      <indent>
-        CacheLock on<br />
-        CacheLockPath /tmp/mod_cache-lock<br />
-        CacheLockMaxAge 5<br />
-      </indent>
-      &lt;/IfModule&gt;
+    <highlight language="config">
+#
+# Enable the cache lock
+#
+&lt;IfModule mod_cache.c&gt;
+    CacheLock on
+    CacheLockPath /tmp/mod_cache-lock
+    CacheLockMaxAge 5
+&lt;/IfModule&gt;
+      </highlight>
     </example>
   </section>
 </section>
@@ -253,33 +263,33 @@
   place the <strong>CACHE</strong> filter before the <strong>DEFLATE</strong>
   filter as in the example below:</p>
 
-  <example>
-    # Cache content before optional compression<br />
-    CacheQuickHandler off<br />
-    AddOutputFilterByType CACHE;DEFLATE text/plain<br /><br />
-  </example>
+  <highlight language="config">
+# Cache content before optional compression
+CacheQuickHandler off
+AddOutputFilterByType CACHE;DEFLATE text/plain
+  </highlight>
 
   <p>Another option is to have content cached before personalisation is applied
   by <module>mod_include</module> (or another content processing filter). In this
   example templates containing tags understood by
   <module>mod_include</module> are cached before being parsed:</p>
 
-  <example>
-    # Cache content before mod_include and mod_deflate<br />
-    CacheQuickHandler off<br />
-    AddOutputFilterByType CACHE;INCLUDES;DEFLATE text/html<br /><br />
-  </example>
+  <highlight language="config">
+# Cache content before mod_include and mod_deflate
+CacheQuickHandler off
+AddOutputFilterByType CACHE;INCLUDES;DEFLATE text/html
+  </highlight>
 
   <p>You may place the <strong>CACHE</strong> filter anywhere you wish within the
   filter chain. In this example, content is cached after being parsed by
   <module>mod_include</module>, but before being processed by
   <module>mod_deflate</module>:</p>
 
-  <example>
-    # Cache content between mod_include and mod_deflate<br />
-    CacheQuickHandler off<br />
-    AddOutputFilterByType INCLUDES;CACHE;DEFLATE text/html<br /><br />
-  </example>
+  <highlight language="config">
+# Cache content between mod_include and mod_deflate
+CacheQuickHandler off
+AddOutputFilterByType INCLUDES;CACHE;DEFLATE text/html
+  </highlight>
 
   <note type="warning"><title>Warning:</title>If the location of the
   <strong>CACHE</strong> filter in the filter chain is changed for any reason,
@@ -297,28 +307,31 @@
   <directive module="mod_log_config">LogFormat</directive> directive as
   follows:</p>
 
-  <example>
+  <highlight language="config">
     LogFormat "%{cache-status}e ..."
-  </example>
+  </highlight>
 
   <p>Based on the caching decision made, the reason is also written to the
-  subprocess environment under one the following three keys, as appropriate:</p>
+  subprocess environment under one the following four keys, as appropriate:</p>
 
   <dl>
     <dt>cache-hit</dt><dd>The response was served from cache.</dd>
     <dt>cache-revalidate</dt><dd>The response was stale and was successfully
       revalidated, then served from cache.</dd>
     <dt>cache-miss</dt><dd>The response was served from the upstream server.</dd>
+    <dt>cache-invalidate</dt><dd>The cached entity was invalidated by a request
+      method other than GET or HEAD.</dd>
   </dl>
 
   <p>This makes it possible to support conditional logging of cached requests
   as per the following example:</p>
 
-  <example>
-    CustomLog cached-requests.log common env=cache-hit<br />
-    CustomLog uncached-requests.log common env=cache-miss<br />
-    CustomLog revalidated-requests.log common env=cache-revalidate<br />
-  </example>
+  <highlight language="config">
+CustomLog cached-requests.log common env=cache-hit
+CustomLog uncached-requests.log common env=cache-miss
+CustomLog revalidated-requests.log common env=cache-revalidate
+CustomLog invalidated-requests.log common env=cache-invalidate
+  </highlight>
 
   <p>For module authors, a hook called <var>cache_status</var> is available,
   allowing modules to respond to the caching outcomes above in customised
@@ -345,7 +358,10 @@ manager</description>
     the content is cacheable.
     <var>cache_type</var> <code>disk</code> instructs
     <module>mod_cache</module> to use the disk based storage manager
-    implemented by <module>mod_cache_disk</module>.</p>
+    implemented by <module>mod_cache_disk</module>. <var>cache_type</var>
+    <code>socache</code> instructs <module>mod_cache</module> to use the
+    shared object cache based storage manager implemented by
+    <module>mod_cache_socache</module>.</p>
     <p>In the event that the URL space overlaps between different
     <directive>CacheEnable</directive> directives (as in the example below),
     each possible storage manager will be run until the first one that
@@ -360,37 +376,37 @@ manager</description>
     also be used to specify remote sites and proxy protocols which
     caching should be enabled for.</p>
 
-    <example>
-      # Cache content<br />
-      &lt;Location /foo&gt;<br />
-      <indent>
-        CacheEnable disk<br />
-      </indent>
-      &lt;/Location&gt;<br /><br />
-      # Cache regex<br />
-      &lt;LocationMatch foo$&gt;<br />
-      <indent>
-        CacheEnable disk<br />
-      </indent>
-      &lt;/LocationMatch&gt;<br /><br />
-      # Cache proxied url's<br />
-      CacheEnable  disk  /<br /><br />
-      # Cache FTP-proxied url's<br />
-      CacheEnable  disk  ftp://<br /><br />
-      # Cache content from www.example.org<br />
-      CacheEnable  disk  http://www.example.org/<br />
-    </example>
+    <highlight language="config">
+# Cache content
+&lt;Location /foo&gt;
+    CacheEnable disk
+&lt;/Location&gt;
+
+# Cache regex
+&lt;LocationMatch foo$&gt;
+    CacheEnable disk
+&lt;/LocationMatch&gt;
+
+# Cache proxied url's
+CacheEnable  disk  /
+
+# Cache FTP-proxied url's
+CacheEnable  disk  ftp://
+
+# Cache content from www.example.org
+CacheEnable  disk  http://www.example.org/
+    </highlight>
 
     <p>A hostname starting with a <strong>"*"</strong> matches all hostnames with
     that suffix. A hostname starting with <strong>"."</strong> matches all
     hostnames containing the domain components that follow.</p>
 
-    <example>
-      # Match www.example.org, and fooexample.org<br />
-      CacheEnable  disk  http://*example.org/<br />
-      # Match www.example.org, but not fooexample.org<br />
-      CacheEnable  disk  http://.example.org/<br />
-    </example>
+    <highlight language="config">
+# Match www.example.org, and fooexample.org
+CacheEnable  disk  http://*example.org/
+# Match www.example.org, but not fooexample.org
+CacheEnable  disk  http://.example.org/
+    </highlight>
 
     <p> The <code>no-cache</code> environment variable can be set to
     disable caching on a finer grained set of resources in versions
@@ -414,7 +430,9 @@ manager</description>
     <var>url-string</var>.</p>
 
     <example><title>Example</title>
+    <highlight language="config">
       CacheDisable /local_files
+      </highlight>
     </example>
 
     <p>If used in a <directive type="section">Location</directive> directive,
@@ -422,11 +440,11 @@ manager</description>
     is used, caching for the whole location will be disabled.</p>
 
     <example><title>Example</title>
-      &lt;Location /foo&gt;<br />
-      <indent>
-        CacheDisable on<br />
-      </indent>
-      &lt;/Location&gt;<br />
+    <highlight language="config">
+&lt;Location /foo&gt;
+    CacheDisable on
+&lt;/Location&gt;
+      </highlight>
     </example>
 
     <p>The <code>no-cache</code> environment variable can be set to
@@ -453,9 +471,9 @@ manager</description>
     server. Thus, documents will be out of date at most this number of seconds. This maximum
     value is enforced even if an expiry date was supplied with the document.</p>
 
-    <example>
+    <highlight language="config">
       CacheMaxExpire 604800
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -476,9 +494,9 @@ manager</description>
     server. This is only used if no valid expire time was supplied with the document.</p>
 
 
-    <example>
+    <highlight language="config">
       CacheMinExpire 3600
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -499,9 +517,9 @@ manager</description>
     with the document. The value specified with the <directive>CacheMaxExpire</directive>
     directive does <em>not</em> override this setting.</p>
 
-    <example>
+    <highlight language="config">
       CacheDefaultExpire 86400
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -529,9 +547,9 @@ header.</description>
     <directive>CacheDefaultExpire</directive> directive will be used to
     generate an expiration date.</p>
 
-    <example>
+    <highlight language="config">
       CacheIgnoreNoLastMod On
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -552,9 +570,9 @@ header.</description>
     if the request contains no-cache header values.  Resources requiring
     authorization will <em>never</em> be cached.</p>
 
-    <example>
+    <highlight language="config">
       CacheIgnoreCacheControl On
-    </example>
+    </highlight>
 
     <note type="warning"><title>Warning:</title>
        This directive will allow serving from the cache even if the client has
@@ -584,9 +602,9 @@ header.</description>
     view the request is treated as if having no query string when this
     directive is enabled.</p>
 
-    <example>
+    <highlight language="config">
       CacheIgnoreQueryString On
-    </example>
+    </highlight>
 
 </usage>
 </directivesynopsis>
@@ -623,9 +641,9 @@ LastModified date.</description>
     <directive>CacheMaxExpire</directive>, then the latter takes
     precedence.</p>
 
-    <example>
+    <highlight language="config">
       CacheLastModifiedFactor 0.5
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -666,11 +684,15 @@ LastModified date.</description>
     <code>None</code>.</p>
 
     <example><title>Example 1</title>
+    <highlight language="config">
       CacheIgnoreHeaders Set-Cookie
+      </highlight>
     </example>
 
     <example><title>Example 2</title>
+    <highlight language="config">
       CacheIgnoreHeaders None
+      </highlight>
     </example>
 
     <note type="warning"><title>Warning:</title>
@@ -709,11 +731,15 @@ LastModified date.</description>
     identifiers. Otherwise, each identifier is added to the list.</p>
 
     <example><title>Example 1</title>
+    <highlight language="config">
       CacheIgnoreURLSessionIdentifiers jsessionid
+      </highlight>
     </example>
 
     <example><title>Example 2</title>
+    <highlight language="config">
       CacheIgnoreURLSessionIdentifiers None
+      </highlight>
     </example>
 
 </usage>
@@ -740,9 +766,9 @@ LastModified date.</description>
        the origin server, and the response may be fulfilled from cache
        if the backend resource has not changed.</p>
 
-    <example>
+    <highlight language="config">
       CacheStoreExpired On
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -766,9 +792,9 @@ LastModified date.</description>
        private header values.  Resources requiring authorization will
        <em>never</em> be cached.</p>
 
-    <example>
+    <highlight language="config">
       CacheStorePrivate On
-    </example>
+    </highlight>
 
     <note type="warning"><title>Warning:</title>
        This directive will allow caching even if the upstream server has
@@ -800,9 +826,9 @@ LastModified date.</description>
        no-store header values.  Resources requiring authorization will
        <em>never</em> be cached.</p>
 
-    <example>
+    <highlight language="config">
       CacheStoreNoStore On
-    </example>
+    </highlight>
 
     <note type="warning"><title>Warning:</title>
        As described in RFC 2616, the no-store directive is intended to
@@ -831,10 +857,10 @@ LastModified date.</description>
   <p>In a minimal configuration the following directive is all that is needed to
   enable the thundering herd lock in the default system temp directory.</p>
 
-  <example>
-    # Enable cache lock<br />
-    CacheLock on<br /><br />
-  </example>
+  <highlight language="config">
+# Enable cache lock
+CacheLock on
+  </highlight>
 
 </usage>
 </directivesynopsis>
@@ -901,21 +927,21 @@ LastModified date.</description>
     slower than the default, it allows the cache to be used in cases where full
     processing is required, such as when content is subject to authorisation.</p>
 
-    <example>
-      # Run cache as a normal handler<br />
-      CacheQuickHandler off<br /><br />
-    </example>
+    <highlight language="config">
+# Run cache as a normal handler
+CacheQuickHandler off
+    </highlight>
 
     <p>It is also possible, when the quick handler is disabled, for the
     administrator to choose the precise location within the filter chain where
     caching is to be performed, by adding the <strong>CACHE</strong> filter to
     the chain.</p>
 
-    <example>
-      # Cache content before mod_include and mod_deflate<br />
-      CacheQuickHandler off<br />
-      AddOutputFilterByType CACHE;INCLUDES;DEFLATE text/html<br /><br />
-    </example>
+    <highlight language="config">
+# Cache content before mod_include and mod_deflate
+CacheQuickHandler off
+AddOutputFilterByType CACHE;INCLUDES;DEFLATE text/html
+    </highlight>
 
     <p>If the CACHE filter is specified more than once, the last instance will
     apply.</p>
@@ -953,14 +979,14 @@ LastModified date.</description>
       server and was not served from cache.</dd>
   </dl>
 
-  <example>
-    # Enable the X-Cache header<br />
-    CacheHeader on<br />
-  </example>
-
-  <example>
-    X-Cache: HIT from localhost<br />
-  </example>
+  <highlight language="config">
+# Enable the X-Cache header
+CacheHeader on
+  </highlight>
+
+  <highlight language="config">
+    X-Cache: HIT from localhost
+  </highlight>
 
 </usage>
 </directivesynopsis>
@@ -993,10 +1019,10 @@ LastModified date.</description>
   is used, this directive must appear within a server or virtual host context, otherwise
   the setting will be ignored.</p>
 
-  <example>
-    # Enable the X-Cache-Detail header<br />
-    CacheDetailHeader on<br />
-  </example>
+  <highlight language="config">
+# Enable the X-Cache-Detail header
+CacheDetailHeader on
+  </highlight>
 
   <example>
     X-Cache-Detail: "conditional cache hit: entity refreshed" from localhost<br />
@@ -1024,10 +1050,10 @@ LastModified date.</description>
   should be cached beneath the same cache key, a new base URL can be specified
   with this directive.</p>
 
-  <example>
-    # Override the base URL of the cache key.<br />
-    CacheKeyBaseURL http://www.example.com/<br />
-  </example>
+  <highlight language="config">
+# Override the base URL of the cache key.
+CacheKeyBaseURL http://www.example.com/
+  </highlight>
 
   <note type="warning">Take care when setting this directive. If two separate virtual
   hosts are accidentally given the same base URL, entries from one virtual host
@@ -1056,10 +1082,10 @@ LastModified date.</description>
   and the raw 5xx responses returned to the client on request, the 5xx response so
   returned to the client will not invalidate the content in the cache.</p>
 
-  <example>
-    # Serve stale data on error.<br />
-    CacheStaleOnError on<br />
-  </example>
+  <highlight language="config">
+# Serve stale data on error.
+CacheStaleOnError on
+  </highlight>
 
 </usage>
 </directivesynopsis>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_disk.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_disk.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_disk.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_disk.xml Fri May  4 15:02:21 2012
@@ -66,6 +66,9 @@
       cache.</p>
     </note>
 </summary>
+<seealso><module>mod_cache</module></seealso>
+<seealso><module>mod_cache_socache</module></seealso>
+<seealso><a href="../caching.html">Caching Guide</a></seealso>
 
 <directivesynopsis>
 <name>CacheRoot</name>
@@ -86,9 +89,9 @@ stored</description>
     module="mod_cache_disk">CacheDirLength</directive> directives define
     the structure of the directories under the specified root directory.</p>
 
-    <example>
+    <highlight language="config">
       CacheRoot c:/cacheroot
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -164,9 +167,9 @@ cache</description>
     minimum size, in bytes, for a document to be considered for storage
     in the cache.</p>
 
-    <example>
+    <highlight language="config">
       CacheMinFileSize 64
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -187,9 +190,9 @@ cache</description>
     maximum size, in bytes, for a document to be considered for storage in
     the cache.</p>
 
-    <example>
+    <highlight language="config">
       CacheMaxFileSize 64000
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -217,9 +220,9 @@ cache</description>
     <p>This directive only takes effect when the data is being saved to the
     cache, as opposed to data being served from the cache.</p>
 
-    <example>
+    <highlight language="config">
       CacheReadSize 102400
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -251,9 +254,9 @@ cache</description>
     ensure that the server does not buffer excessively should data arrive faster
     than expected.</p>
 
-    <example>
+    <highlight language="config">
       CacheReadTime 1000
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cern_meta.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cern_meta.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cern_meta.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cern_meta.xml Fri May  4 15:02:21 2012
@@ -81,18 +81,18 @@ files</description>
     accessed. Set to "<code>.</code>" to look in the same directory
     as the file:</p>
 
-    <example>MetaDir .</example>
+    <highlight language="config">MetaDir .</highlight>
 
     <p>Or, to set it to a subdirectory of the directory containing the
     files:</p>
 
-    <example>MetaDir .meta</example>
+    <highlight language="config">MetaDir .meta</highlight>
 </usage>
 </directivesynopsis>
 
 <directivesynopsis>
 <name>MetaSuffix</name>
-<description>File name suffix for the file containg CERN-style
+<description>File name suffix for the file containing CERN-style
 meta information</description>
 <syntax>MetaSuffix <var>suffix</var></syntax>
 <default>MetaSuffix .meta</default>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgi.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgi.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgi.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgi.xml Fri May  4 15:02:21 2012
@@ -168,7 +168,9 @@
     </p>
 
     <example><title>Example</title>
+    <highlight language="config">
       ScriptLog logs/cgi_log
+    </highlight>
     </example>
 
     <p>This log will be opened as the user the child processes run

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgid.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgid.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgid.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cgid.xml Fri May  4 15:02:21 2012
@@ -90,7 +90,9 @@ the cgi daemon</description>
     write in the directory where the socket is located.</p>
 
     <example><title>Example</title>
+    <highlight language="config">
       ScriptSock /var/run/cgid.sock
+    </highlight>
     </example>
 
 </usage>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_charset_lite.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_charset_lite.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_charset_lite.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_charset_lite.xml Fri May  4 15:02:21 2012
@@ -102,12 +102,12 @@
     supported by iconv.</p>
 
     <example><title>Example</title>
-      &lt;Directory /export/home/trawick/apacheinst/htdocs/convert&gt;<br />
-      <indent>
-        CharsetSourceEnc  UTF-16BE<br />
-        CharsetDefault    ISO-8859-1<br />
-      </indent>
-      &lt;/Directory&gt;
+    <highlight language="config">
+&lt;Directory /export/home/trawick/apacheinst/htdocs/convert&gt;
+    CharsetSourceEnc  UTF-16BE
+    CharsetDefault    ISO-8859-1
+&lt;/Directory&gt;
+      </highlight>
     </example>
 
     <p>The character set names in this example work with the iconv
@@ -143,12 +143,12 @@
     supported by iconv.</p>
 
     <example><title>Example</title>
-      &lt;Directory /export/home/trawick/apacheinst/htdocs/convert&gt;<br />
-      <indent>
-        CharsetSourceEnc  UTF-16BE<br />
-        CharsetDefault    ISO-8859-1<br />
-      </indent>
-      &lt;/Directory&gt;
+    <highlight language="config">
+&lt;Directory /export/home/trawick/apacheinst/htdocs/convert&gt;
+    CharsetSourceEnc  UTF-16BE
+    CharsetDefault    ISO-8859-1
+&lt;/Directory&gt;
+      </highlight>
     </example>
 
      <note>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_data.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_data.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_data.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_data.xml Fri May  4 15:02:21 2012
@@ -56,11 +56,11 @@
     module.</p>
 
     <example><title>Configuring the filter</title>
-        &lt;Location /data/images&gt;<br />
-        <indent>
-            SetOutputFilter DATA
-        </indent>
-        &lt;/Location&gt;<br />
+    <highlight language="config">
+&lt;Location /data/images&gt;
+    SetOutputFilter DATA
+&lt;/Location&gt;
+        </highlight>
     </example>
 
 </summary>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav.xml Fri May  4 15:02:21 2012
@@ -45,7 +45,7 @@
     <p>To enable <module>mod_dav</module>, add the following to a
     container in your <code>httpd.conf</code> file:</p>
 
-    <example>Dav On</example>
+    <highlight language="config">Dav On</highlight>
 
     <p>This enables the DAV file system provider, which is implemented
     by the <module>mod_dav_fs</module> module. Therefore, that module
@@ -57,9 +57,9 @@
     file using the <directive module="mod_dav_fs">DavLockDB</directive>
     directive:</p>
 
-    <example>
+    <highlight language="config">
       DavLockDB /usr/local/apache2/var/DavLock
-    </example>
+    </highlight>
 
     <p>The directory containing the lock database file must be
     writable by the <directive module="mod_unixd">User</directive>
@@ -77,29 +77,24 @@
     requests.</p>
 
     <example><title>Full Example</title>
-      DavLockDB /usr/local/apache2/var/DavLock<br />
-      <br />
-      &lt;Directory /usr/local/apache2/htdocs/foo&gt;<br />
-      <indent>
-        Require all granted<br />
-        Dav On<br />
-        <br />
-        AuthType Basic<br />
-        AuthName DAV<br />
-        AuthUserFile user.passwd<br />
-        <br />
-        &lt;LimitExcept GET POST OPTIONS&gt;<br />
-        <indent>
-          Require user admin<br />
-        </indent>
-        &lt;/LimitExcept&gt;<br />
-      </indent>
-      &lt;/Directory&gt;<br />
+    <highlight language="config">
+DavLockDB /usr/local/apache2/var/DavLock
+
+&lt;Directory /usr/local/apache2/htdocs/foo&gt;
+    Require all granted
+    Dav On
+
+    AuthType Basic
+    AuthName DAV
+    AuthUserFile user.passwd
+
+    &lt;LimitExcept GET POST OPTIONS&gt;
+        Require user admin
+    &lt;/LimitExcept&gt;
+&lt;/Directory&gt;
+      </highlight>
     </example>
 
-   <p><module>mod_dav</module> is a descendent of Greg Stein's <a
-   href="http://www.webdav.org/mod_dav/">mod_dav for Apache 1.3</a>.  More
-   information about the module is available from that site.</p>
 </section>
 
 <section id="security"><title>Security Issues</title>
@@ -153,16 +148,14 @@
     will run the script, and one of which will allow it to be
     downloaded and manipulated with DAV.</p>
 
-<example>
-Alias /phparea /home/gstein/php_files<br />
-Alias /php-source /home/gstein/php_files<br />
+<highlight language="config">
+Alias /phparea /home/gstein/php_files
+Alias /php-source /home/gstein/php_files
 &lt;Location /php-source&gt;
-<indent>
-    DAV On<br />
-    ForceType text/plain<br />
-</indent>
+    DAV On
+    ForceType text/plain
 &lt;/Location&gt;
-</example>
+</highlight>
 
     <p>With this setup, <code>http://example.com/phparea</code> can be
     used to access the output of the PHP scripts, and
@@ -181,13 +174,11 @@ Alias /php-source /home/gstein/php_files
     <p>Use the <directive>Dav</directive> directive to enable the
     WebDAV HTTP methods for the given container:</p>
 
-    <example>
-      &lt;Location /foo&gt;<br />
-      <indent>
-        Dav On<br />
-      </indent>
-      &lt;/Location&gt;
-    </example>
+    <highlight language="config">
+&lt;Location /foo&gt;
+    Dav On
+&lt;/Location&gt;
+    </highlight>
 
     <p>The value <code>On</code> is actually an alias for the default
     provider <code>filesystem</code> which is served by the <module
@@ -226,11 +217,11 @@ a DAV resource</description>
     the lock due to network latency.</p>
 
     <example><title>Example</title>
-      &lt;Location /MSWord&gt;<br />
-      <indent>
-        DavMinTimeout 600<br />
-      </indent>
-      &lt;/Location&gt;
+    <highlight language="config">
+&lt;Location /MSWord&gt;
+    DavMinTimeout 600
+&lt;/Location&gt;
+    </highlight>
     </example>
 </usage>
 </directivesynopsis>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_fs.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_fs.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_fs.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_fs.xml Fri May  4 15:02:21 2012
@@ -38,7 +38,9 @@
     directive:</p>
 
     <example><title>Example</title>
+    <highlight language="config">
       Dav filesystem
+      </highlight>
     </example>
 
     <p>Since <code>filesystem</code> is the default provider for
@@ -67,7 +69,9 @@
     the server to display all locks in a lock database.</p> -->
 
     <example><title>Example</title>
+    <highlight language="config">
       DavLockDB var/DavLock
+      </highlight>
     </example>
 
     <p>The directory containing the lock database file must be

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_lock.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_lock.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_lock.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dav_lock.xml Fri May  4 15:02:21 2012
@@ -72,7 +72,9 @@
     locks.</p>
 
     <example><title>Example</title>
+    <highlight language="config">
       DavGenericLockDB var/DavLock
+      </highlight>
     </example>
 
     <p>The directory containing the lock database file must be

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dbd.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dbd.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dbd.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dbd.xml Fri May  4 15:02:21 2012
@@ -59,8 +59,8 @@
     <p><module>mod_dbd</module> exports five functions for other modules
     to use. The API is as follows:</p>
 
-    <example>
-<pre><code>typedef struct {
+<highlight language="c">
+typedef struct {
     apr_dbd_t *handle;
     apr_dbd_driver_t *driver;
     apr_hash_t *prepared;
@@ -96,8 +96,7 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_clo
 APR_DECLARE_OPTIONAL_FN(ap_dbd_t*, ap_dbd_acquire, (request_rec*));
 APR_DECLARE_OPTIONAL_FN(ap_dbd_t*, ap_dbd_cacquire, (conn_rec*));
 APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const char*));
-</code></pre>
-    </example>
+</highlight>
 </section>
 
 <section id="prepared"><title>SQL Prepared Statements</title>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_deflate.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_deflate.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_deflate.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_deflate.xml Fri May  4 15:02:21 2012
@@ -41,7 +41,9 @@ client</description>
     <p>This is a simple sample configuration for the impatient.</p>
 
     <example><title>Compress only a few types</title>
+    <highlight language="config">
       AddOutputFilterByType DEFLATE text/html text/plain text/xml
+      </highlight>
     </example>
 
     <p>The following configuration, while resulting in more compressed content,
@@ -49,29 +51,26 @@ client</description>
     all the configuration details.</p>
 
     <example><title>Compress everything except images</title>
-      &lt;Location /&gt;<br />
-      <indent>
-        # Insert filter<br />
-        SetOutputFilter DEFLATE<br />
-        <br />
-        # Netscape 4.x has some problems...<br />
-        BrowserMatch ^Mozilla/4         gzip-only-text/html<br />
-        <br />
-        # Netscape 4.06-4.08 have some more problems<br />
-        BrowserMatch ^Mozilla/4\.0[678] no-gzip<br />
-        <br />
-        # MSIE masquerades as Netscape, but it is fine<br />
-        BrowserMatch \bMSIE             !no-gzip !gzip-only-text/html<br />
-        # Don't compress images<br />
-        SetEnvIfNoCase Request_URI \<br />
-        <indent>
-          \.(?:gif|jpe?g|png)$ no-gzip dont-vary<br />
-        </indent>
-        <br />
-        # Make sure proxies don't deliver the wrong content<br />
-        Header append Vary User-Agent env=!dont-vary<br />
-      </indent>
-      &lt;/Location&gt;
+    <highlight language="config">
+&lt;Location /&gt;
+    # Insert filter
+    SetOutputFilter DEFLATE
+    
+    # Netscape 4.x has some problems...
+    BrowserMatch ^Mozilla/4         gzip-only-text/html
+    
+    # Netscape 4.06-4.08 have some more problems
+    BrowserMatch ^Mozilla/4\.0[678] no-gzip
+    
+    # MSIE masquerades as Netscape, but it is fine
+    BrowserMatch \bMSIE             !no-gzip !gzip-only-text/html
+    # Don't compress images
+    SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
+    
+    # Make sure proxies don't deliver the wrong content
+    Header append Vary User-Agent env=!dont-vary
+&lt;/Location&gt;
+      </highlight>
     </example>
 
 </section>
@@ -84,9 +83,9 @@ client</description>
       will enable compression for documents in the container where it
       is placed:</p>
 
-      <example>
+      <highlight language="config">
         SetOutputFilter DEFLATE
-      </example>
+      </highlight>
 
       <p>Some popular browsers cannot handle compression of all content
       so you may want to set the <code>gzip-only-text/html</code> note to
@@ -100,13 +99,11 @@ client</description>
       enabling compression only for the html files of the Apache
       documentation:</p>
 
-      <example>
-        &lt;Directory "/your-server-root/manual"&gt;<br />
-        <indent>
-          AddOutputFilterByType DEFLATE text/html<br />
-        </indent>
-        &lt;/Directory&gt;
-      </example>
+      <highlight language="config">
+&lt;Directory "/your-server-root/manual"&gt;
+    AddOutputFilterByType DEFLATE text/html
+&lt;/Directory&gt;
+      </highlight>
 
       <p>For browsers that have problems even with compression of all file
       types, use the <directive module="mod_setenvif"
@@ -118,11 +115,11 @@ client</description>
       excerpt from the <a href="#recommended">configuration example</a>
       defined in the section above:</p>
 
-      <example>
-        BrowserMatch ^Mozilla/4         gzip-only-text/html<br />
-        BrowserMatch ^Mozilla/4\.0[678] no-gzip<br />
-        BrowserMatch \bMSIE             !no-gzip !gzip-only-text/html
-      </example>
+      <highlight language="config">
+BrowserMatch ^Mozilla/4         gzip-only-text/html
+BrowserMatch ^Mozilla/4\.0[678] no-gzip
+BrowserMatch \bMSIE             !no-gzip !gzip-only-text/html
+      </highlight>
 
       <p>At first we probe for a <code>User-Agent</code> string that
       indicates a Netscape Navigator version of 4.x. These versions
@@ -159,14 +156,12 @@ client</description>
       >SetOutputFilter</directive> or <directive module="mod_mime"
       >AddOutputFilter</directive>, for example:</p>
 
-      <example>
-        &lt;Location /dav-area&gt;<br />
-        <indent>
-          ProxyPass http://example.com/<br />
-          SetOutputFilter INFLATE<br />
-        </indent>
-        &lt;/Location&gt;
-      </example>
+      <highlight language="config">
+&lt;Location /dav-area&gt;
+    ProxyPass http://example.com/
+    SetOutputFilter INFLATE
+&lt;/Location&gt;
+      </highlight>
 
       <p>This Example will uncompress gzip'ed output from example.com, so other
       filters can do further processing with it.
@@ -181,13 +176,11 @@ client</description>
       >SetInputFilter</directive> or <directive module="mod_mime"
       >AddInputFilter</directive>, for example:</p>
 
-      <example>
-        &lt;Location /dav-area&gt;<br />
-        <indent>
-          SetInputFilter DEFLATE<br />
-        </indent>
-        &lt;/Location&gt;
-      </example>
+      <highlight language="config">
+&lt;Location /dav-area&gt;
+    SetInputFilter DEFLATE
+&lt;/Location&gt;
+      </highlight>
 
       <p>Now if a request contains a <code>Content-Encoding:
       gzip</code> header, the body will be automatically decompressed.
@@ -222,9 +215,9 @@ client</description>
     in a typical configuration where the addition of the <code>DEFLATE</code>
     filter depends on the <code>User-Agent</code>, you should add:</p>
 
-    <example>
+    <highlight language="config">
       Header append Vary User-Agent
-    </example>
+    </highlight>
 
     <p>If your decision about compression depends on other information
     than request headers (<em>e.g.</em> HTTP version), you have to set the
@@ -232,7 +225,9 @@ client</description>
     compliant proxies from caching entirely.</p>
 
     <example><title>Example</title>
+    <highlight language="config">
       Header set Vary *
+      </highlight>
     </example>
 </section>
 
@@ -253,10 +248,12 @@ client</description>
     >access log</a>.</p>
 
     <example><title>Example</title>
-      DeflateFilterNote ratio<br />
-      <br />
-      LogFormat '"%r" %b (%{ratio}n) "%{User-agent}i"' deflate<br />
+    <highlight language="config">
+      DeflateFilterNote ratio
+    
+      LogFormat '"%r" %b (%{ratio}n) "%{User-agent}i"' deflate
       CustomLog logs/deflate_log deflate
+      </highlight>
     </example>
 
     <p>If you want to extract more accurate values from your logs, you
@@ -279,12 +276,14 @@ client</description>
     <p>Thus you may log it this way:</p>
 
     <example><title>Accurate Logging</title>
-      DeflateFilterNote Input instream<br />
-      DeflateFilterNote Output outstream<br />
-      DeflateFilterNote Ratio ratio<br />
-      <br />
-      LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate<br />
-      CustomLog logs/deflate_log deflate
+    <highlight language="config">
+DeflateFilterNote Input instream
+DeflateFilterNote Output outstream
+DeflateFilterNote Ratio ratio
+
+LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
+CustomLog logs/deflate_log deflate
+</highlight>
     </example>
 </usage>
 <seealso><module>mod_log_config</module></seealso>

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dialup.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dialup.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dialup.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dialup.xml Fri May  4 15:02:21 2012
@@ -36,11 +36,11 @@ the document to validate. -->
 by the various old modem standards. So, you can browse your site with a 56k
 V.92 modem, by adding something like this:</p>
 
-<example>
-&lt;Location /mysite&gt;<br />
-ModemStandard V.92<br />
+<highlight language="config">
+&lt;Location /mysite&gt;
+    ModemStandard V.92
 &lt;/Location&gt;
-</example>
+</highlight>
 
 <p>Previously to do bandwidth rate limiting modules would have to block an entire
 thread, for each client, and insert sleeps to slow the bandwidth down.
@@ -58,11 +58,11 @@ once the timer hits.  From there the han
 <usage>
 <p>Specify what modem standard you wish to simulate.</p>
 
-<example>
-&lt;Location /mysite&gt;<br />
-ModemStandard V.26bis<br />
+<highlight language="config">
+&lt;Location /mysite&gt;
+    ModemStandard V.26bis
 &lt;/Location&gt;
-</example>
+</highlight>
 
 </usage>
 

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml Fri May  4 15:02:21 2012
@@ -77,7 +77,9 @@ a directory</description>
     directory.</p>
 
     <example><title>Example</title>
+    <highlight language="config">
       DirectoryIndex index.html
+      </highlight>
     </example>
 
     <p>then a request for <code>http://example.com/docs/</code> would
@@ -87,9 +89,9 @@ a directory</description>
     <p>Note that the documents do not need to be relative to the
     directory;</p>
 
-    <example>
+    <highlight language="config">
       DirectoryIndex index.html index.txt  /cgi-bin/index.pl
-    </example>
+    </highlight>
 
     <p>would cause the CGI script <code>/cgi-bin/index.pl</code> to be
     executed if neither <code>index.html</code> or <code>index.txt</code>
@@ -123,7 +125,9 @@ a directory</description>
     to instead be issued.</p>
 
     <example><title>Example</title>
+    <highlight language="config">
       DirectoryIndexRedirect on
+      </highlight>
     </example>
 
     <p>A request for <code>http://example.com/docs/</code> would
@@ -168,15 +172,13 @@ a directory</description>
     be aware that there are possible security implications to doing
     this.</p>
 
-    <example>
-        # see security warning below!<br />
-        &lt;Location /some/path&gt;<br />
-        <indent>
-            DirectorySlash Off<br />
-            SetHandler some-handler<br />
-        </indent>
-        &lt;/Location&gt;
-    </example>
+    <highlight language="config">
+# see security warning below!
+&lt;Location /some/path&gt;
+    DirectorySlash Off
+    SetHandler some-handler
+&lt;/Location&gt;
+    </highlight>
 
     <note type="warning"><title>Security Warning</title>
     <p>Turning off the trailing slash redirect may result in an information
@@ -204,9 +206,9 @@ a directory</description>
     <p>Use this to set a handler for any URL that doesn't map to anything
     in your filesystem, and would otherwise return HTTP 404 (Not Found).
     For example</p>
-    <example>
-        <code>FallbackResource /not-404.php</code>
-    </example>
+    <highlight language="config">
+        FallbackResource /not-404.php
+    </highlight>
     <p>will cause requests for non-existent files to be handled by
     <code>not-404.php</code>, while requests for files that exist
     are unaffected.</p>
@@ -218,22 +220,18 @@ a directory</description>
     <module>mod_rewrite</module>, and the use of the <code>-f</code> and
     <code>-d</code> tests for file and directory existence. This now
     requires only one line of configuration.</p>
-    <example>
-        <code>FallbackResource /index.php</code>
-    </example>
+    <highlight language="config">
+        FallbackResource /index.php
+    </highlight>
     <p>Existing files, such as images, css files, and so on, will be
     served normally.</p>
     <p>In a sub-URI, such as <em>http://example.com/blog/</em> this
     <em>sub-URI</em> has to be supplied as <var>local-url</var>:</p>
-    <example>
-         <code>
-             &lt;Directory /web/example.com/htdocs/blog&gt;<br />
-	     <indent>
-                  FallbackResource /blog/index.php<br />
-             </indent>
-             &lt;/Directory&gt;
-         </code>
-    </example>
+    <highlight language="config">
+&lt;Directory /web/example.com/htdocs/blog&gt;
+    FallbackResource /blog/index.php
+&lt;/Directory&gt;
+    </highlight>
 </usage>
 </directivesynopsis>
 

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dumpio.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dumpio.xml?rev=1334011&r1=1334010&r2=1334011&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dumpio.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dumpio.xml Fri May  4 15:02:21 2012
@@ -45,14 +45,14 @@
 
     <p>To enable the module, it should be compiled and loaded
     in to your running Apache configuration. Logging can then
-    be enabled or disabled seperately for input and output via
+    be enabled or disabled separately for input and output via
     the below directives.  Additionally, <module>mod_dumpio</module>
     needs to be configured to <directive
     module="core">LogLevel</directive> <code>trace7</code>:
     </p>
-    <example>
+    <highlight language="config">
       LogLevel dumpio:trace7
-    </example>
+    </highlight>
 </section>
 
 <directivesynopsis>
@@ -69,7 +69,9 @@ later.</compatibility>
     <p>Enable dumping of all input.</p>
 
     <example><title>Example</title>
+    <highlight language="config">
       DumpIOInput On
+      </highlight>
     </example>
 </usage>
 
@@ -89,7 +91,9 @@ later.</compatibility>
     <p>Enable dumping of all output.</p>
 
     <example><title>Example</title>
+    <highlight language="config">
       DumpIOOutput On
+      </highlight>
     </example>
 </usage>