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/16 02:31:29 UTC

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

nd          2002/11/15 17:31:29

  Modified:    docs/manual/mod mod_info.html.en mod_info.xml
                        quickreference.html.en
  Log:
  - <em> -> <var>
  - little markup & reformatting
  
  Revision  Changes    Path
  1.18      +20 -20    httpd-2.0/docs/manual/mod/mod_info.html.en
  
  Index: mod_info.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_info.html.en,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- mod_info.html.en	9 Oct 2002 01:40:44 -0000	1.17
  +++ mod_info.html.en	16 Nov 2002 01:31:29 -0000	1.18
  @@ -10,15 +10,16 @@
                     </a></th><td>Extension</td></tr><tr><th><a href="module-dict.html#ModuleIdentifier">Module�Identifier:
                     </a></th><td>info_module</td></tr><tr><th><a href="module-dict.html#SourceFile">Source�File:
                     </a></th><td>mod_info.c</td></tr></table><h3>Summary</h3>
  -
       <p>To configure <code class="module"><a href="../mod/mod_info.html">mod_info</a></code>, add the following to your
       <code>httpd.conf</code> file.</p>
   
  -<div class="example"><p><code>
  -&lt;Location /server-info&gt;<br />
  -SetHandler server-info<br />
  -&lt;/Location&gt;<br />
  -</code></p></div>
  +    <div class="example"><p><code>
  +      &lt;Location /server-info&gt;<br />
  +      <span class="indent">
  +        SetHandler server-info<br />
  +      </span>
  +      &lt;/Location&gt;
  +    </code></p></div>
   
       <p>You may wish to add a 
       <code class="directive"><a href="../mod/core.html#limit">&lt;Limit&gt;</a></code> 
  @@ -43,7 +44,7 @@
         <p>It should also be noted that if
         <code class="module"><a href="../mod/mod_info.html">mod_info</a></code> is compiled into the server, its
         handler capability is available in <em>all</em> configuration
  -      files, including <em>per</em>-directory files (<em>e.g.</em>,
  +      files, including per-directory files (<em>e.g.</em>,
         <code>.htaccess</code>). This may have security-related
         ramifications for your site.</p>
   
  @@ -51,28 +52,27 @@
         from the configuration directives of other Apache modules such as
         system paths, usernames/passwords, database names, etc.  Due to
         the way this module works there is no way to block information
  -      from it.  Therefore, this module should ONLY be used in a controlled
  -      environment and always with caution.</p>
  -
  +      from it.  Therefore, this module should <strong>only</strong> be
  +      used in a controlled environment and always with caution.</p>
       </div>
   </div><div id="quickview"><h3 class="directives">Directives</h3><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#addmoduleinfo">AddModuleInfo</a></li>
   </ul></div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="directive-section"><h2><a name="AddModuleInfo" id="AddModuleInfo">AddModuleInfo</a> <a name="addmoduleinfo" id="addmoduleinfo">Directive</a></h2><table class="directive"><tr><th><a href="directive-dict.html#Description">Description: 
                 </a></th><td>Adds additional information to the module
   information displayed by the server-info handler</td></tr><tr><th><a href="directive-dict.html#Syntax">Syntax:
  -              </a></th><td><code>AddModuleInfo <em>module-name string</em></code></td></tr><tr><th><a href="directive-dict.html#Context">Context:
  +              </a></th><td><code>AddModuleInfo <var>module-name</var> <var>string</var></code></td></tr><tr><th><a href="directive-dict.html#Context">Context:
                 </a></th><td>server config, virtual host</td></tr><tr><th><a href="directive-dict.html#Status">Status:
                 </a></th><td>Extension</td></tr><tr><th><a href="directive-dict.html#Module">Module:
                 </a></th><td>mod_info</td></tr><tr><th><a href="directive-dict.html#Compatibility">Compatibility:
                 </a></th><td>Apache 1.3 and above</td></tr></table>
  -    <p>This allows the content of <em>string</em> to be shown as
  +    <p>This allows the content of <var>string</var> to be shown as
       HTML interpreted, <strong>Additional Information</strong> for
  -    the module <em>module-name</em>. Example:</p>
  +    the module <var>module-name</var>. Example:</p>
   
  -<div class="example"><p><code>
  -  AddModuleInfo mod_authn_file.c 'See &lt;a \<br />
  -  <span class="indent">
  -    href="http://www.apache.org/docs-2.0/mod/mod_authn_file.html"&gt;\<br />
  -    http://www.apache.org/docs-2.0/mod/mod_authn_file.html&lt;/a&gt;'
  -  </span>
  -</code></p></div>
  +    <div class="example"><p><code>
  +      AddModuleInfo mod_authn_file.c 'See &lt;a \<br />
  +      <span class="indent">
  +      href="http://www.apache.org/docs-2.0/mod/mod_authn_file.html"&gt;\<br />
  +      http://www.apache.org/docs-2.0/mod/mod_authn_file.html&lt;/a&gt;'
  +      </span>
  +    </code></p></div>
   </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.10      +22 -23    httpd-2.0/docs/manual/mod/mod_info.xml
  
  Index: mod_info.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_info.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- mod_info.xml	9 Oct 2002 01:40:44 -0000	1.9
  +++ mod_info.xml	16 Nov 2002 01:31:29 -0000	1.10
  @@ -10,17 +10,17 @@
   <sourcefile>mod_info.c</sourcefile>
   <identifier>info_module</identifier>
   
  -
   <summary>
  -
       <p>To configure <module>mod_info</module>, add the following to your
       <code>httpd.conf</code> file.</p>
   
  -<example>
  -&lt;Location /server-info&gt;<br />
  -SetHandler server-info<br />
  -&lt;/Location&gt;<br />
  -</example>
  +    <example>
  +      &lt;Location /server-info&gt;<br />
  +      <indent>
  +        SetHandler server-info<br />
  +      </indent>
  +      &lt;/Location&gt;
  +    </example>
   
       <p>You may wish to add a 
       <directive type="section" module="core">Limit</directive> 
  @@ -45,7 +45,7 @@
         <p>It should also be noted that if
         <module>mod_info</module> is compiled into the server, its
         handler capability is available in <em>all</em> configuration
  -      files, including <em>per</em>-directory files (<em>e.g.</em>,
  +      files, including per-directory files (<em>e.g.</em>,
         <code>.htaccess</code>). This may have security-related
         ramifications for your site.</p>
   
  @@ -53,9 +53,8 @@
         from the configuration directives of other Apache modules such as
         system paths, usernames/passwords, database names, etc.  Due to
         the way this module works there is no way to block information
  -      from it.  Therefore, this module should ONLY be used in a controlled
  -      environment and always with caution.</p>
  -
  +      from it.  Therefore, this module should <strong>only</strong> be
  +      used in a controlled environment and always with caution.</p>
       </note>
   </summary>
   
  @@ -63,23 +62,23 @@
   <name>AddModuleInfo</name>
   <description>Adds additional information to the module
   information displayed by the server-info handler</description>
  -<syntax>AddModuleInfo <em>module-name string</em></syntax>
  -<contextlist><context>server config</context> <context>virtual
  -host</context></contextlist>
  +<syntax>AddModuleInfo <var>module-name</var> <var>string</var></syntax>
  +<contextlist><context>server config</context><context>virtual host</context>
  +</contextlist>
   <compatibility>Apache 1.3 and above</compatibility>
   
   <usage>
  -    <p>This allows the content of <em>string</em> to be shown as
  +    <p>This allows the content of <var>string</var> to be shown as
       HTML interpreted, <strong>Additional Information</strong> for
  -    the module <em>module-name</em>. Example:</p>
  +    the module <var>module-name</var>. Example:</p>
   
  -<example>
  -  AddModuleInfo mod_authn_file.c 'See &lt;a \<br />
  -  <indent>
  -    href="http://www.apache.org/docs-2.0/mod/mod_authn_file.html"&gt;\<br />
  -    http://www.apache.org/docs-2.0/mod/mod_authn_file.html&lt;/a&gt;'
  -  </indent>
  -</example>
  +    <example>
  +      AddModuleInfo mod_authn_file.c 'See &lt;a \<br />
  +      <indent>
  +      href="http://www.apache.org/docs-2.0/mod/mod_authn_file.html"&gt;\<br />
  +      http://www.apache.org/docs-2.0/mod/mod_authn_file.html&lt;/a&gt;'
  +      </indent>
  +    </example>
   </usage>
   
   </directivesynopsis>
  
  
  
  1.43      +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.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- quickreference.html.en	16 Nov 2002 00:48:49 -0000	1.42
  +++ quickreference.html.en	16 Nov 2002 01:31:29 -0000	1.43
  @@ -73,7 +73,7 @@
   <tr><td><a href="mod_mime.html#addlanguage">AddLanguage
       <em>MIME-lang extension</em> [<em>extension</em>] ...</a></td><td /><td>svdh</td><td>B</td></tr><tr><td class="descr" colspan="4">Maps the given filename extension
   to the specified content language</td></tr>
  -<tr class="odd"><td><a href="mod_info.html#addmoduleinfo">AddModuleInfo <em>module-name string</em></a></td><td /><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Adds additional information to the module
  +<tr class="odd"><td><a href="mod_info.html#addmoduleinfo">AddModuleInfo <var>module-name</var> <var>string</var></a></td><td /><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Adds additional information to the module
   information displayed by the server-info handler</td></tr>
   <tr><td><a href="mod_mime.html#addoutputfilter">AddOutputFilter
       <em>filter</em>[<em>;filter</em>...] extension