You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Paul Sutton <pc...@hyperreal.org> on 1997/09/11 15:27:55 UTC

cvs commit: apachen/htdocs/manual/mod mod_example.html mod_info.html mod_mime_magic.html mod_rewrite.html

pcs         97/09/11 06:27:54

  Modified:    htdocs/manual/mod mod_example.html mod_info.html
                        mod_mime_magic.html mod_rewrite.html
  Log:
  Change Module line examples into AddModule to reflect the new Configure
  syntax
  
  Revision  Changes    Path
  1.4       +3 -2      apachen/htdocs/manual/mod/mod_example.html
  
  Index: mod_example.html
  ===================================================================
  RCS file: /export/home/cvs/apachen/htdocs/manual/mod/mod_example.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- mod_example.html	1997/06/04 16:14:20	1.3
  +++ mod_example.html	1997/09/11 13:27:50	1.4
  @@ -47,11 +47,12 @@
     To include the example module in your server, follow the steps below:
     </P>
     <OL>
  -   <LI>Uncomment the "Module example_module" line near the bottom of
  +   <LI>Uncomment the "AddModule modules/example/mod_example" line near 
  +    the bottom of
       the <CODE>src/Configuration</CODE> file.  If there isn't one, add
       it; it should look like this:
       <PRE>
  -     Module example_module        modules/example/mod_example.o
  +     AddModule modules/example/mod_example.o
       </PRE>
      </LI>
      <LI>Run the <CODE>src/Configure</CODE> script
  
  
  
  1.6       +1 -1      apachen/htdocs/manual/mod/mod_info.html
  
  Index: mod_info.html
  ===================================================================
  RCS file: /export/home/cvs/apachen/htdocs/manual/mod/mod_info.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- mod_info.html	1997/07/30 20:08:17	1.5
  +++ mod_info.html	1997/09/11 13:27:51	1.6
  @@ -24,7 +24,7 @@
   file, and rebuild the server:
   
   <PRE>
  -Module info_module   mod_info.o
  +AddModule modules/standard/mod_info.o
   </PRE>
   
   <H2>Directives</H2>
  
  
  
  1.4       +1 -1      apachen/htdocs/manual/mod/mod_mime_magic.html
  
  Index: mod_mime_magic.html
  ===================================================================
  RCS file: /export/home/cvs/apachen/htdocs/manual/mod/mod_mime_magic.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- mod_mime_magic.html	1997/07/11 06:14:19	1.3
  +++ mod_mime_magic.html	1997/09/11 13:27:51	1.4
  @@ -25,7 +25,7 @@
     server build <tt>Configuration</tt> file: 
   
     <pre>
  -      Module mime_magic_module   mod_mime_magic.o
  +      AddModule modules/standard/mod_mime_magic.o
     </pre>
   
     This should be listed <em>before</em> mod_mime in the build
  
  
  
  1.17      +1 -1      apachen/htdocs/manual/mod/mod_rewrite.html
  
  Index: mod_rewrite.html
  ===================================================================
  RCS file: /export/home/cvs/apachen/htdocs/manual/mod/mod_rewrite.html,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- mod_rewrite.html	1997/08/05 10:49:44	1.16
  +++ mod_rewrite.html	1997/09/11 13:27:52	1.17
  @@ -25,7 +25,7 @@
   default. To use <code>mod_rewrite</code> you have to enable the following line
   in the server build Configuration file:
   <pre>
  -    Module  rewrite_module   mod_rewrite.o
  +    AddModule  modules/standard/mod_rewrite.o
   </pre>
   
   <h2>Summary</h2>