You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sl...@apache.org on 2002/03/06 21:58:49 UTC

cvs commit: httpd-2.0/docs/manual/mod mod_speling.xml mod_status.xml mod_suexec.xml mod_unique_id.xml mod_userdir.xml mod_vhost_alias.xml mpm_winnt.xml

slive       02/03/06 12:58:48

  Modified:    docs/manual/mod mod_speling.xml mod_status.xml
                        mod_suexec.xml mod_unique_id.xml mod_userdir.xml
                        mod_vhost_alias.xml mpm_winnt.xml
  Log:
  Bring some docs into line with the DTD.
  
  Revision  Changes    Path
  1.2       +11 -11    httpd-2.0/docs/manual/mod/mod_speling.xml
  
  Index: mod_speling.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_speling.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -d -b -u -r1.1 -r1.2
  --- mod_speling.xml	4 Mar 2002 02:45:22 -0000	1.1
  +++ mod_speling.xml	6 Mar 2002 20:58:48 -0000	1.2
  @@ -1,17 +1,17 @@
   <?xml version="1.0"?>
  +<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
   <?xml-stylesheet type="text/xsl" href="../style/manual.xsl"?>
   <modulesynopsis>
   
   <name>mod_speling</name>
  +<description>Attempts to correct mistaken URLs that
  +users might have entered by ignoring capitalization and by
  +allowing up to one misspelling</description>
   <status>Extension</status>
  -<identifier>speling_module</identifier>
   <sourcefile>mod_speling.c</sourcefile>
  -<compatibility>Available in Apache 1.3 and later. Available as
  -an External module in Apache 1.1 and later.</compatibility>
  +<identifier>speling_module</identifier>
  +
   
  -<description>This module attempts to correct misspellings of URLs that
  -users might have entered, by ignoring capitalization and by
  -allowing up to one misspelling.</description>
   
   <summary>
   
  @@ -47,6 +47,8 @@
   
   <directivesynopsis>
   <name>CheckSpelling</name>
  +<description>Enables the spelling 
  +module</description>
   <syntax>CheckSpelling on|off</syntax>
   <default>CheckSpelling Off</default>
   <contextlist>
  @@ -59,10 +61,8 @@
   <compatibility>CheckSpelling was available as a separately available
   module for Apache 1.1, but was limited to miscapitalizations. As
   of Apache 1.3, it is part of the Apache distribution. Prior to Apache
  -1.3.2, the <samp>CheckSpelling</samp> directive was only available in the
  +1.3.2, the <code>CheckSpelling</code> directive was only available in the
   "server" and "virtual host" contexts.</compatibility>
  -<description>This directive enables or disables the spelling 
  -module.</description>
   
   <usage>
   
  @@ -84,9 +84,9 @@
         directory names.</li>
   
         <li>spelling corrections apply strictly to existing files, so
  -      a request for the <samp>&lt;Location /status&gt;</samp> may
  +      a request for the <code>&lt;Location /status&gt;</code> may
         get incorrectly treated as the negotiated file
  -      "<samp>/stats.html</samp>".</li>
  +      "<code>/stats.html</code>".</li>
       </ul>
   </usage>
   
  
  
  
  1.2       +12 -12    httpd-2.0/docs/manual/mod/mod_status.xml
  
  Index: mod_status.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_status.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -d -b -u -r1.1 -r1.2
  --- mod_status.xml	19 Feb 2002 01:21:56 -0000	1.1
  +++ mod_status.xml	6 Mar 2002 20:58:48 -0000	1.2
  @@ -1,15 +1,15 @@
   <?xml version="1.0"?>
  +<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
   <?xml-stylesheet type="text/xsl" href="../style/manual.xsl"?>
   <modulesynopsis>
   
   <name>mod_status</name>
  +<description>Provides information on server activity and
  +performance</description>
   <status>Base</status>
  -<identifier>status_module</identifier>
   <sourcefile>mod_status.c</sourcefile>
  -<compatibility>Available in Apache 1.1 and later</compatibility>
  +<identifier>status_module</identifier>
   
  -<description>This module provides information on server activity and
  -performance.</description>
   
   <summary>
   
  @@ -53,17 +53,17 @@
         <li>The current hosts and requests being processed (*)</li>
       </ul>
   
  -    A compile-time option must be used to display the details
  +    <p>A compile-time option must be used to display the details
       marked "(*)" as the instrumentation required for obtaining
  -    these statistics does not exist within standard Apache. 
  +    these statistics does not exist within standard Apache.</p>
   </summary>
   
   <section>
       <title>Enabling Status Support</title>
   
  -    To enable status reports only for browsers from the foo.com
  +    <p>To enable status reports only for browsers from the foo.com
       domain add this code to your <code>httpd.conf</code>
  -    configuration file 
  +    configuration file</p>
   <example>
       &lt;Location /server-status&gt;<br />
       SetHandler server-status<br />
  @@ -87,22 +87,22 @@
   <section>
   
       <title>Automatic Updates</title>
  -    You can get the status page to update itself automatically if
  +    <p>You can get the status page to update itself automatically if
       you have a browser that supports "refresh". Access the page
       <code>http://your.server.name/server-status?refresh=N</code> to
  -    refresh the page every N seconds. 
  +    refresh the page every N seconds.</p>
   
   </section>
   
   <section>
   
       <title>Machine Readable Status File</title>
  -    A machine-readable version of the status file is available by
  +    <p>A machine-readable version of the status file is available by
       accessing the page
       <code>http://your.server.name/server-status?auto</code>. This
       is useful when automatically run, see the Perl program in the
       <code>/support</code> directory of Apache,
  -    <code>log_server_status</code>. 
  +    <code>log_server_status</code>.</p>
   
       <note>
         <strong>It should be noted that if <module>mod_status</module> is
  
  
  
  1.3       +4 -3      httpd-2.0/docs/manual/mod/mod_suexec.xml
  
  Index: mod_suexec.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_suexec.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -d -b -u -r1.2 -r1.3
  --- mod_suexec.xml	18 Feb 2002 15:50:05 -0000	1.2
  +++ mod_suexec.xml	6 Mar 2002 20:58:48 -0000	1.3
  @@ -1,15 +1,16 @@
   <?xml version="1.0"?>
  +<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
   <?xml-stylesheet type="text/xsl" href="../style/manual.xsl"?>
   <modulesynopsis>
   
   <name>mod_suexec</name>
  +<description>Allows CGI scripts to run as a specified user
  +and Group</description>
   <status>Extension</status>
  -<identifier>suexec_module</identifier>
   <sourcefile>mod_suexec.c</sourcefile>
  +<identifier>suexec_module</identifier>
   <compatibility>Available in Apache 2.0 and later</compatibility>
   
  -<description>This module allows CGI scripts to run as a specified user
  -and Group.</description>
   
   <summary>
       <p>This module allows CGI scripts to run as a specified user
  
  
  
  1.2       +4 -5      httpd-2.0/docs/manual/mod/mod_unique_id.xml
  
  Index: mod_unique_id.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_unique_id.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -d -b -u -r1.1 -r1.2
  --- mod_unique_id.xml	18 Feb 2002 03:53:30 -0000	1.1
  +++ mod_unique_id.xml	6 Mar 2002 20:58:48 -0000	1.2
  @@ -1,15 +1,14 @@
   <?xml version="1.0"?>
  +<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
   <?xml-stylesheet type="text/xsl" href="../style/manual.xsl"?>
   <modulesynopsis>
   
   <name>mod_unique_id</name>
  +<description>Provides an environment variable with a unique
  +identifier for each request</description>
   <status>Extension</status>
  -<identifier>unique_id_module</identifier>
   <sourcefile>mod_unique_id.c</sourcefile>
  -<compatibility>Available in Apache 1.3 and later.</compatibility>
  -
  -<description>This module provides an environment variable with a unique
  -identifier for each request.</description>
  +<identifier>unique_id_module</identifier>
   
   <summary>
   
  
  
  
  1.5       +5 -4      httpd-2.0/docs/manual/mod/mod_userdir.xml
  
  Index: mod_userdir.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_userdir.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -d -b -u -r1.4 -r1.5
  --- mod_userdir.xml	2 Mar 2002 02:37:17 -0000	1.4
  +++ mod_userdir.xml	6 Mar 2002 20:58:48 -0000	1.5
  @@ -1,13 +1,14 @@
   <?xml version="1.0"?>
  +<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
   <?xml-stylesheet type="text/xsl" href="../style/manual.xsl"?>
   <modulesynopsis>
   
   <name>mod_userdir</name>
  +<description>Provides for user-specific
  +directories</description>
   <status>Base</status>
  -<description>This module provides for user-specific
  -directories.</description>
  -<identifier>userdir_module</identifier>
   <sourcefile>mod_userdir.c</sourcefile>
  +<identifier>userdir_module</identifier>
   
   <summary>
   </summary>
  @@ -21,7 +22,7 @@
   <em>~username</em>, such as 
   <em>http://server.example.com/~bob/</em></description>
   <syntax>UserDir <em>directory-filename</em></syntax>
  -<default>UserDir <em>public_html</em></default>
  +<default>UserDir public_html</default>
   <contextlist><context>server config</context> <context>virtual
   host</context></contextlist>
   <compatibility>All forms except the <code>UserDir public_html</code>
  
  
  
  1.2       +15 -16    httpd-2.0/docs/manual/mod/mod_vhost_alias.xml
  
  Index: mod_vhost_alias.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_vhost_alias.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -d -b -u -r1.1 -r1.2
  --- mod_vhost_alias.xml	4 Mar 2002 02:38:42 -0000	1.1
  +++ mod_vhost_alias.xml	6 Mar 2002 20:58:48 -0000	1.2
  @@ -1,16 +1,15 @@
   <?xml version="1.0"?>
  +<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
   <?xml-stylesheet type="text/xsl" href="../style/manual.xsl"?>
   <modulesynopsis>
   
   <name>mod_vhost_alias</name>
  +<description>Provides for <a
  +href="../vhosts/mass.html">dynamically configured mass virtual
  +hosting</a></description>
   <status>Extension</status>
  -<identifier>vhost_alias_module</identifier>
   <sourcefile>mod_vhost_alias.c</sourcefile>
  -<compatibility>Available in Apache 1.3.7 and later.</compatibility>
  -
  -<description>This module provides support for <a
  -href="../vhosts/mass.html">dynamically configured mass virtual
  -hosting</a>.</description>
  +<identifier>vhost_alias_module</identifier>
   
   <summary>
   
  @@ -20,10 +19,10 @@
       determine what files to serve. This allows for easy use of a
       huge number of virtual hosts with similar configurations.</p>
   
  -    <seealso>See also: <directive
  -    module="core">UseCanonicalName</directive>.</seealso>
   
   </summary>
  +    <seealso><directive
  +    module="core">UseCanonicalName</directive>.</seealso>
   
   <section>
       <title>Directory Name Interpolation</title>
  @@ -180,6 +179,8 @@
   
   <directivesynopsis>
   <name>VirtualDocumentRoot</name>
  +<description>Dynamically configure the location of the document root
  +for a given virtual host</description>
   <syntax>VirtualDocumentRoot <em>interpolated-directory</em></syntax>
   <default>none</default>
   <contextlist>
  @@ -189,8 +190,6 @@
   <override></override>
   <compatibility>VirtualDocumentRoot is only available in 1.3.7 and
   later.</compatibility>
  -<description>Dynamically configure the location of the document root
  -for a given virtual host.</description>
   
   <usage>
   
  @@ -210,6 +209,8 @@
   
   <directivesynopsis>
   <name>VirtualDocumentRootIP</name>
  +<description>Dynamically configure the location of the document root
  +for a given virtual host</description>
   <syntax>VirtualDocumentRootIP <em>interpolated-directory</em></syntax>
   <default>none</default>
   <contextlist>
  @@ -219,8 +220,6 @@
   <override></override>
   <compatibility>VirtualDocumentRootIP is only available in 1.3.7 
   and later.</compatibility>
  -<description>Dynamically configure the location of the document root
  -for a given virtual host</description>
   
   <usage>
   
  @@ -233,6 +232,8 @@
   
   <directivesynopsis>
   <name>VirtualScriptAlias</name>
  +<description>Dynamically configure the location of the CGI directory for
  +a given virtual host</description>
   <syntax>VirtualScriptAlias <em>interpolated-directory</em></syntax>
   <default>none</default>
   <contextlist>
  @@ -242,8 +243,6 @@
   <override></override>
   <compatibility>VirtualScriptAlias is only available in 1.3.7
   and later.</compatibility>
  -<description>Dynamically configure the location of the CGI directory for
  -a given virtual host.</description>
   
   <usage>
   
  @@ -260,6 +259,8 @@
   
   <directivesynopsis>
   <name>VirtualScriptAliasIP</name>
  +<description>Dynamically configure the location of the cgi directory for
  +a given virtual host</description>
   <syntax>VirtualScriptAliasIP <em>interpolated-directory</em></syntax>
   <default>none</default>
   <contextlist>
  @@ -269,8 +270,6 @@
   <override></override>
   <compatibility>VirtualScriptAliasIP is only available in 1.3.7 
   and later.</compatibility>
  -<description>Dynamically configure the location of the cgi directory for
  -a given virtual host.</description>
   
   <usage>
   
  
  
  
  1.2       +1 -0      httpd-2.0/docs/manual/mod/mpm_winnt.xml
  
  Index: mpm_winnt.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mpm_winnt.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -d -b -u -r1.1 -r1.2
  --- mpm_winnt.xml	5 Mar 2002 23:15:43 -0000	1.1
  +++ mpm_winnt.xml	6 Mar 2002 20:58:48 -0000	1.2
  @@ -1,4 +1,5 @@
   <?xml version="1.0"?>
  +<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
   <?xml-stylesheet type="text/xsl" href="../style/manual.xsl"?>
   <modulesynopsis>