]> granicus.if.org Git - apache/commitdiff
xforms that somehow snuck past the build system
authorDaniel Gruno <humbedooh@apache.org>
Fri, 27 Apr 2012 12:48:31 +0000 (12:48 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Fri, 27 Apr 2012 12:48:31 +0000 (12:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1331396 13f79535-47bb-0310-9956-ffa450edef68

12 files changed:
docs/manual/mod/mod_cache_socache.html.en
docs/manual/mod/mod_cern_meta.html.en
docs/manual/mod/mod_cgi.html.en
docs/manual/mod/mod_cgid.html.en
docs/manual/mod/mod_charset_lite.html.en
docs/manual/mod/mod_data.html.en
docs/manual/mod/mod_dav.html.en
docs/manual/mod/mod_dav_fs.html.en
docs/manual/mod/mod_dav_lock.html.en
docs/manual/mod/mod_dialup.html.en
docs/manual/mod/mod_dir.html.en
docs/manual/mod/mod_dumpio.html.en

index 349b2ddf57ff48499e2f5e8848e0737d9a8a8f52..a019219a6ae7da2019e556dfa50d627a84492016 100644 (file)
@@ -45,26 +45,23 @@ HTTP caching filter.</td></tr>
     however the caching of partial content is not yet supported by this
     module.</p>
 
-    <div class="example"><p><code>
-      # Turn on caching<br />
-      CacheSocache shmcb<br />
-      CacheSocacheMaxSize 102400<br />
-      &lt;Location /foo&gt;<br />
-        <span class="indent">
-        CacheEnable socache<br />
-        </span>
-      &lt;/Location&gt;<br />
-      <br />
-      # Fall back to the disk cache<br />
-      CacheSocache shmcb<br />
-      CacheSocacheMaxSize 102400<br />
-      &lt;Location /foo&gt;<br />
-        <span class="indent">
-        CacheEnable socache<br />
-        CacheEnable disk<br />
-        </span>
-      &lt;/Location&gt;<br />
-    </code></p></div>
+    <pre class="prettyprint lang-config">
+# Turn on caching
+CacheSocache shmcb
+CacheSocacheMaxSize 102400
+&lt;Location /foo&gt;
+    CacheEnable socache
+&lt;/Location&gt;
+
+# Fall back to the disk cache
+CacheSocache shmcb
+CacheSocacheMaxSize 102400
+&lt;Location /foo&gt;
+    CacheEnable socache
+    CacheEnable disk
+&lt;/Location&gt;
+    </pre>
+
 
     <div class="note"><h3>Note:</h3>
       <p><code class="module"><a href="../mod/mod_cache_socache.html">mod_cache_socache</a></code> requires the services of
@@ -105,9 +102,10 @@ stored</td></tr>
     implementations</a> of shared object caches are available to choose
     from.</p>
 
-    <div class="example"><p><code>
+    <pre class="prettyprint lang-config">
       CacheSocache shmcb
-    </code></p></div>
+    </pre>
+
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -134,9 +132,10 @@ cache</td></tr>
     responses larger than those cacheable within
     <code class="module"><a href="../mod/mod_cache_socache.html">mod_cache_socache</a></code>.</p>
 
-    <div class="example"><p><code>
+    <pre class="prettyprint lang-config">
       CacheSocacheMaxSize 102400
-    </code></p></div>
+    </pre>
+
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -156,9 +155,10 @@ cache</td></tr>
     the cache. This value overrides the freshness lifetime defined for the
     document by the HTTP protocol.</p>
 
-    <div class="example"><p><code>
+    <pre class="prettyprint lang-config">
       CacheSocacheMaxTime 86400
-    </code></p></div>
+    </pre>
+
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -179,9 +179,10 @@ cache</td></tr>
     only stored for its freshness lifetime, there will be no opportunity to
     revalidate the response to make it fresh again.</p>
 
-    <div class="example"><p><code>
+    <pre class="prettyprint lang-config">
       CacheSocacheMinTime 600
-    </code></p></div>
+    </pre>
+
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -207,9 +208,10 @@ cache</td></tr>
     <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>
 
-    <div class="example"><p><code>
+    <pre class="prettyprint lang-config">
       CacheReadSize 102400
-    </code></p></div>
+    </pre>
+
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -239,9 +241,10 @@ cache</td></tr>
     to ensure that the server does not buffer excessively should data arrive faster
     than expected.</p>
 
-    <div class="example"><p><code>
+    <pre class="prettyprint lang-config">
       CacheSocacheReadTime 1000
-    </code></p></div>
+    </pre>
+
 
 </div>
 </div>
index 749d5f16655a1df44181541d035ff0601115f2dc..66bc7368e0c7f6ce1b81e442f56a7cb686ffede3 100644 (file)
@@ -74,12 +74,14 @@ files</td></tr>
     accessed. Set to "<code>.</code>" to look in the same directory
     as the file:</p>
 
-    <div class="example"><p><code>MetaDir .</code></p></div>
+    <pre class="prettyprint lang-config">MetaDir .</pre>
+
 
     <p>Or, to set it to a subdirectory of the directory containing the
     files:</p>
 
-    <div class="example"><p><code>MetaDir .meta</code></p></div>
+    <pre class="prettyprint lang-config">MetaDir .meta</pre>
+
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
index 32108f44093daca5f929d78aaaa03f02195f907d..096c8591dc265cb0762053bbc456d781574e815d 100644 (file)
     </p>
 
     <div class="example"><h3>Example</h3><p><code>
+    <pre class="prettyprint lang-config">
       ScriptLog logs/cgi_log
+    </pre>
+
     </code></p></div>
 
     <p>This log will be opened as the user the child processes run
index b91c02b42b7f9e0006dcf17cfb19b5109ef5c287..bbc1d05e01c53f40908dce265f0b5ff3641a4466 100644 (file)
@@ -93,7 +93,10 @@ the cgi daemon</td></tr>
     write in the directory where the socket is located.</p>
 
     <div class="example"><h3>Example</h3><p><code>
+    <pre class="prettyprint lang-config">
       ScriptSock /var/run/cgid.sock
+    </pre>
+
     </code></p></div>
 
 
index cc26c0e393fb1d1db5fe0cd3a89616b77948872f..834e7ff3f8c8f28a66d5c7dfccfdae124447cfb2 100644 (file)
     supported by iconv.</p>
 
     <div class="example"><h3>Example</h3><p><code>
-      &lt;Directory /export/home/trawick/apacheinst/htdocs/convert&gt;<br />
-      <span class="indent">
-        CharsetSourceEnc  UTF-16BE<br />
-        CharsetDefault    ISO-8859-1<br />
-      </span>
-      &lt;/Directory&gt;
+    <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 class="note">
     supported by iconv.</p>
 
     <div class="example"><h3>Example</h3><p><code>
-      &lt;Directory /export/home/trawick/apacheinst/htdocs/convert&gt;<br />
-      <span class="indent">
-        CharsetSourceEnc  UTF-16BE<br />
-        CharsetDefault    ISO-8859-1<br />
-      </span>
-      &lt;/Directory&gt;
+    <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>
 
     <p>The character set names in this example work with the iconv
index 091f41beeca9c837a57e6aa9d804d7ecf152db22..5fca0fd6de86cc1937fd7fa29777e104187a3331 100644 (file)
     module.</p>
 
     <div class="example"><h3>Configuring the filter</h3><p><code>
-        &lt;Location /data/images&gt;<br />
-        <span class="indent">
-            SetOutputFilter DATA
-        </span>
-        &lt;/Location&gt;<br />
+    <pre class="prettyprint lang-config">
+&lt;Location /data/images&gt;
+    SetOutputFilter DATA
+&lt;/Location&gt;
+        </pre>
+
     </code></p></div>
 
 </div>
index dc3d251e08f7d2c068935ab42156bb677dd846e4..42df4d0d634d0bdab8ac714f9c1c4689fd032f44 100644 (file)
@@ -64,7 +64,8 @@
     <p>To enable <code class="module"><a href="../mod/mod_dav.html">mod_dav</a></code>, add the following to a
     container in your <code>httpd.conf</code> file:</p>
 
-    <div class="example"><p><code>Dav On</code></p></div>
+    <pre class="prettyprint lang-config">Dav On</pre>
+
 
     <p>This enables the DAV file system provider, which is implemented
     by the <code class="module"><a href="../mod/mod_dav_fs.html">mod_dav_fs</a></code> module. Therefore, that module
     file using the <code class="directive"><a href="../mod/mod_dav_fs.html#davlockdb">DavLockDB</a></code>
     directive:</p>
 
-    <div class="example"><p><code>
+    <pre class="prettyprint lang-config">
       DavLockDB /usr/local/apache2/var/DavLock
-    </code></p></div>
+    </pre>
+
 
     <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>
     requests.</p>
 
     <div class="example"><h3>Full Example</h3><p><code>
-      DavLockDB /usr/local/apache2/var/DavLock<br />
-      <br />
-      &lt;Directory /usr/local/apache2/htdocs/foo&gt;<br />
-      <span class="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 />
-        <span class="indent">
-          Require user admin<br />
-        </span>
-        &lt;/LimitExcept&gt;<br />
-      </span>
-      &lt;/Directory&gt;<br />
+    <pre class="prettyprint lang-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;
+      </pre>
+
     </code></p></div>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
     will run the script, and one of which will allow it to be
     downloaded and manipulated with DAV.</p>
 
-<div class="example"><p><code>
-Alias /phparea /home/gstein/php_files<br />
-Alias /php-source /home/gstein/php_files<br />
+<pre class="prettyprint lang-config">
+Alias /phparea /home/gstein/php_files
+Alias /php-source /home/gstein/php_files
 &lt;Location /php-source&gt;
-<span class="indent">
-    DAV On<br />
-    ForceType text/plain<br />
-</span>
+    DAV On
+    ForceType text/plain
 &lt;/Location&gt;
-</code></p></div>
+</pre>
+
 
     <p>With this setup, <code>http://example.com/phparea</code> can be
     used to access the output of the PHP scripts, and
@@ -192,13 +192,12 @@ Alias /php-source /home/gstein/php_files<br />
     <p>Use the <code class="directive">Dav</code> directive to enable the
     WebDAV HTTP methods for the given container:</p>
 
-    <div class="example"><p><code>
-      &lt;Location /foo&gt;<br />
-      <span class="indent">
-        Dav On<br />
-      </span>
-      &lt;/Location&gt;
-    </code></p></div>
+    <pre class="prettyprint lang-config">
+&lt;Location /foo&gt;
+    Dav On
+&lt;/Location&gt;
+    </pre>
+
 
     <p>The value <code>On</code> is actually an alias for the default
     provider <code>filesystem</code> which is served by the <code class="module"><a href="../mod/mod_dav_fs.html">mod_dav_fs</a></code> module. Note, that once you have DAV enabled
@@ -251,11 +250,12 @@ a DAV resource</td></tr>
     the lock due to network latency.</p>
 
     <div class="example"><h3>Example</h3><p><code>
-      &lt;Location /MSWord&gt;<br />
-      <span class="indent">
-        DavMinTimeout 600<br />
-      </span>
-      &lt;/Location&gt;
+    <pre class="prettyprint lang-config">
+&lt;Location /MSWord&gt;
+    DavMinTimeout 600
+&lt;/Location&gt;
+    </pre>
+
     </code></p></div>
 
 </div>
index b42489e4e5f7332bb12c1df3ba14cae1e4f9f8e8..0281e04ca032aebffab6800c42e98fdc021c48e2 100644 (file)
     directive:</p>
 
     <div class="example"><h3>Example</h3><p><code>
+    <pre class="prettyprint lang-config">
       Dav filesystem
+      </pre>
+
     </code></p></div>
 
     <p>Since <code>filesystem</code> is the default provider for
     
 
     <div class="example"><h3>Example</h3><p><code>
+    <pre class="prettyprint lang-config">
       DavLockDB var/DavLock
+      </pre>
+
     </code></p></div>
 
     <p>The directory containing the lock database file must be
index 40021038766fe23557a2fe9246561cf9050fb928..53dceff8650b916397d15ce50da66dcd76520646 100644 (file)
     locks.</p>
 
     <div class="example"><h3>Example</h3><p><code>
+    <pre class="prettyprint lang-config">
       DavGenericLockDB var/DavLock
+      </pre>
+
     </code></p></div>
 
     <p>The directory containing the lock database file must be
index c46c5ec0219d4b0ee81ae61be7ec9b9b62b717e2..e6a329e938ab80f4f2b4d9480b0d73baf8862859 100644 (file)
 by the various old modem standards. So, you can browse your site with a 56k
 V.92 modem, by adding something like this:</p>
 
-<div class="example"><p><code>
-&lt;Location /mysite&gt;<br />
-ModemStandard V.92<br />
+<pre class="prettyprint lang-config">
+&lt;Location /mysite&gt;
+    ModemStandard V.92
 &lt;/Location&gt;
-</code></p></div>
+</pre>
+
 
 <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.
@@ -65,11 +66,12 @@ once the timer hits.  From there the handler can continue to send data to the cl
 </table>
 <p>Specify what modem standard you wish to simulate.</p>
 
-<div class="example"><p><code>
-&lt;Location /mysite&gt;<br />
-ModemStandard V.26bis<br />
+<pre class="prettyprint lang-config">
+&lt;Location /mysite&gt;
+    ModemStandard V.26bis
 &lt;/Location&gt;
-</code></p></div>
+</pre>
+
 
 
 </div>
index 5f8f15d2cb82312c39082eaf721e27641750a948..56cc07421cdbd30c0f63e8454f691b88e36407fb 100644 (file)
@@ -93,7 +93,10 @@ a directory</td></tr>
     directory.</p>
 
     <div class="example"><h3>Example</h3><p><code>
+    <pre class="prettyprint lang-config">
       DirectoryIndex index.html
+      </pre>
+
     </code></p></div>
 
     <p>then a request for <code>http://example.com/docs/</code> would
@@ -103,9 +106,10 @@ a directory</td></tr>
     <p>Note that the documents do not need to be relative to the
     directory;</p>
 
-    <div class="example"><p><code>
+    <pre class="prettyprint lang-config">
       DirectoryIndex index.html index.txt  /cgi-bin/index.pl
-    </code></p></div>
+    </pre>
+
 
     <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>
@@ -138,7 +142,10 @@ a directory</td></tr>
     to instead be issued.</p>
 
     <div class="example"><h3>Example</h3><p><code>
+    <pre class="prettyprint lang-config">
       DirectoryIndexRedirect on
+      </pre>
+
     </code></p></div>
 
     <p>A request for <code>http://example.com/docs/</code> would
@@ -181,15 +188,14 @@ a directory</td></tr>
     be aware that there are possible security implications to doing
     this.</p>
 
-    <div class="example"><p><code>
-        # see security warning below!<br />
-        &lt;Location /some/path&gt;<br />
-        <span class="indent">
-            DirectorySlash Off<br />
-            SetHandler some-handler<br />
-        </span>
-        &lt;/Location&gt;
-    </code></p></div>
+    <pre class="prettyprint lang-config">
+# see security warning below!
+&lt;Location /some/path&gt;
+    DirectorySlash Off
+    SetHandler some-handler
+&lt;/Location&gt;
+    </pre>
+
 
     <div class="warning"><h3>Security Warning</h3>
     <p>Turning off the trailing slash redirect may result in an information
@@ -218,9 +224,10 @@ a directory</td></tr>
     <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>
-    <div class="example"><p><code>
-        <code>FallbackResource /not-404.php</code>
-    </code></p></div>
+    <pre class="prettyprint lang-config">
+        FallbackResource /not-404.php
+    </pre>
+
     <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>
@@ -232,22 +239,20 @@ a directory</td></tr>
     <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code>, 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>
-    <div class="example"><p><code>
-        <code>FallbackResource /index.php</code>
-    </code></p></div>
+    <pre class="prettyprint lang-config">
+        FallbackResource /index.php
+    </pre>
+
     <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>
-    <div class="example"><p><code>
-         <code>
-             &lt;Directory /web/example.com/htdocs/blog&gt;<br />
-            <span class="indent">
-                  FallbackResource /blog/index.php<br />
-             </span>
-             &lt;/Directory&gt;
-         </code>
-    </code></p></div>
+    <pre class="prettyprint lang-config">
+&lt;Directory /web/example.com/htdocs/blog&gt;
+    FallbackResource /blog/index.php
+&lt;/Directory&gt;
+    </pre>
+
 
 </div>
 </div>
index 62f48ec73c9fcd6aa338fec23085744f73263c09..a04e5922aa6d4e7368026cf115d4a6979477c8b3 100644 (file)
     the below directives.  Additionally, <code class="module"><a href="../mod/mod_dumpio.html">mod_dumpio</a></code>
     needs to be configured to <code class="directive"><a href="../mod/core.html#loglevel">LogLevel</a></code> <code>trace7</code>:
     </p>
-    <div class="example"><p><code>
+    <pre class="prettyprint lang-config">
       LogLevel dumpio:trace7
-    </code></p></div>
+    </pre>
+
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="DumpIOInput" id="DumpIOInput">DumpIOInput</a> <a name="dumpioinput" id="dumpioinput">Directive</a></h2>
@@ -82,7 +83,10 @@ later.</td></tr>
     <p>Enable dumping of all input.</p>
 
     <div class="example"><h3>Example</h3><p><code>
+    <pre class="prettyprint lang-config">
       DumpIOInput On
+      </pre>
+
     </code></p></div>
 
 </div>
@@ -101,7 +105,10 @@ later.</td></tr>
     <p>Enable dumping of all output.</p>
 
     <div class="example"><h3>Example</h3><p><code>
+    <pre class="prettyprint lang-config">
       DumpIOOutput On
+      </pre>
+
     </code></p></div>
 
 </div>