]> granicus.if.org Git - apache/commitdiff
- <em> -> <var>
authorAndre Malo <nd@apache.org>
Sun, 10 Nov 2002 02:56:33 +0000 (02:56 +0000)
committerAndre Malo <nd@apache.org>
Sun, 10 Nov 2002 02:56:33 +0000 (02:56 +0000)
- some whitespace reformatting
-> update transformation

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97470 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_dir.html.en
docs/manual/mod/mod_dir.xml
docs/manual/mod/quickreference.html.en

index d8f4c5d3d8faeb24fc4f33346eaa0f159ffbecd4..e7845492fa92a1f3ca5e8dd32fbcaaf49630a784 100644 (file)
@@ -36,7 +36,7 @@
               </a></th><td>List of resources to look for when the client requests
 a directory</td></tr><tr><th><a href="directive-dict.html#Syntax">Syntax:
               </a></th><td><code>DirectoryIndex
-    <em>local-url</em> [<em>local-url</em>] ...</code></td></tr><tr><th><a href="directive-dict.html#Default">Default: 
+    <var>local-url</var> [<var>local-url</var>] ...</code></td></tr><tr><th><a href="directive-dict.html#Default">Default: 
               </a></th><td><code>DirectoryIndex index.html</code></td></tr><tr><th><a href="directive-dict.html#Context">Context:
               </a></th><td>server config, virtual host, directory, .htaccess</td></tr><tr><th><a href="directive-dict.html#Override">Override:
               </a></th><td>Indexes</td></tr><tr><th><a href="directive-dict.html#Status">Status:
@@ -45,7 +45,7 @@ a directory</td></tr><tr><th><a href="directive-dict.html#Syntax">Syntax:
     <p>The <code class="directive">DirectoryIndex</code> directive sets the
     list of resources to look for, when the client requests an index
     of the directory by specifying a / at the end of the a directory
-    name.  <em>Local-url</em> is the (%-encoded) URL of a document on
+    name.  <var>Local-url</var> is the (%-encoded) URL of a document on
     the server relative to the requested directory; it is usually the
     name of a file in the directory. Several URLs may be given, in
     which case the server will return the first one that it finds.  If
@@ -53,9 +53,9 @@ a directory</td></tr><tr><th><a href="directive-dict.html#Syntax">Syntax:
     set, the server will generate its own listing of the
     directory.</p>
 
-<div class="example"><h3>Example</h3><p><code>
-DirectoryIndex index.html
-</code></p></div>
+    <div class="example"><h3>Example</h3><p><code>
+      DirectoryIndex index.html
+    </code></p></div>
 
     <p>then a request for <code>http://myserver/docs/</code> would
     return <code>http://myserver/docs/index.html</code> if it
@@ -64,8 +64,11 @@ DirectoryIndex index.html
     <p>Note that the documents do not need to be relative to the
     directory;</p>
 
-<div class="example"><p><code>DirectoryIndex index.html index.txt  /cgi-bin/index.pl</code></p></div>
+    <div class="example"><p><code>
+      DirectoryIndex index.html index.txt  /cgi-bin/index.pl
+    </code></p></div>
+
     <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> existed in a directory.</p>
+    executed if neither <code>index.html</code> or <code>index.txt</code>
+    existed in a directory.</p>
 </div></div><div id="footer"><p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p><p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div></body></html>
\ No newline at end of file
index f0f98c7a953ec71ca59b7bd943e81b1dac1f5b71..596ef927dbacab11fb55489f45d69c5d7abfcbb8 100644 (file)
 <description>List of resources to look for when the client requests
 a directory</description>
 <syntax>DirectoryIndex
-    <em>local-url</em> [<em>local-url</em>] ...</syntax>
+    <var>local-url</var> [<var>local-url</var>] ...</syntax>
 <default>DirectoryIndex index.html</default>
-<contextlist><context>server config</context>
-<context>virtual host</context>
-<context>directory</context>
-<context>.htaccess</context>
-</contextlist>
+<contextlist><context>server config</context><context>virtual host</context>
+<context>directory</context><context>.htaccess</context></contextlist>
 <override>Indexes</override>
 
 <usage>
     <p>The <directive>DirectoryIndex</directive> directive sets the
     list of resources to look for, when the client requests an index
     of the directory by specifying a / at the end of the a directory
-    name.  <em>Local-url</em> is the (%-encoded) URL of a document on
+    name.  <var>Local-url</var> is the (%-encoded) URL of a document on
     the server relative to the requested directory; it is usually the
     name of a file in the directory. Several URLs may be given, in
     which case the server will return the first one that it finds.  If
@@ -60,9 +57,9 @@ a directory</description>
     set, the server will generate its own listing of the
     directory.</p>
 
-<example><title>Example</title>
-DirectoryIndex index.html
-</example>
+    <example><title>Example</title>
+      DirectoryIndex index.html
+    </example>
 
     <p>then a request for <code>http://myserver/docs/</code> would
     return <code>http://myserver/docs/index.html</code> if it
@@ -71,10 +68,13 @@ DirectoryIndex index.html
     <p>Note that the documents do not need to be relative to the
     directory;</p>
 
-<example>DirectoryIndex index.html index.txt  /cgi-bin/index.pl</example>
+    <example>
+      DirectoryIndex index.html index.txt  /cgi-bin/index.pl
+    </example>
+
     <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> existed in a directory.</p>
+    executed if neither <code>index.html</code> or <code>index.txt</code>
+    existed in a directory.</p>
 </usage>
 </directivesynopsis>
 
index 2bd651046cb8b4441eac7bf3eb7ac6e9bce293fd..8dfd65a9ae842b9d91f3fafbadf0c28222d540bf 100644 (file)
@@ -231,7 +231,7 @@ server</td></tr>
 ... &lt;/Directory&gt;</a></td><td /><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Enclose a group of directives that apply only to the
 named file-system directory and sub-directories</td></tr>
 <tr><td><a href="mod_dir.html#directoryindex">DirectoryIndex
-    <em>local-url</em> [<em>local-url</em>] ...</a></td><td> index.html </td><td>svdh</td><td>B</td></tr><tr><td class="descr" colspan="4">List of resources to look for when the client requests
+    <var>local-url</var> [<var>local-url</var>] ...</a></td><td> index.html </td><td>svdh</td><td>B</td></tr><tr><td class="descr" colspan="4">List of resources to look for when the client requests
 a directory</td></tr>
 <tr class="odd"><td><a href="core.html#directorymatch">&lt;DirectoryMatch <var>regex</var>&gt;
 ... &lt;/Directory&gt;</a></td><td /><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Enclose directives that apply to