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 2002/11/10 03:56:34 UTC

cvs commit: httpd-2.0/docs/manual/mod mod_dir.html.en mod_dir.xml quickreference.html.en

nd          2002/11/09 18:56:34

  Modified:    docs/manual/mod mod_dir.html.en mod_dir.xml
                        quickreference.html.en
  Log:
  - <em> -> <var>
  - some whitespace reformatting
  -> update transformation
  
  Revision  Changes    Path
  1.12      +11 -8     httpd-2.0/docs/manual/mod/mod_dir.html.en
  
  Index: mod_dir.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_dir.html.en,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- mod_dir.html.en	7 Oct 2002 15:23:02 -0000	1.11
  +++ mod_dir.html.en	10 Nov 2002 02:56:33 -0000	1.12
  @@ -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 @@
       <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 @@
       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 @@
       <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>
  
  
  
  1.4       +13 -13    httpd-2.0/docs/manual/mod/mod_dir.xml
  
  Index: mod_dir.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_dir.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- mod_dir.xml	23 May 2002 14:50:11 -0000	1.3
  +++ mod_dir.xml	10 Nov 2002 02:56:33 -0000	1.4
  @@ -39,20 +39,17 @@
   <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 @@
       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 @@
       <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>
   
  
  
  
  1.32      +1 -1      httpd-2.0/docs/manual/mod/quickreference.html.en
  
  Index: quickreference.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/quickreference.html.en,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- quickreference.html.en	7 Nov 2002 12:29:27 -0000	1.31
  +++ quickreference.html.en	10 Nov 2002 02:56:33 -0000	1.32
  @@ -231,7 +231,7 @@
   ... &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