cvs commit: apache-1.3 STATUS

2000-01-18 Thread jim
jim 00/01/18 09:06:50

  Modified:.STATUS
  Log:
  We will go with 1.3.11 on the 21st, we hope
  
  Revision  ChangesPath
  1.795 +7 -7  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.794
  retrieving revision 1.795
  diff -u -r1.794 -r1.795
  --- STATUS2000/01/15 22:35:08 1.794
  +++ STATUS2000/01/18 17:06:49 1.795
  @@ -1,15 +1,15 @@
 1.3 STATUS:
  -  Last modified at [$Date: 2000/01/15 22:35:08 $]
  +  Last modified at [$Date: 2000/01/18 17:06:49 $]
   
   Release:
   
  -1.3.10-dev: Current. We will release on 1/19/2000. As such,
  -   only bug-fixes and doc changes will be allowed.
  +1.3.11-dev: Current. We will release on 1/21/2000.
  Timeline:
  -1/15/2000: Code freeze. No changes at all.
  -1/16/2000: tag and roll tarball
  -1/19/2000: Release and announce
  -1/21/2000: Re-open CVS (delay just in case)
  + 1/19/2000: tag and roll tarball
  + 1/21/2000: Release and announce
  + 1/23/2000: Re-open CVS
  +1.3.10: Not released. Pulled at last minute due to
  +a build bug in the MPE port.
   1.3.9: Tagged and rolled on Aug. 16. Released and announced on 19th.
   1.3.8: Not released.
   1.3.7: Not released.
  
  
  


cvs commit: apache-1.3/htdocs/manual/mod core.html

2000-01-18 Thread stoddard
stoddard00/01/18 11:32:58

  Modified:htdocs/manual dso.html new_features_1_3.html
   htdocs/manual/mod core.html
  Added:   conf httpd.conf-dist.nw
   htdocs/manual netware.html
  Log:
  Documentation for the Netware port
  Submitted by: Mike Gardiner
  
  Revision  ChangesPath
  1.1  apache-1.3/conf/httpd.conf-dist.nw
  
  Index: httpd.conf-dist.nw
  ===
  #
  # Based upon the NCSA server configuration files originally by Rob McCool.
  #
  # This is the main Apache server configuration file.  It contains the
  # configuration directives that give the server its instructions.
  # See URL:http://www.apache.org/docs/ for detailed information about
  # the directives.
  #
  # Do NOT simply read the instructions in here without understanding
  # what they do.  They're here only as hints or reminders.  If you are unsure
  # consult the online docs. You have been warned.  
  #
  # After this file is processed, the server will look for and process
  # sys:/apache/conf/srm.conf and then sys:/apache/conf/access.conf
  # unless you have overridden these with ResourceConfig and/or
  # AccessConfig directives here.
  #
  # The configuration directives are grouped into three basic sections:
  #  1. Directives that control the operation of the Apache server process as a
  # whole (the 'global environment').
  #  2. Directives that define the parameters of the 'main' or 'default' server,
  # which responds to requests that aren't handled by a virtual host.
  # These directives also provide default values for the settings
  # of all virtual hosts.
  #  3. Settings for virtual hosts, which allow Web requests to be sent to
  # different IP addresses or hostnames and have them handled by the
  # same Apache server process.
  #
  # Configuration and logfile names: If the filenames you specify for many
  # of the server's control files begin with / (or drive:/ for Win32 and
  # sys:/ for NetWare), the server will use that explicit path.  If the
  # filenames do *not* begin with /, the value of ServerRoot is prepended
  #  -- so logs/foo.log with ServerRoot set to /usr/local/apache will be
  # interpreted by the server as /usr/local/apache/logs/foo.log.
  #
  
  ### Section 1: Global Environment
  #
  # The directives in this section affect the overall operation of Apache,
  # such as the number of concurrent requests it can handle or where it
  # can find its configuration files.
  #
  
  #
  # ServerType is either inetd, or standalone.  Inetd mode is only supported on
  # Unix platforms.
  #
  ServerType standalone
  
  #
  # ServerRoot: The top of the directory tree under which the server's
  # configuration, error, and log files are kept.
  #
  # NOTE!  If you intend to place this on an NFS (or otherwise network)
  # mounted filesystem then please read the LockFile documentation
  # (available at URL:http://www.apache.org/docs/mod/core.html#lockfile);
  # you will save yourself a lot of trouble.
  #
  # Do NOT add a slash at the end of the directory path.
  #
  ServerRoot sys:/apache
  
  #
  # PidFile: The file in which the server should record its process
  # identification number when it starts.
  #
  PidFile logs/httpd.pid
  
  #
  # ScoreBoardFile: File used to store internal server process information.
  # Not all architectures require this.  But if yours does (you'll know because
  # this file will be  created when you run Apache) then you *must* ensure that
  # no two invocations of Apache share the same scoreboard file.
  #
  ScoreBoardFile logs/apache_status
  
  #
  # In the standard configuration, the server will process this file,
  # srm.conf, and access.conf in that order.  The latter two files are
  # now distributed empty, as it is recommended that all directives
  # be kept in a single file for simplicity.  The commented-out values
  # below are the built-in defaults.  You can have the server ignore
  # these files altogether by using /dev/null (for Unix) or
  # nul (for Win32) for the arguments to the directives.
  #
  #ResourceConfig conf/srm.conf
  #AccessConfig conf/access.conf
  
  #
  # Timeout: The number of seconds before receives and sends time out.
  #
  Timeout 300
  
  #
  # KeepAlive: Whether or not to allow persistent connections (more than
  # one request per connection). Set to Off to deactivate.
  #
  KeepAlive On
  
  #
  # MaxKeepAliveRequests: The maximum number of requests to allow
  # during a persistent connection. Set to 0 to allow an unlimited amount.
  # We recommend you leave this number high, for maximum performance.
  #
  MaxKeepAliveRequests 100
  
  #
  # KeepAliveTimeout: Number of seconds to wait for the next request from the
  # same client on the same connection.
  #
  KeepAliveTimeout 15
  
  #
  # Number of concurrent threads (i.e., requests) the server will allow.
  # Set this value according to the responsiveness of the 

cvs commit: apache-2.0/src/modules/standard mod_access.c mod_asis.c mod_auth_digest.c mod_autoindex.c mod_cgi.c mod_dir.c mod_echo.c mod_env.c mod_imap.c mod_include.c mod_mime.c mod_negotiation.c mod_status.c mod_userdir.c

2000-01-18 Thread rbb
rbb 00/01/18 15:42:07

  Modified:src/modules/standard mod_access.c mod_asis.c
mod_auth_digest.c mod_autoindex.c mod_cgi.c
mod_dir.c mod_echo.c mod_env.c mod_imap.c
mod_include.c mod_mime.c mod_negotiation.c
mod_status.c mod_userdir.c
  Log:
  This is a huge change to the configure system.  Basically, this name space
  protects most, if not all, of the Apache macros.   This has been tested on
  Linux using all of the Unix MPM's.  The biggest push was that Apache's
  httpd.h header file can no longer include the ap_config.h file.  Most of the
  other files include this themselves now.
  Submitted by: Ryan Bloom and Manoj Kasichainula
  
  Revision  ChangesPath
  1.5   +2 -0  apache-2.0/src/modules/standard/mod_access.c
  
  Index: mod_access.c
  ===
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_access.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- mod_access.c  1999/10/20 12:50:06 1.4
  +++ mod_access.c  2000/01/18 23:41:51 1.5
  @@ -62,11 +62,13 @@
* 
*/
   
  +#include apr_network_io.h
   #include httpd.h
   #include http_core.h
   #include http_config.h
   #include http_log.h
   #include http_request.h
  +#include string.h
   
   enum allowdeny_type {
   T_ENV,
  
  
  
  1.15  +2 -0  apache-2.0/src/modules/standard/mod_asis.c
  
  Index: mod_asis.c
  ===
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_asis.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- mod_asis.c2000/01/06 14:43:37 1.14
  +++ mod_asis.c2000/01/18 23:41:51 1.15
  @@ -63,6 +63,8 @@
   #include http_main.h
   #include http_request.h
   
  +#define ASIS_MAGIC_TYPE httpd/send-as-is
  +
   static int asis_handler(request_rec *r)
   {
   ap_file_t *f = NULL;
  
  
  
  1.5   +0 -1  apache-2.0/src/modules/standard/mod_auth_digest.c
  
  Index: mod_auth_digest.c
  ===
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_auth_digest.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- mod_auth_digest.c 1999/11/19 18:48:28 1.4
  +++ mod_auth_digest.c 2000/01/18 23:41:52 1.5
  @@ -125,7 +125,6 @@
   #include http_request.h
   #include http_log.h
   #include http_protocol.h
  -#include ap_config.h
   #include ap_ctype.h
   #include util_uri.h
   #include util_md5.h
  
  
  
  1.21  +1 -0  apache-2.0/src/modules/standard/mod_autoindex.c
  
  Index: mod_autoindex.c
  ===
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_autoindex.c,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- mod_autoindex.c   2000/01/10 15:35:50 1.20
  +++ mod_autoindex.c   2000/01/18 23:41:52 1.21
  @@ -73,6 +73,7 @@
   #include http_main.h
   #include util_script.h
   #include apr_fnmatch.h
  +#include string.h
   
   module MODULE_VAR_EXPORT autoindex_module;
   
  
  
  
  1.26  +2 -0  apache-2.0/src/modules/standard/mod_cgi.c
  
  Index: mod_cgi.c
  ===
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_cgi.c,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- mod_cgi.c 2000/01/10 15:35:51 1.25
  +++ mod_cgi.c 2000/01/18 23:41:52 1.26
  @@ -77,6 +77,8 @@
   #include http_log.h
   #include util_script.h
   #include http_conf_globals.h
  +#include sys/stat.h
  +#include string.h
   
   module MODULE_VAR_EXPORT cgi_module;
   
  
  
  
  1.6   +1 -1  apache-2.0/src/modules/standard/mod_dir.c
  
  Index: mod_dir.c
  ===
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_dir.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- mod_dir.c 2000/01/10 15:35:51 1.5
  +++ mod_dir.c 2000/01/18 23:41:53 1.6
  @@ -152,7 +152,7 @@
num_names = d-index_names-nelts;
   }
   else {
  - dummy_ptr[0] = DEFAULT_INDEX;
  + dummy_ptr[0] = AP_DEFAULT_INDEX;
names_ptr = dummy_ptr;
num_names = 1;
   }
  
  
  
  1.15  +1 -0  apache-2.0/src/modules/standard/mod_echo.c
  
  Index: mod_echo.c
  ===
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_echo.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- mod_echo.c1999/12/19 10:05:15 1.14
  +++ mod_echo.c2000/01/18 23:41:53 1.15
  @@ -1,3 +1,4 @@
  +#include ap_mmn.h
   #include httpd.h
   #include