cvs commit: apache-devsite styleguide.html

1998-04-20 Thread brian
brian   98/04/19 22:32:47

  Modified:.styleguide.html
  Log:
  Clarify that it's GNU indent.
  
  Revision  ChangesPath
  1.7   +1 -1  apache-devsite/styleguide.html
  
  Index: styleguide.html
  ===
  RCS file: /export/home/cvs/apache-devsite/styleguide.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- styleguide.html   1998/02/12 14:39:23 1.6
  +++ styleguide.html   1998/04/20 05:32:47 1.7
  @@ -21,7 +21,7 @@
   functions. The guidelines can be broken if necessary to acheive a
   clearer layout]
   
  -PThis style can be generated with the following arguments to indent:
  +PThis style can be generated with the following arguments to GNU indent:
   
   PULCODE-i4 -npsl -di0 -br -nce -d0 -cli0 -npcs -nfc1/CODE/UL
   
  
  
  


cvs commit: apache-devsite debugging.html index.html

1998-04-20 Thread brian
brian   98/04/19 22:50:14

  Modified:.index.html
  Added:   .debugging.html
  Log:
  A meek beginning, but better than sitting around complaining that it doesn't
  exist.  Feel free to add to this!
  
  Revision  ChangesPath
  1.20  +5 -8  apache-devsite/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-devsite/index.html,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- index.html1998/04/18 07:37:33 1.19
  +++ index.html1998/04/20 05:50:13 1.20
  @@ -59,17 +59,14 @@
  draft form.  [A HREF=votingOld Guidelines/A].  BR
   (last modified on !--#flastmod virtual=guidelines.html --)
  /LI
  -   LIThe Apache coding
  -A
  - HREF=styleguide
  -style guide/ABR
  +   LIThe Apache coding A HREF=styleguidestyle guide/ABR
   (last modified on !--#flastmod virtual=styleguide.html --)
  /LI
  -   LISome notes on
  -A
  - HREF=API
  -the API/ABR
  +   LISome notes on A HREF=APIthe API/ABR
   (last modified on !--#flastmod virtual=API.html --)
  +   /LI
  +   LISome notes on A HREF=debugging.htmldebugging/ABR
  +(last modified on !--#flastmod virtual=debugging.html --)
  /LI
 /UL
   
  
  
  
  1.1  apache-devsite/debugging.html
  
  Index: debugging.html
  ===
  HTMLHEAD
  TITLEApache Debugging Guide/TITLE
  /HEADBODY
  
  H1Apache Debugging Guide/H1
  
  PThis document is a collection of semi-random and unorganized notes
  regarding tools and techniques for debugging Apache, and Apache
  modules.
  
  OL
  LIA HREF=#gdbUsing 'CODEgdb/CODE'/A
  /OL
  
  HR
  
  PA NAME=gdbBUsing 'CODEgdb/CODE'/B/A
  
  PA file in the CODEsrc//CODE directory, CODE.gdbinit/CODE,
  provides a useful macro for printing out the contents of a table
  structure, called CODEdump_table/CODE.
  
  P
  
  HR
  
  PGot more tips?  Send 'em to A
  HREF=mailto:[EMAIL PROTECTED][EMAIL PROTECTED]/A.  Thanks!
  
  /BODY
  /HTML
  
  
  


cvs commit: apache-site/info support.cgi

1998-04-20 Thread brian
brian   98/04/19 23:11:05

  Modified:info support.cgi
  Log:
  Added email link.
  
  Revision  ChangesPath
  1.3   +3 -1  apache-site/info/support.cgi
  
  Index: support.cgi
  ===
  RCS file: /export/home/cvs/apache-site/info/support.cgi,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- support.cgi   1998/03/26 13:53:55 1.2
  +++ support.cgi   1998/04/20 06:11:05 1.3
  @@ -18,7 +18,9 @@
   Below is a table of companies and consultants who provide commercial
   support, in one form or another, for Apache.  Being mentioned here is
   not an indication of official endorsement by the Apache Group, but
  -is instead provided as a public service.  Enjoy.
  +is instead provided as a public service.  If you would like to be added to
  +this list, or removed, please contact 
  +A HREF=mailto:[EMAIL PROTECTED][EMAIL PROTECTED]/A.
   
   P
   
  
  
  


cvs commit: apache-1.3 INSTALL

1998-04-20 Thread rse
rse 98/04/19 23:14:49

  Modified:.INSTALL
  Log:
  Add note about env usage or the C-shell variant setenv KEY VALUE.
  Thanks to Dean and Lars for mentioning this.
  
  Revision  ChangesPath
  1.13  +8 -0  apache-1.3/INSTALL
  
  Index: INSTALL
  ===
  RCS file: /export/home/cvs/apache-1.3/INSTALL,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- INSTALL   1998/04/16 06:44:44 1.12
  +++ INSTALL   1998/04/20 06:14:48 1.13
  @@ -157,6 +157,14 @@
override the corresponding default entries in the src/Configuration.tmpl
file (see there for more information about their usage).
   
  + Note: The syntax ``KEY=VALUE ./configure ...'' is the GNU Autoconf
  +   compatible way of specifying defines and can be used with
  +   Bourne shell compatible shells only (sh, bash, ksh). If you 
use
  +   a different type of shell either use ``env KEY=VALUE
  +   ./configure ...'' when the `env' command is available on your
  +   system or use ``setenv KEY VALUE; ./configure ...'' if you use
  +   one of the C-shell variants (csh, tcsh).
  +
Use the --prefix=PREFIX and --exec-prefix=EPREFIX options to configure
Apache to use a particular installation prefix. The default is
PREFIX=/usr/local/apache and EPREFIX=PREFIX.
  
  
  


cvs commit: apache-1.3 configure

1998-04-20 Thread rse
rse 98/04/19 23:30:59

  Modified:.configure
  Log:
  Bugfix: libexecdir is based on exec_prefix, so the relative variant has to
  use exec_prefix when trying to reduce the prefix.
  
  Revision  ChangesPath
  1.12  +1 -1  apache-1.3/configure
  
  Index: configure
  ===
  RCS file: /export/home/cvs/apache-1.3/configure,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- configure 1998/04/19 16:03:38 1.11
  +++ configure 1998/04/20 06:30:59 1.12
  @@ -646,7 +646,7 @@
   ##
   localstatedir_relative=`echo $localstatedir | sed -e s:^$prefix/*:: -e 
's:\(.\)$:\1/:'`
   sysconfdir_relative=`echo $sysconfdir | sed -e s:^$prefix/*:: -e 
's:\(.\)$:\1/:'`
  -libexecdir_relative=`echo $libexecdir | sed -e s:^$prefix/*:: -e 
's:\(.\)$:\1/:'`
  +libexecdir_relative=`echo $libexecdir | sed -e s:^$exec_prefix/*:: -e 
's:\(.\)$:\1/:'`
   
   ##
   ##  check and debug
  
  
  


cvs commit: apache-1.3 Makefile.tmpl

1998-04-20 Thread rse
rse 98/04/19 23:40:00

  Modified:.Makefile.tmpl
  Log:
  Add missing $(MFLAGS) which always should be passed down.
  
  Revision  ChangesPath
  1.20  +1 -1  apache-1.3/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===
  RCS file: /export/home/cvs/apache-1.3/Makefile.tmpl,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- Makefile.tmpl 1998/04/17 07:36:12 1.19
  +++ Makefile.tmpl 1998/04/20 06:40:00 1.20
  @@ -196,7 +196,7 @@
   
   #   the non-verbose variant for package maintainers
   install-quiet:
  - @$(MAKE) -f $(MKF) QUIET=1 install
  + @$(MAKE) -f $(MKF) $(MFLAGS) QUIET=1 install
   
   #   create the installation tree
   install-mktree:
  
  
  


cvs commit: apache-1.2 STATUS

1998-04-20 Thread brian
brian   98/04/20 00:20:33

  Modified:.STATUS
  Log:
  Just adding it to keep in mind.  Those of you out there who specialize in
  the Configure script area should take a look at this.
  
  Revision  ChangesPath
  1.9   +2 -0  apache-1.2/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.2/STATUS,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- STATUS1998/03/30 03:59:39 1.8
  +++ STATUS1998/04/20 07:20:32 1.9
  @@ -12,6 +12,8 @@
   Available:
   
   * Marc's headers too big patch, repost it please?
  +* Wilfredo Sanchez's port to Rhapsody 5.1
  +  [EMAIL PROTECTED]
   
   Needs patch:
   
  
  
  


cvs commit: apache-1.3 STATUS

1998-04-20 Thread rse
rse 98/04/20 00:45:44

  Modified:.STATUS
  Log:
  STATUS updates for the other guys... ;-)
  
  Revision  ChangesPath
  1.307 +3 -0  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.306
  retrieving revision 1.307
  diff -u -r1.306 -r1.307
  --- STATUS1998/04/19 16:03:38 1.306
  +++ STATUS1998/04/20 07:45:43 1.307
  @@ -45,8 +45,11 @@
   * Lars' Configure fix to avoid confusing message under APACI control
   * Ralf's Configure fix for AWK's failing with string to long error
   * Ralf's fix for stderr logging to make sure default loglevel is honored
  +* Marc's catching of defined handlers still ending in the default handler
   * Ralf's cast for dlopen's arg1 under OSF1 and FreeBSD 2.2.x
   * Lars' fix for the prefix setup on configure --compat
  +* Dean's add %pA, %pI, and %pp codes to ap_vformatter
  +* Dean's httpd -S command line option to dump parsed vhost setup
   
   Available Patches:
   
  
  
  


cvs commit: apache-1.3 Announcement

1998-04-20 Thread brian
brian   98/04/20 01:12:29

  Modified:.Announcement
  Log:
  Moved history down to the bottom of the page (anyone getting this
  announcement already knows all that) and added spaces between features
  to make it more legible.
  
  Revision  ChangesPath
  1.16  +32 -10apache-1.3/Announcement
  
  Index: Announcement
  ===
  RCS file: /export/home/cvs/apache-1.3/Announcement,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Announcement  1998/04/15 16:18:00 1.15
  +++ Announcement  1998/04/20 08:12:28 1.16
  @@ -11,16 +11,6 @@
version a good thrashing in order to provide as much feedback as possible
to the Apache Group before the release of 1.3.0.
   
  - Apache has been the most popular web server on the Internet since April of
  - 1996. The Web Server Survey by Netcraft (http://www.netcraft.co.uk/Survey/)
  - found that more web servers were using Apache than any other software. 
Apache
  - and its derivatives are run on over 50% of all web domains on the Internet.
  -
  - The Apache project has been organized to provide an open-source, secure,
  - efficient and extensible server which provides HTTP services in sync with 
the
  - current HTTP standards. For more information about the Apache project check
  - out http://www.apache.org/.
  -
To grab the latest Apache distribution, check out
http://www.apache.org/dist/
and the huge list of available International Mirror Sites at
  @@ -35,51 +25,83 @@
  o Ported to Windows 95/NT
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/windows
  http://www.apache.org/dist/apache-1.3b6/README.NT
  +
  o Ported to BS2000/OSD, a mainframe OS with EBCDIC charset 
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/ebcdic
  +
  + Apache Autoconf-style Interface (APACI) for out-of-the-box installation
  http://www.apache.org/dist/apache-1.3b6/README.configure
  http://www.apache.org/dist/apache-1.3b6/INSTALL
  +
  + Dynamic Shared Object (DSO) support for all major Unix platforms 
  http://www.apache.org/dist/apache-1.3b6/src/README.DSO
  +
  + APache eXtenSion (APXS) tool for building third-party modules as DSO
  http://www.apache.org/dist/apache-1.3b6/src/README.DSO
  http://www.apache.org/dist/apache-1.3b6/src/support/
  +
  + Additional support tools: apachectl, ab (ApacheBench), dbmmanage
  http://www.apache.org/dist/apache-1.3b6/src/support/
  +
  + Enhanced configuration support: Include and Line-Continuation
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/new_features_1_3
  +
  o New `Magic' MIME-typing module for content type guessing 
  
http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_mime_magic
  +
  o Regular Expression support for Alias and Redirect directives
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_alias
  +
  + Overhauled and enhanced URL Rewriting Engine
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_rewrite
  +
  o Spell-checking module for on-the-fly URL corrections
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_speling
  +
  o Additional access control via CIDR and Netmasks
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_access
  +
  o Improved HTTP/1.1-style Virtual Host support
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/vhost/index
  +
  o Less Buffering of CGI Script Output (makes nph- obsolete)
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/new_features_1_3
  +
  + Various Proxy Enhancements (NoProxy, ProxyDomain, ProxyPassReverse)
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_proxy
  +
  o Various internal performance improvements
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/new_features_1_3
  +
  o Various fixes to the hostname DNS lookup handling
  
http://www.apache.org/dist/apache-1.3b6/htdocs/mod/core#hostnamelookups
  +
  o Various Directory Indexing enhancements
  
http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_autoindex
  +
  o Various Logging enhancements (Reliable Piped Logs, Named Log Formats)
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/core
  
http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_log_custom
  +
  o Unique Identifiers
  
http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_unique_id
  +
  o Source tree reorganization
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/sourcereorg
  +
  + Big Symbol Renaming to avoid symbol clashes with third-party code
  http://www.apache.org/dist/apache-1.3b6/htdocs/manual/sourcereorg
  +
  o API Additions
  

cvs commit: apache-1.3 STATUS

1998-04-20 Thread brian
brian   98/04/20 01:28:49

  Modified:.STATUS
  Log:
  Added current thread of discussion.  Still needs a good patch before it could
  be implemented.
  
  Revision  ChangesPath
  1.308 +7 -0  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.307
  retrieving revision 1.308
  diff -u -r1.307 -r1.308
  --- STATUS1998/04/20 07:45:43 1.307
  +++ STATUS1998/04/20 08:28:48 1.308
  @@ -72,6 +72,10 @@
 [EMAIL PROTECTED]
 Status: Dean +0
   
  +* Wilfredo Sanchez's port to Rhapsody 5.1 for 1.2.6 - forward port to
  +  1.3?
  +  [EMAIL PROTECTED]
  +
   In progress:
   
   * Ken's IndexFormat enhancement to mod_autoindex to allow
  @@ -228,6 +232,9 @@
   
   * Should we re-enable nagle now that we're non-buffering CGIs?  See 
various
messages from Marc in March 98.
  +  
  +* Should we list the operating system's generic name (e.g. Irix, Win32) 
in
  +SERVER_VERSION?
   
   Win32 specific issues:
   
  
  
  


cvs commit: apache-1.3 Announcement

1998-04-20 Thread rse
rse 98/04/20 01:53:09

  Modified:.Announcement
  Log:
  Finally fix URLs now that the locations exists:
  apache-1.3b6 - apache_1.3b6 plus tree typos.
  
  Revision  ChangesPath
  1.17  +27 -27apache-1.3/Announcement
  
  Index: Announcement
  ===
  RCS file: /export/home/cvs/apache-1.3/Announcement,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- Announcement  1998/04/20 08:12:28 1.16
  +++ Announcement  1998/04/20 08:53:09 1.17
  @@ -23,77 +23,77 @@
which are new with version 1.3b6 are tagged '+'):
   
  o Ported to Windows 95/NT
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/windows
  -   http://www.apache.org/dist/apache-1.3b6/README.NT
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/windows
  +   http://www.apache.org/dist/apache_1.3b6/README.NT
   
  o Ported to BS2000/OSD, a mainframe OS with EBCDIC charset 
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/ebcdic
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/ebcdic
   
  + Apache Autoconf-style Interface (APACI) for out-of-the-box installation
  -   http://www.apache.org/dist/apache-1.3b6/README.configure
  -   http://www.apache.org/dist/apache-1.3b6/INSTALL
  +   http://www.apache.org/dist/apache_1.3b6/README.configure
  +   http://www.apache.org/dist/apache_1.3b6/INSTALL
   
  + Dynamic Shared Object (DSO) support for all major Unix platforms 
  -   http://www.apache.org/dist/apache-1.3b6/src/README.DSO
  +   http://www.apache.org/dist/apache_1.3b6/src/README.DSO
   
  + APache eXtenSion (APXS) tool for building third-party modules as DSO
  -   http://www.apache.org/dist/apache-1.3b6/src/README.DSO
  -   http://www.apache.org/dist/apache-1.3b6/src/support/
  +   http://www.apache.org/dist/apache_1.3b6/src/README.DSO
  +   http://www.apache.org/dist/apache_1.3b6/src/support/
   
  + Additional support tools: apachectl, ab (ApacheBench), dbmmanage
  -   http://www.apache.org/dist/apache-1.3b6/src/support/
  +   http://www.apache.org/dist/apache_1.3b6/src/support/
   
  + Enhanced configuration support: Include and Line-Continuation
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/new_features_1_3
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/new_features_1_3
   
  o New `Magic' MIME-typing module for content type guessing 
  -   
http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_mime_magic
  +   
http://www.apache.org/dist/apache_1.3b6/htdocs/manual/mod/mod_mime_magic
   
  o Regular Expression support for Alias and Redirect directives
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_alias
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/mod/mod_alias
   
  + Overhauled and enhanced URL Rewriting Engine
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_rewrite
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/mod/mod_rewrite
   
  o Spell-checking module for on-the-fly URL corrections
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_speling
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/mod/mod_speling
   
  o Additional access control via CIDR and Netmasks
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_access
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/mod/mod_access
   
  o Improved HTTP/1.1-style Virtual Host support
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/vhost/index
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/vhosts/
   
  o Less Buffering of CGI Script Output (makes nph- obsolete)
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/new_features_1_3
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/new_features_1_3
   
  + Various Proxy Enhancements (NoProxy, ProxyDomain, ProxyPassReverse)
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_proxy
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/mod/mod_proxy
   
  o Various internal performance improvements
  -   http://www.apache.org/dist/apache-1.3b6/htdocs/manual/new_features_1_3
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/new_features_1_3
   
  o Various fixes to the hostname DNS lookup handling
  -   
http://www.apache.org/dist/apache-1.3b6/htdocs/mod/core#hostnamelookups
  +   http://www.apache.org/dist/apache_1.3b6/htdocs/manual/mod/core
   
  o Various Directory Indexing enhancements
  -   
http://www.apache.org/dist/apache-1.3b6/htdocs/manual/mod/mod_autoindex
  +   
http://www.apache.org/dist/apache_1.3b6/htdocs/manual/mod/mod_autoindex
   
  o Various Logging enhancements (Reliable Piped 

cvs commit: apache-site/dist .htaccess README.html

1998-04-20 Thread rse
rse 98/04/20 02:31:15

  Modified:.index.html
   dist .htaccess README.html
  Log:
  Update the frontdoor for 1.3b6.
  
  Revision  ChangesPath
  1.52  +12 -7 apache-site/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/index.html,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- index.html1998/03/30 03:13:50 1.51
  +++ index.html1998/04/20 09:31:14 1.52
  @@ -72,16 +72,21 @@
   
   PHR
   
  -H2 ALIGN=CENTERApache 1.3b5 Now Available:
  -BRThe third beta release of Apache 1.3/H2
  +H2 ALIGN=CENTERApache 1.3b6 Now Available:
  +BRThe latest public beta release of Apache 1.3/H2
   
   PBLOCKQUOTE
   
  -Apache 1.3b5 is the third public beta of the forthcoming Apache 1.3
  -Server.  Apache 1.3 includes several new enhancements, improvements
  -and performance boosts, but the most visible addition is the ability
  -to run under Microsoft Windows NT 4.0 and 95.  A compiled NT/95 binary
  -version of the server will shortly be available.
  +Apache 1.3b6 is the latest public beta of the forthcoming Apache 1.3 Server
  +and a release candidate for 1.3.0.  Apache 1.3 includes several new
  +enhancements, improvements and performance boosts, but the most visible
  +additions are the ability to A HREF=docs/windowsrun under Microsoft
  +Windows NT 4.0 amp; 95/A and the new A
  +HREF=dist/apache_1.3b6/INSTALLAutoconf-style Interface for Unix/A.
  +For a compact summary of the more important changes check out the A
  +HREF=dist/Announcement.htmlAnnouncement/A and for a detailed log of all
  +changes check out the A HREF=dist/CHANGESCHANGES/A file.
  +
   /BLOCKQUOTE
   
   P ALIGN=CENTER
  
  
  
  1.4   +3 -0  apache-site/dist/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /export/home/cvs/apache-site/dist/.htaccess,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- .htaccess 1998/02/20 18:55:39 1.3
  +++ .htaccess 1998/04/20 09:31:15 1.4
  @@ -3,6 +3,9 @@
   AddDescription 1.3b3 gzipped source apache_1.3b3.tar.gz
   AddDescription 1.3b5 gzipped source apache_1.3b5.tar.gz
   AddDescription 1.3b5 compressed source apache_1.3b5.tar.Z
  +AddDescription 1.3b6 compressed source apache_1.3b6.tar.Z
  +AddDescription 1.3b6 gzipped source apache_1.3b6.tar.gz
  +AddDescription 1.3b6 NT binary apache_1.3b6_1.exe
   AddDescription 1.2.5 compressed source apache_1.2.5.tar.Z
   AddDescription 1.2.5 gzipped source apache_1.2.5.tar.gz
   AddDescription List of changes in 1.3 /export/pub/apache/dist/CHANGES
  
  
  
  1.11  +12 -13apache-site/dist/README.html
  
  Index: README.html
  ===
  RCS file: /export/home/cvs/apache-site/dist/README.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- README.html   1998/03/24 05:59:18 1.10
  +++ README.html   1998/04/20 09:31:15 1.11
  @@ -8,28 +8,27 @@
   PFor information about new features in 1.2, see the 
   A HREF=../docs/documentation/A.
   
  -H2Apache 1.3b5 Now Available/H2
  +H2Apache 1.3b6 Released/H2
   
   P
   
  -Apache 1.3b5 is the newest public beta of the forthcoming Apache 1.3
  -Server.  Apache 1.3 includes several new enhancements, improvements
  -and performance boosts, but the most visible addition is the ability
  -to run under Microsoft Windows NT 4.0 and 95. At present 1.3b5 is only
  -available in source code. It will require compiler to use it
  -(Microsoft Visual C++ 5.0 for Windows). A binary version for Windows
  -will be available shortly. If you are using, or had previously tried
  -an earlier alpha or beta release, please upgrade to 1.3b5 at your
  -earliest convenience.  A summary of the more important changes is
  -available in the A HREF=CHANGESCHANGES/A file.
  +Apache 1.3b6 is the latest public beta of the forthcoming Apache 1.3 Server
  +and a release candidate for 1.3.0.  Apache 1.3 includes several new
  +enhancements, improvements and performance boosts, but the most visible
  +additions are the ability to A HREF=../docs/windowsrun under Microsoft
  +Windows NT 4.0 amp; 95/A and the new A
  +HREF=apache_1.3b6/INSTALLAutoconf-style Interface for Unix/A.
  +For a compact summary of the more important changes check out the A
  +HREF=Announcement.htmlAnnouncement/A and for a detailed log of all 
changes
  +check out the A HREF=CHANGESCHANGES/A file.
   
  -pFONT COLOR=redImportant Note:/FONT Since 1.3b5 is a beta
  +pFONT COLOR=redImportant Note:/FONT Since 1.3b6 is a beta
   release, it undoubtedly has its share of warts and bugs.  Although it
   has been tested quite strenuously, your milage may vary.
   
   PFor information about new features in 1.3, see the 
   A HREF=../docs/documentation/A.  For information about 

cvs commit: apache-site index.html

1998-04-20 Thread rse
rse 98/04/20 02:35:27

  Modified:.index.html
  Log:
  Ops, one more hyperlink: b5 - b6
  
  Revision  ChangesPath
  1.53  +1 -1  apache-site/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/index.html,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- index.html1998/04/20 09:31:14 1.52
  +++ index.html1998/04/20 09:35:26 1.53
  @@ -91,7 +91,7 @@
   
   P ALIGN=CENTER
   
  -a href=dist/Download Apache 1.3b5/a | 
  +a href=dist/Download Apache 1.3b6/a | 
   a href=docs/windows.htmlApache for Windows/a |
   a href=docs/new_features_1_3.htmlNew Features in Apache 1.3/a
   
  
  
  


cvs commit: apache-site/dist .htaccess

1998-04-20 Thread rse
rse 98/04/20 02:36:33

  Modified:dist .htaccess
  Log:
  Pitfall: the Win32 binary uses underscores in filename
  
  Revision  ChangesPath
  1.5   +1 -1  apache-site/dist/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /export/home/cvs/apache-site/dist/.htaccess,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- .htaccess 1998/04/20 09:31:15 1.4
  +++ .htaccess 1998/04/20 09:36:32 1.5
  @@ -5,7 +5,7 @@
   AddDescription 1.3b5 compressed source apache_1.3b5.tar.Z
   AddDescription 1.3b6 compressed source apache_1.3b6.tar.Z
   AddDescription 1.3b6 gzipped source apache_1.3b6.tar.gz
  -AddDescription 1.3b6 NT binary apache_1.3b6_1.exe
  +AddDescription 1.3b6 NT binary apache_1_3b6_1.exe
   AddDescription 1.2.5 compressed source apache_1.2.5.tar.Z
   AddDescription 1.2.5 gzipped source apache_1.2.5.tar.gz
   AddDescription List of changes in 1.3 /export/pub/apache/dist/CHANGES
  
  
  


cvs commit: apache-1.3/src/modules/standard mod_include.c

1998-04-20 Thread martin
martin  98/04/20 08:28:37

  Modified:src/modules/standard mod_include.c
  Log:
  Fix EBCDIC conversion flag for subrequests (#include virtual=)
  
  Revision  ChangesPath
  1.83  +0 -3  apache-1.3/src/modules/standard/mod_include.c
  
  Index: mod_include.c
  ===
  RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_include.c,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -u -r1.82 -r1.83
  --- mod_include.c 1998/04/12 05:50:36 1.82
  +++ mod_include.c 1998/04/20 15:28:36 1.83
  @@ -692,9 +692,6 @@
if (rr) 
ap_set_module_config(rr-request_config, includes_module, r);
   
  -#ifdef CHARSET_EBCDIC
  -ap_bsetflag(rr-connection-client, B_EBCDIC2ASCII, 0);
  -#endif
   if (!error_fmt  ap_run_sub_req(rr)) {
   error_fmt = unable to include \%s\ in parsed file %s;
   }
  
  
  


cvs commit: apache-1.3 STATUS

1998-04-20 Thread jim
jim 98/04/20 13:18:03

  Modified:.STATUS
  Log:
  Update STATUS
  
  Revision  ChangesPath
  1.309 +18 -13apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.308
  retrieving revision 1.309
  diff -u -r1.308 -r1.309
  --- STATUS1998/04/20 08:28:48 1.308
  +++ STATUS1998/04/20 20:18:02 1.309
  @@ -2,10 +2,12 @@
   
   Release:
   
  -1.3b7: freeze; Hopefully to simply be renamed 1.3.0
  +1.3.0: Shoot for May 16, 1998 Release!
   
  -1.3b6: Tagged APACHE_1_3b6. Possible release 4/20
  +1.3b7: In development
   
  +1.3b6: Tagged APACHE_1_3b6. Announced and Released 4/20/98
  +
   2.0  : In pre-alpha development, see apache-2.0 repository
   
   Guidelines:
  @@ -162,16 +164,16 @@
   * What do we call the binary: apache or httpd? Under UNIX
 it's httpd, under Win32 it's apache.
apache-httpd: Ken +1
  - leave it apache: +1 Brian, Ralf, Martin
  + leave it apache: +1 Brian, Ralf, Martin, Jim
   
   * Maybe a http_paths.h file? See
[EMAIL PROTECTED]
+1: Brian, Paul, Ralf, Martin
  + +0: Jim (not for 1.3.0)
   
   * Release builds: Should we provide Configuration or not?
 Should we 'make all suexec' in src/support?
  - Ken +1 (possible suexec path issue, though)
  -Brian +1
  + +1: Brian, Jim, Ken +1 (possible suexec path issue, though)
   
   * root's environment is inherited by the Apache server. Jim  Ken
 think we should recommend using 'env' to build the
  @@ -219,12 +221,6 @@
best interest to continue to support Unix to its utmost, and not delay
a release of 1.3.0 waiting for WIN32 issues to be resolved.
   
  - Proposal: the next release should be named 1.3b6, and labelled release
  - candidate on unix, beta on NT.  The release after that will be
  - called 1.3.0 stable on unix, beta on NT.
  - +1: Jim, Ralf, Randy, Brian, Martin
  - +0: 
  -
   Notes:
   Randy: I would also argue that 1.3b6 is _not_ stable. I've been 
  having real fits keeping it alive on a dual processor
  @@ -233,8 +229,17 @@
   * Should we re-enable nagle now that we're non-buffering CGIs?  See 
various
messages from Marc in March 98.
 
  -* Should we list the operating system's generic name (e.g. Irix, Win32) 
in
  -SERVER_VERSION?
  +* Listing the operating system's generic name (e.g. Irix, Win32) in
  +SERVER_VERSION:
  +  o Looks like we want to do this...
  +Implementation: New API function, ap_add_version_component()
  + that takes a 'const char *' and tacks it onto the end
  + of the string returned by ap_get_server_version().
  + 
  +  o Debate:
  + Unix:Win32:OS/2 in '()' comment
  +  +1: Jim, Martin, Alexei
  + Irix:AIX:FreeBSD in '()' comment
   
   Win32 specific issues: