lars 99/03/20 18:03:07
Modified: htdocs/manual/mod mod_log_agent.html mod_log_referer.html
htdocs/manual new_features_1_3.html
src CHANGES
Log:
Some minor doc updates...
Revision Changes Path
1.10 +2 -1 apache-1.3/htdocs/manual/mod/mod_log_agent.html
Index: mod_log_agent.html
===================================================================
RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_log_agent.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mod_log_agent.html 1998/05/20 14:12:57 1.9
+++ mod_log_agent.html 1999/03/21 02:03:04 1.10
@@ -17,7 +17,8 @@
This module is contained in the <CODE>mod_log_agent.c</CODE> file, and is not
compiled in by default. It provides for logging of the client user agents.
-
+mod_log_agent is deprecated. Use <A
HREF="mod_log_config.html">mod_log_config</A>
+instead.
<UL>
<LI><A HREF="#agentlog">AgentLog</A>
1.10 +3 -1 apache-1.3/htdocs/manual/mod/mod_log_referer.html
Index: mod_log_referer.html
===================================================================
RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_log_referer.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mod_log_referer.html 1998/05/20 14:12:57 1.9
+++ mod_log_referer.html 1999/03/21 02:03:04 1.10
@@ -17,7 +17,9 @@
This module is contained in the <CODE>mod_log_referer.c</CODE> file, and is
not
compiled in by default. It provides for logging of the documents which
-reference documents on the server.
+reference documents on the server. As of Apache 1.3.5 it is deprecated.
+Use <A HREF="mod_log_config.html#customlog-conditional">CustomLog
+(conditional)</A> instead.
<H2>Log file format</H2>
The log file contains a separate line for each refer. Each line has the
1.78 +19 -2 apache-1.3/htdocs/manual/new_features_1_3.html
Index: new_features_1_3.html
===================================================================
RCS file: /export/home/cvs/apache-1.3/htdocs/manual/new_features_1_3.html,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- new_features_1_3.html 1999/01/10 06:20:49 1.77
+++ new_features_1_3.html 1999/03/21 02:03:05 1.78
@@ -64,7 +64,6 @@
it. This opens up more opportunities for log rotation, hit
filtering, real-time splitting of multiple vhosts into separate
logs, and asynchronous DNS resolving on the fly.
-
</DL>
<P><HR>
@@ -201,6 +200,12 @@
<CODE>VirtualHost</CODE> sections. This is useful for folks
trying to debug their virtual host configuration.
+<DT><STRONG>Control of HTTP methods</STRONG>
+<DD><A HREF="mod/core.html#limitexcept"><LimitExcept> and
+ </LimitExcept></A> are used to enclose a group of access control
+ directives which will then apply to any HTTP access method not listed in
+ the arguments; i.e., it is the opposite of a <Limit> section and can be
+ used to control both standard and nonstandard/unrecognized methods.
</DL>
<P><HR>
@@ -208,6 +213,13 @@
<H3><A NAME="mod">Module Enhancements</A></H3>
<DL>
+<DT><STRONG>NEW - Pass all of the server's environment variables to
+ CGIs and SSIs.</STRONG><BR>
+<DD>With the <A HREF="mod/mod_env.html#passallenv">PassAllEnv</A> directive
all
+ of the server's environment variables are made available to CGIs and SSIs
+ within the directive's scope. Please note that this directive is not
+ recommended for general use.
+
<DT><A HREF="mod/mod_negotiation.html"><STRONG>Improved mod_negotiation
</STRONG></A><BR>
<DD>The optional content negotiation (MultiViews) module has been completely
@@ -395,6 +407,11 @@
><CODE>CustomLog</CODE></A> directives, rather than having to
spell out the complete log format string each time.
+<DT><STRONG>Conditional logging</STRONG>
+<DD><A
HREF="mod/mod_log_config.html#customlog-conditional">mod_log_config</A>
+ now supports logging based upon environment variables.
+ mod_log_referer and mod_log_agent are now deprecated.
+
<DT><STRONG>mod_cern_meta configurable per-directory</STRONG>
<DD><A HREF="mod/mod_cern_meta.html">mod_cern_meta</A> is now
configurable on a per-directory basis.
@@ -601,7 +618,7 @@
config files. So you will see errors in the config file. This
should make it easier to start Apache via rsh or crontab.
-<DT><STRONG>Year-2000 Improvements</STRONG>
+<DT><A NAME="y2k"><STRONG>Year-2000 Improvements</STRONG></A>
<DD>The default <CODE>timefmt</CODE> string used by <A
HREF="mod/mod_include.html"><CODE>mod_include</CODE></A> has been
modified to display the year using four digits rather than the
1.1288 +2 -2 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1287
retrieving revision 1.1288
diff -u -r1.1287 -r1.1288
--- CHANGES 1999/03/20 23:43:21 1.1287
+++ CHANGES 1999/03/21 02:03:06 1.1288
@@ -42,7 +42,7 @@
*) ap_isxdigit was somehow neglected when adding the ap_isfoo() macros
for 8-bit safeness. [Dean Gaudet]
- *) Use -fPIC instead of -fpic on Solaris and SunOS for compiling DSOs
+ *) PORT: Use -fPIC instead of -fpic on Solaris and SunOS for compiling DSOs
because SPARCs have a small machine-specific maximum size for the Global
Offset Table which is often exceeded when compiling one of the larger
third-party modules with Apache. [Peter Urban <[EMAIL PROTECTED]>]
PR#3977
@@ -150,7 +150,7 @@
server error" it does currently. The general exposure mechanism
can be triggered by any module by setting the "verbose-error-to"
note to "*"; this allows more than just proxy errors to be exposed.
- [Cliff Skolnick, Roy Fielding, Martin Kraemer] Related to PR#3455
+ [Cliff Skolnick, Roy Fielding, Martin Kraemer] Related to PR#3455, 4086
*) Moved man pages for ab and apachectrl to section 8.
[Wilfredo Sanchez, Roy Fielding]