summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-11-10 05:24:16 +0100
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-11-10 05:24:16 +0100
commit75856cb78fe4241d646f984e4812e1c07032abd6 (patch)
treeb2dafa673bf70ab475683ecb747defae669ca397
parentI have fixed PR#4455 already. (diff)
downloadapache2-75856cb78fe4241d646f984e4812e1c07032abd6.tar.xz
apache2-75856cb78fe4241d646f984e4812e1c07032abd6.zip
Just some things I noticed letting someone else have some desktop time.
Guess homework isn't a bad sacrifice, actually read some docs :-) Correct me if I'm wrong on the mod_auth_digest changes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86901 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/mpm.html4
-rw-r--r--docs/manual/mpm.html.en4
-rw-r--r--docs/manual/new_features_2_0.html37
-rw-r--r--docs/manual/new_features_2_0.html.en37
4 files changed, 46 insertions, 36 deletions
diff --git a/docs/manual/mpm.html b/docs/manual/mpm.html
index de049532b5..75c4deb8d1 100644
--- a/docs/manual/mpm.html
+++ b/docs/manual/mpm.html
@@ -55,8 +55,8 @@
<th width="20%">Maintainer</th>
</tr>
<tr>
-<td>winnt</td>
-<td>The Windows MPM. This is mainly aimed at Windows NT.</td>
+<td>mpm_winnt</td>
+<td>The Windows MPM, this is a multi-threaded model with a parent watchdog process.</td>
<td><a href="mailto:stoddard@raleigh.ibm.com">Bill Stoddard</a></td>
</tr>
</table>
diff --git a/docs/manual/mpm.html.en b/docs/manual/mpm.html.en
index de049532b5..75c4deb8d1 100644
--- a/docs/manual/mpm.html.en
+++ b/docs/manual/mpm.html.en
@@ -55,8 +55,8 @@
<th width="20%">Maintainer</th>
</tr>
<tr>
-<td>winnt</td>
-<td>The Windows MPM. This is mainly aimed at Windows NT.</td>
+<td>mpm_winnt</td>
+<td>The Windows MPM, this is a multi-threaded model with a parent watchdog process.</td>
<td><a href="mailto:stoddard@raleigh.ibm.com">Bill Stoddard</a></td>
</tr>
</table>
diff --git a/docs/manual/new_features_2_0.html b/docs/manual/new_features_2_0.html
index ec82aa4729..c537c37472 100644
--- a/docs/manual/new_features_2_0.html
+++ b/docs/manual/new_features_2_0.html
@@ -31,19 +31,19 @@
multiple protocols. mod_echo has been written as an example.
<DT><STRONG>Better support for non-Unix platforms</STRONG>
-<DD>Apache 2.0 should be faster and more stable on non-Unix platforms such
- as BeOS, OS/2, and Windows. With the introduction of platform-specific
- multiprocessing modules (MPM) and the Apache Portable Runtime, these
- platforms can now avoid using POSIX-emulation functions that are
- sometimes buggy and always hurt performance.
+<DD>Apache 2.0 is faster and more stable on non-Unix platforms such as
+ BeOS, OS/2, and Windows. With the introduction of platform-specific
+ multiprocessing modules (MPM) and the Apache Portable Runtime (APR),
+ these platforms are now implemented in their native API, avoiding the
+ often buggy and poorly performing POSIX-emulation layers.
<DD>A list of the MPM's currently available is <a href="mpm.html">here</a>.
-<DT><STRONG>New API</STRONG>
+
+<DT><STRONG>New Apache API</STRONG>
<DD>The API for modules has changed significantly for 2.0. Many of the
module-ordering problems from 1.3 should be gone. 2.0 does much of
this automatically, and module ordering is now done per-hook to
- allow more flexibility. Also, new calls have been added that should
- allow modules to do more without requiring patching of the core
- Apache server.
+ allow more flexibility. Also, new calls have been added that provide
+ additional module capabilities without patching the core Apache server.
<P><HR>
@@ -54,18 +54,23 @@
<dt><strong>mod_auth_db</strong>
<dd>Now supports Berkely DB 3.0
-<dt><strong>mod_file_cache</strong>
-<dd>New module in Apache 2.0. This module includes the functionality
-of mod_mmap_static in Apache 1.3, plus adds further caching abilities.
-
-<dt><strong>mod_dav</strong>
-<dd>New module in Apache 2.0. This module implements the
-HTTP Distributed Authoring and Versioning (DAV) specification.
+<dt><strong>mod_auth_digest</strong>
+<dd>Includes additional support for session caching across processes
+using shared memory.
<dt><strong>mod_charset_lite</strong> <dd>New module in Apache 2.0.
This experimental module allows for character set translation
or recoding.
+<dt><strong>mod_dav</strong>
+<dd>New module in Apache 2.0. This module implements the
+HTTP Distributed Authoring and Versioning (DAV) specification for
+posting and maintaining web content.
+
+<dt><strong>mod_file_cache</strong>
+<dd>New module in Apache 2.0. This module includes the functionality
+of mod_mmap_static in Apache 1.3, plus adds further caching abilities.
+
</dl>
<!--#include virtual="footer.html" -->
diff --git a/docs/manual/new_features_2_0.html.en b/docs/manual/new_features_2_0.html.en
index ec82aa4729..c537c37472 100644
--- a/docs/manual/new_features_2_0.html.en
+++ b/docs/manual/new_features_2_0.html.en
@@ -31,19 +31,19 @@
multiple protocols. mod_echo has been written as an example.
<DT><STRONG>Better support for non-Unix platforms</STRONG>
-<DD>Apache 2.0 should be faster and more stable on non-Unix platforms such
- as BeOS, OS/2, and Windows. With the introduction of platform-specific
- multiprocessing modules (MPM) and the Apache Portable Runtime, these
- platforms can now avoid using POSIX-emulation functions that are
- sometimes buggy and always hurt performance.
+<DD>Apache 2.0 is faster and more stable on non-Unix platforms such as
+ BeOS, OS/2, and Windows. With the introduction of platform-specific
+ multiprocessing modules (MPM) and the Apache Portable Runtime (APR),
+ these platforms are now implemented in their native API, avoiding the
+ often buggy and poorly performing POSIX-emulation layers.
<DD>A list of the MPM's currently available is <a href="mpm.html">here</a>.
-<DT><STRONG>New API</STRONG>
+
+<DT><STRONG>New Apache API</STRONG>
<DD>The API for modules has changed significantly for 2.0. Many of the
module-ordering problems from 1.3 should be gone. 2.0 does much of
this automatically, and module ordering is now done per-hook to
- allow more flexibility. Also, new calls have been added that should
- allow modules to do more without requiring patching of the core
- Apache server.
+ allow more flexibility. Also, new calls have been added that provide
+ additional module capabilities without patching the core Apache server.
<P><HR>
@@ -54,18 +54,23 @@
<dt><strong>mod_auth_db</strong>
<dd>Now supports Berkely DB 3.0
-<dt><strong>mod_file_cache</strong>
-<dd>New module in Apache 2.0. This module includes the functionality
-of mod_mmap_static in Apache 1.3, plus adds further caching abilities.
-
-<dt><strong>mod_dav</strong>
-<dd>New module in Apache 2.0. This module implements the
-HTTP Distributed Authoring and Versioning (DAV) specification.
+<dt><strong>mod_auth_digest</strong>
+<dd>Includes additional support for session caching across processes
+using shared memory.
<dt><strong>mod_charset_lite</strong> <dd>New module in Apache 2.0.
This experimental module allows for character set translation
or recoding.
+<dt><strong>mod_dav</strong>
+<dd>New module in Apache 2.0. This module implements the
+HTTP Distributed Authoring and Versioning (DAV) specification for
+posting and maintaining web content.
+
+<dt><strong>mod_file_cache</strong>
+<dd>New module in Apache 2.0. This module includes the functionality
+of mod_mmap_static in Apache 1.3, plus adds further caching abilities.
+
</dl>
<!--#include virtual="footer.html" -->