cvs commit: apache-1.3 STATUS

1998-07-16 Thread martin
martin  98/07/16 01:30:31

  Modified:.STATUS
  Log:
  Add ftp proxy auth patch
  
  Revision  ChangesPath
  1.439 +5 -0  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.438
  retrieving revision 1.439
  diff -u -u -r1.438 -r1.439
  --- STATUS1998/07/13 06:53:02 1.438
  +++ STATUS1998/07/16 08:30:30 1.439
  @@ -87,6 +87,11 @@
 process.
 See: [EMAIL PROTECTED]
   
  +* Martin's patch to use the Basic Authentication scheme for (proxy-)
  +  ftp logins as well. When no password is given, but the ftp server
  +  requires one, a [401 Auth Required] response is generated on-the-fly.
  +  See: [EMAIL PROTECTED]
  +
   In progress:

   * Ken's IndexFormat enhancement to mod_autoindex to allow
  
  
  


cvs commit: apache-1.3/conf access.conf-dist-win httpd.conf-dist-win

1998-07-16 Thread marc
marc98/07/16 13:24:41

  Modified:conf access.conf-dist-win httpd.conf-dist-win
  Log:
  A few minor win32 cleanups.  More work is required to make the
  *-win files make sense.
  
  Revision  ChangesPath
  1.9   +5 -4  apache-1.3/conf/access.conf-dist-win
  
  Index: access.conf-dist-win
  ===
  RCS file: /export/home/cvs/apache-1.3/conf/access.conf-dist-win,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- access.conf-dist-win  1998/06/08 14:37:26 1.8
  +++ access.conf-dist-win  1998/07/16 20:24:40 1.9
  @@ -18,10 +18,11 @@
   # First, we configure the default to be a very restrictive set of 
   # permissions.  
   
  -Directory /
  -Options FollowSymLinks
  -AllowOverride None
  -/Directory
  +#  disabled because it is currently broken on Win32
  +#Directory /
  +#Options FollowSymLinks
  +#AllowOverride None
  +#/Directory
   
   # Note that from this point forward you must specifically allow
   # particular features to be enabled - so if something's not working as
  
  
  
  1.16  +0 -5  apache-1.3/conf/httpd.conf-dist-win
  
  Index: httpd.conf-dist-win
  ===
  RCS file: /export/home/cvs/apache-1.3/conf/httpd.conf-dist-win,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- httpd.conf-dist-win   1998/06/08 14:37:26 1.15
  +++ httpd.conf-dist-win   1998/07/16 20:24:40 1.16
  @@ -47,11 +47,6 @@
   
   # If you wish httpd to run as a different user or group, you must run
   # httpd as root initially and it will switch.  
  -
  -# User/Group: The name (or #number) of the user/group to run httpd as.
  -User nobody
  -Group #-1
  -
   # ServerAdmin: Your address, where problems with the server should be
   # e-mailed.
   
  
  
  


cvs commit: apache-1.3/src/support apachectl

1998-07-16 Thread lars
lars98/07/16 14:25:55

  Modified:src/support apachectl
  Log:
  Fix 'status' output.
  Solaris' awk sucks. I think this is a more portable solution.
  (tested under Solaris, SunOS, Digital Unix and Linux)
  
  PR: 2613
  
  Revision  ChangesPath
  1.9   +1 -1  apache-1.3/src/support/apachectl
  
  Index: apachectl
  ===
  RCS file: /home/cvs/apache-1.3/src/support/apachectl,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- apachectl 1998/06/25 19:14:44 1.8
  +++ apachectl 1998/07/16 21:25:54 1.9
  @@ -136,7 +136,7 @@
fi
;;
   status)
  - $LYNX $STATUSURL | awk '  { if (/current process/) { print; exit } else 
print } '
  + $LYNX $STATUSURL | awk ' /process$/ { print; exit } { print } '
;;
   fullstatus)
$LYNX $STATUSURL