You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Dean Gaudet <dg...@hyperreal.org> on 1997/07/30 22:08:32 UTC

cvs commit: apache/htdocs/manual/mod directives.html mod_info.html

dgaudet     97/07/30 13:08:20

  Modified:    htdocs/manual  new_features_1_3.html
               htdocs/manual/mod  directives.html mod_info.html
  Log:
  Document the AddModuleInfo patch.
  
  Submitted by:	"Lou D. Langholtz" <ld...@usi.utah.edu>
  
  Revision  Changes    Path
  1.12      +3 -0      apache/htdocs/manual/new_features_1_3.html
  
  Index: new_features_1_3.html
  ===================================================================
  RCS file: /export/home/cvs/apache/htdocs/manual/new_features_1_3.html,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- new_features_1_3.html	1997/07/25 11:03:58	1.11
  +++ new_features_1_3.html	1997/07/30 20:08:14	1.12
  @@ -149,6 +149,9 @@
   and <strong><a href="mod/mod_proxy.html#proxydomain">ProxyDomain</a>
   </strong> directives added to proxy, useful for intranets.
       
  +<li><strong><a href="mod/mod_info.html#addmoduleinfo">AddModuleInfo</a>
  +directive added to <a href="mod/mod_info.html">mod_info</a></strong><br>
  +Allows additional information to be listed along with a specified module.
   </ul>
   
   <!--#include virtual="footer.html" -->
  
  
  
  1.28      +1 -0      apache/htdocs/manual/mod/directives.html
  
  Index: directives.html
  ===================================================================
  RCS file: /export/home/cvs/apache/htdocs/manual/mod/directives.html,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- directives.html	1997/07/21 21:26:55	1.27
  +++ directives.html	1997/07/30 20:08:16	1.28
  @@ -30,6 +30,7 @@
   <li><A HREF="mod_autoindex.html#addiconbytype">AddIconByType</A>
   <li><A HREF="mod_mime.html#addlanguage">AddLanguage</A>
   <li><A HREF="core.html#addmodule">AddModule</A>
  +<li><A HREF="mod_info.html#addmoduleinfo">AddModuleInfo</A>
   <li><A HREF="mod_mime.html#addtype">AddType</A>
   <li><A HREF="mod_log_agent.html#agentlog">AgentLog</A>
   <li><A HREF="mod_alias.html#alias">Alias</A>
  
  
  
  1.5       +25 -0     apache/htdocs/manual/mod/mod_info.html
  
  Index: mod_info.html
  ===================================================================
  RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_info.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- mod_info.html	1997/06/04 16:14:21	1.4
  +++ mod_info.html	1997/07/30 20:08:17	1.5
  @@ -27,6 +27,11 @@
   Module info_module   mod_info.o
   </PRE>
   
  +<H2>Directives</H2>
  +<UL>
  +<LI><A HREF="#addmoduleinfo">AddModuleInfo</A>
  +</UL>
  +
   <HR>
   <P>
   To configure it, add the following to your <code>access.conf</code> file.
  @@ -68,6 +73,26 @@
     </P>
    </STRONG>
   </BLOCKQUOTE>
  +
  +<HR>
  +
  +<H2><A NAME="addmoduleinfo">AddModuleInfo</A></H2>
  +<STRONG>Syntax:</STRONG> AddModuleInfo <EM>module-name string</EM><BR>
  +<STRONG>Context:</STRONG> server config, virtual host<BR>
  +<STRONG>Status:</STRONG> base<BR>
  +<STRONG>Module:</STRONG> mod_browser<BR>
  +<STRONG>Compatibility:</STRONG> Apache 1.3 and above<P>
  +
  +This allows the content of <EM>string</EM> to be shown as
  +HTML interpreted,
  +<STRONG>Additional Information</STRONG> for the module <EM>module-name</EM>.
  +Example:
  +<BLOCKQUOTE>
  +<PRE>
  +AddModuleInfo mod_auth.c 'See &lt;A HREF="http://www.apache.org/docs/mod/mod_auth.html"&gt;http://www.apache.org/docs/mod/mod_auth.html&lt;/A&gt;'
  +</PRE>
  +</BLOCKQUOTE>
  +
   <!--#include virtual="footer.html" -->
   </BODY>
   </HTML>