From: Joshua Slive Date: Thu, 25 Jan 2001 21:31:03 +0000 (+0000) Subject: Updates to upgrading/new_features for some recent changes. I would X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=370e0459130637b730069f4e14e58000516be9bb;p=thirdparty%2Fapache%2Fhttpd.git Updates to upgrading/new_features for some recent changes. I would guess that there are still tons of things missing from these files. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87839 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/new_features_2_0.html b/docs/manual/new_features_2_0.html index a0127cf378e..be30beef758 100644 --- a/docs/manual/new_features_2_0.html +++ b/docs/manual/new_features_2_0.html @@ -45,6 +45,19 @@ allow more flexibility. Also, new calls have been added that provide additional module capabilities without patching the core Apache server. +
IPv6 Support
+
On systems where IPv6 is supported by the underlying Apache + Portable Runtime library, Apache gets IPv6 listening sockets by + default. Additionally, the Listen, NameVirtualHost, and + <VirtualHost> directives support IPv6 numeric address + strings (e.g., "Listen [fe80::1]:8080").
+ +
Filtering
+
Apache modules may now be written as filters which act on the + stream of content as it is delivered to or from the server. This + allows, for example, the output of CGI scripts to be parsed for + Server Side Include directive by mod_include.
+


diff --git a/docs/manual/new_features_2_0.html.en b/docs/manual/new_features_2_0.html.en index a0127cf378e..be30beef758 100644 --- a/docs/manual/new_features_2_0.html.en +++ b/docs/manual/new_features_2_0.html.en @@ -45,6 +45,19 @@ allow more flexibility. Also, new calls have been added that provide additional module capabilities without patching the core Apache server. +
IPv6 Support
+
On systems where IPv6 is supported by the underlying Apache + Portable Runtime library, Apache gets IPv6 listening sockets by + default. Additionally, the Listen, NameVirtualHost, and + <VirtualHost> directives support IPv6 numeric address + strings (e.g., "Listen [fe80::1]:8080").
+ +
Filtering
+
Apache modules may now be written as filters which act on the + stream of content as it is delivered to or from the server. This + allows, for example, the output of CGI scripts to be parsed for + Server Side Include directive by mod_include.
+


diff --git a/docs/manual/upgrading.html b/docs/manual/upgrading.html index 17ecd71a1bb..31567c8ed3f 100644 --- a/docs/manual/upgrading.html +++ b/docs/manual/upgrading.html @@ -36,6 +36,13 @@ into Multi-Processing Modules (MPMs).

Run-Time Configuration Changes

Misc Changes

@@ -103,8 +113,9 @@ been replaced by -t -D DUMP_VHOSTS.
  • The httpd command line option -X has been removed. Most MPMs allow the same functionality to be requested -by setting the ONE_PROCESS and NO_DETACH -environment variables prior to launching httpd.
  • +by using the -D ONE_PROCESS command line +option. In addition, a -D NO_DETACH command line +option is available.
  • The module mod_auth_digest, which was experimental in Apache 1.3 is now a standard module.
  • @@ -112,6 +123,11 @@ is now a standard module.
  • The mod_mmap_static module, which was experimental in Apache 1.3 has been replaced with mod_file_cache.
  • +
  • The distribution has been completely reorganized so that it no +longer contains an independent src directory. Instead, +the sources are logically organized under the main distribution +directory, and installations of the compiled server should be +directed to a separate directory.
  • diff --git a/docs/manual/upgrading.html.en b/docs/manual/upgrading.html.en index 17ecd71a1bb..31567c8ed3f 100644 --- a/docs/manual/upgrading.html.en +++ b/docs/manual/upgrading.html.en @@ -36,6 +36,13 @@ into Multi-Processing Modules (MPMs).

    Run-Time Configuration Changes

    Misc Changes

    @@ -103,8 +113,9 @@ been replaced by -t -D DUMP_VHOSTS.
  • The httpd command line option -X has been removed. Most MPMs allow the same functionality to be requested -by setting the ONE_PROCESS and NO_DETACH -environment variables prior to launching httpd.
  • +by using the -D ONE_PROCESS command line +option. In addition, a -D NO_DETACH command line +option is available.
  • The module mod_auth_digest, which was experimental in Apache 1.3 is now a standard module.
  • @@ -112,6 +123,11 @@ is now a standard module.
  • The mod_mmap_static module, which was experimental in Apache 1.3 has been replaced with mod_file_cache.
  • +
  • The distribution has been completely reorganized so that it no +longer contains an independent src directory. Instead, +the sources are logically organized under the main distribution +directory, and installations of the compiled server should be +directed to a separate directory.