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

1998-07-28 Thread marc
marc98/07/27 22:57:15

  Modified:htdocs/manual/mod core.html
  Log:
  Digest is mostly supported, for all the good it does.
  
  PR: 2715
  Submitted by: Youichirou Koga [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.128 +1 -1  apache-1.3/htdocs/manual/mod/core.html
  
  Index: core.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/core.html,v
  retrieving revision 1.127
  retrieving revision 1.128
  diff -u -r1.127 -r1.128
  --- core.html 1998/07/06 17:42:11 1.127
  +++ core.html 1998/07/28 05:57:13 1.128
  @@ -303,7 +303,7 @@
   STRONGStatus:/STRONG/A coreP
   
   This directive selects the type of user authentication for a directory.
  -Only CODEBasic/CODE is currently implemented.
  +Only CODEBasic/CODE and CODEDigest/CODE are currently implemented.
   !--%plaintext lt;?INDEX {\tt Basic} authentication schemegt; --
   It must be accompanied by A HREF=#authnameAuthName/A and
   A HREF=#requirerequire/A directives, and directives such as
  
  
  


cvs commit: apache-site in_the_news.html

1998-07-28 Thread mjc
mjc 98/07/28 06:20:27

  Modified:.in_the_news.html
  Log:
  Add Forbes article
  
  Revision  ChangesPath
  1.41  +13 -0 apache-site/in_the_news.html
  
  Index: in_the_news.html
  ===
  RCS file: /export/home/cvs/apache-site/in_the_news.html,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- in_the_news.html  1998/07/04 19:32:05 1.40
  +++ in_the_news.html  1998/07/28 13:20:27 1.41
  @@ -30,6 +30,19 @@
   
   P
   STRONG
  + CITEForbes/CITE, August 10 1998, cover story:
  + A HREF=http://www.forbes.com/forbes/98/0810/6209094a.htm;
  +  For the love of Hacking/A
  +/STRONG
  +/P
  +BLOCKQUOTE
  + EMApache knocked Netscape's closed-source Web
  + server out of the running for the cornerstone
  + of IBM's Web commerce package. /EM
  +/BLOCKQUOTE
  +
  +P
  +STRONG
CITEIBM News/CITE, 22 June 1998:
A HREF=http://www.ibm.com/News/1998/06/223.phtml;
 IBM ... Bundles leading-edge tools and technologies from
  
  
  


cvs commit: apache-1.3/src/modules/proxy proxy_cache.c

1998-07-28 Thread dgaudet
dgaudet 98/07/28 09:59:11

  Modified:src  CHANGES
   src/modules/proxy proxy_cache.c
  Log:
  fix a segfault in the proxy on OS/2
  
  Submitted by: Brian Havard
  
  Revision  ChangesPath
  1.990 +2 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.989
  retrieving revision 1.990
  diff -u -r1.989 -r1.990
  --- CHANGES   1998/07/27 14:58:17 1.989
  +++ CHANGES   1998/07/28 16:59:09 1.990
  @@ -1,5 +1,7 @@
   Changes with Apache 1.3.2
   
  +  *) Fix a segfault in the proxy on OS/2.  [Brian Havard]
  +
 *) Fix Win32 part of ap_spawn_child() by providing a reasonable child_info
structure instead of just NULL. This fixes at least the RewriteMap
programs under Win32. [Marco De Michele [EMAIL PROTECTED]] PR#2483
  
  
  
  1.47  +2 -1  apache-1.3/src/modules/proxy/proxy_cache.c
  
  Index: proxy_cache.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/proxy_cache.c,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- proxy_cache.c 1998/07/09 19:45:56 1.46
  +++ proxy_cache.c 1998/07/28 16:59:11 1.47
  @@ -846,7 +846,8 @@
c-fp = NULL;
}
   /* delete the previously cached file */
  - unlink(c-filename);
  +if (c-filename)
  +unlink(c-filename);
return DECLINED;/* send data to client but not cache */
   }
   
  
  
  


cvs commit: apache-1.3/src/main util.c

1998-07-28 Thread dgaudet
dgaudet 98/07/28 10:07:16

  Modified:src  CHANGES
   src/helpers GuessOS
   src/main util.c
  Log:
  NEC EWS4800 port
  
  Submitted by: MATSUURA Takanori / [iso-2022-jp] ^[$B1:9'HO^[(B [EMAIL 
PROTECTED]
  
  Revision  ChangesPath
  1.991 +3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.990
  retrieving revision 1.991
  diff -u -r1.990 -r1.991
  --- CHANGES   1998/07/28 16:59:09 1.990
  +++ CHANGES   1998/07/28 17:07:07 1.991
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.2
   
  +  *) PORT: NEC EWS4800 support.
  + [MATSUURA Takanori [EMAIL PROTECTED]]
  +
 *) Fix a segfault in the proxy on OS/2.  [Brian Havard]
   
 *) Fix Win32 part of ap_spawn_child() by providing a reasonable child_info
  
  
  
  1.44  +6 -0  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- GuessOS   1998/06/29 12:21:04 1.43
  +++ GuessOS   1998/07/28 17:07:13 1.44
  @@ -219,6 +219,12 @@
echo ${MACHINE}-ccur-sysv4; exit 0;
;;
   
  +UNIX_SV:*)
  + if [ -d /usr/nec ];then
  + echo mips-nec-sysv4; exit 0;
  + fi
  + ;;
  +
   NonStop-UX:4.[02]*:[BC]*:*)
echo ${MACHINE}-tandem-sysv4; exit 0;
;;
  
  
  
  1.125 +1 -1  apache-1.3/src/main/util.c
  
  Index: util.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/main/util.c,v
  retrieving revision 1.124
  retrieving revision 1.125
  diff -u -r1.124 -r1.125
  --- util.c1998/07/13 11:32:41 1.124
  +++ util.c1998/07/28 17:07:14 1.125
  @@ -1570,7 +1570,7 @@
return htonl(INADDR_ANY);
   }
   
  -my_addr = ap_inet_addr(w);
  +my_addr = ap_inet_addr((char *)w);
   if (my_addr != INADDR_NONE) {
if (p != NULL)
*p = ':';
  
  
  


cvs commit: apache-1.3 configure

1998-07-28 Thread Ralf S. Engelschall
rse 98/07/28 10:26:46

  Modified:src  CHANGES
   .configure
  Log:
  One more portability fix for APACI shadow tree support: Swap order of awk and
  sed in top-level configure script to avoid sed fails on some platforms (for
  instance SunOS 4.1.3 and NCR SysV) because of the non-newline-termined output
  of Awk.
  
  PR: 2729
  
  Revision  ChangesPath
  1.992 +5 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.991
  retrieving revision 1.992
  diff -u -r1.991 -r1.992
  --- CHANGES   1998/07/28 17:07:07 1.991
  +++ CHANGES   1998/07/28 17:26:43 1.992
  @@ -1,5 +1,10 @@
   Changes with Apache 1.3.2
   
  +  *) One more portability fix for APACI shadow tree support: Swap order of 
awk
  + and sed in top-level configure script to avoid sed fails on some
  + platforms (for instance SunOS 4.1.3 and NCR SysV) because of the
  + non-newline-termined output of Awk. [Ralf S. Engelschall] PR#2729
  +
 *) PORT: NEC EWS4800 support.
[MATSUURA Takanori [EMAIL PROTECTED]]
   
  
  
  
  1.42  +1 -1  apache-1.3/configure
  
  Index: configure
  ===
  RCS file: /export/home/cvs/apache-1.3/configure,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- configure 1998/07/27 14:39:22 1.41
  +++ configure 1998/07/28 17:26:45 1.42
  @@ -332,7 +332,7 @@
   ;;
   --shadow)
   #   determine GNU platform triple
  -gnutriple=`$aux/GuessOS | $AWK '{ printf(%s,$1); }' | sed -e 
's:/:-:g'`
  +gnutriple=`$aux/GuessOS | sed -e 's:/:-:g' | $AWK '{ 
printf(%s,$1); }'`
   #   create Makefile wrapper (the first time only)
   if [ .`ls $top/src.* 2/dev/null` = . ]; then
   if [ .$quiet = .no ]; then