cvs commit: apache-site/contributors index.html

1997-05-15 Thread Paul Sutton
pcs 97/05/15 10:13:35

  Modified:contributors  index.html
  Log:
  Added my entry as suggested by Roy.
  
  Revision  ChangesPath
  1.7   +18 -0 apache-site/contributors/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/contributors/index.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -C3 -r1.6 -r1.7
  *** index.html1997/05/13 11:39:12 1.6
  --- index.html1997/05/15 17:13:34 1.7
  ***
  *** 36,41 
  --- 36,42 
LIBA HREF=#skolnickCliff Skolnick/A/B nbsp;nbsp;nbsp;Solaris 
porting.
LIBA HREF=#smileyGarey Smiley/A/B nbsp;nbsp;nbsp;OS/2 ports.
LIBAdam Sussman/B nbsp;nbsp;nbsp;Various patches.
  + LIBA HREF=#suttonPaul Sutton/A/B nbsp;nbsp;nbsp;Documention 
writing, code hacking, bug fixing
LIBA HREF=#terbushRandy Terbush/A/B nbsp;nbsp;nbsp;Logo 
design, bugfixes, NetBSD, BSDI  SunOS porting.
LIBA HREF=#thauRobert Thau/A/B nbsp;nbsp;nbsp;Designed and 
implemented module API, did server core overhaul, process pool model, content 
negotiation, lots and lots of other stuff.
LIBA HREF=#vangulikDirk van Gulik/A/B nbsp;nbsp;nbsp;
  ***
  *** 287,292 
  --- 288,310 

P

  + P
  + 
  + BName:/B A NAME=suttonPaul Sutton/ABR
  + BEmail:/B A HREF=mailto:[EMAIL PROTECTED][EMAIL PROTECTED]/ABR
  + BURL:/B A HREF=http://www.ukweb.com/~paul/; 
http://www.ukweb.com/~paul/ BR/A
  + BOrganization:/B UK Web LtdBR
  + BOccupation:/B Technical Director BR
  + BLocation:/B Leeds, UKBR
  + BComments:/B I like documenting things, I really do. Why are you 
wearing white suits?BR
  + BContributions:/B
  + Long time Apache convert (fixed a bug in version 0.5.2). Actually
  + likes documention and commenting source. Contributions include some
  + content negotiation stuff, various bug fixes and testing, mod_headers,
  + multiple log files, options +/-. Also edits a
  + href=http://www.apacheweek.com/;Apache Week/A.
  + 
  + P

BName:/B A NAME=terbushRandy Terbush/ABR
BEmail:/B A HREF=mailto:[EMAIL PROTECTED][EMAIL PROTECTED]/ABR
  
  
  


cvs commit: apache/src CHANGES http_config.c

1997-05-15 Thread Roy Fielding
fielding97/05/15 16:39:22

  Modified:src   CHANGES http_config.c
  Log:
  Inherit virtual server port from main server if none (or *) is
  given for VirtualHost.
  
  Submitted by: Dean Gaudet
  Reviewed by: Roy Fielding, Paul Sutton
  
  Revision  ChangesPath
  1.276 +3 -0  apache/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.275
  retrieving revision 1.276
  diff -C3 -r1.275 -r1.276
  *** CHANGES   1997/05/14 19:22:50 1.275
  --- CHANGES   1997/05/15 23:39:19 1.276
  ***
  *** 1,5 
  --- 1,8 
Changes with Apache 1.2

  +   *) Inherit virtual server port from main server if none (or *) is
  +  given for VirtualHost.  [Dean Gaudet]
  + 
  *) If the lookup for a DirectoryIndex name with content negotiation
 has found matching variants, but none are acceptable, return the
 negotiation result if there are no more DirectoryIndex names to lookup.
  
  
  
  1.49  +6 -1  apache/src/http_config.c
  
  Index: http_config.c
  ===
  RCS file: /export/home/cvs/apache/src/http_config.c,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -C3 -r1.48 -r1.49
  *** http_config.c 1997/04/12 04:24:56 1.48
  --- http_config.c 1997/05/15 23:39:20 1.49
  ***
  *** 957,963 
/* terminate the list */
*addrs = NULL;
if( s-addrs ) {
  ! s-port = s-addrs-host_port;  /* set them the same, by default */
}
s-next = NULL;

  --- 957,968 
/* terminate the list */
*addrs = NULL;
if( s-addrs ) {
  ! if (s-addrs-host_port) {
  ! s-port = s-addrs-host_port;  /* set them the same, by default */
  ! } else {
  ! /* otherwise we get a port of 0 on redirects */
  ! s-port = main_server-port;
  ! }
}
s-next = NULL;

  
  
  


cvs commit: apache/src CHANGES

1997-05-15 Thread Roy Fielding
fielding97/05/15 16:40:13

  Modified:src   CHANGES
  Log:
  forgotto
  
  Revision  ChangesPath
  1.277 +1 -1  apache/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.276
  retrieving revision 1.277
  diff -C3 -r1.276 -r1.277
  *** CHANGES   1997/05/15 23:39:19 1.276
  --- CHANGES   1997/05/15 23:40:11 1.277
  ***
  *** 1,7 
Changes with Apache 1.2

  *) Inherit virtual server port from main server if none (or *) is
  !  given for VirtualHost.  [Dean Gaudet]

  *) If the lookup for a DirectoryIndex name with content negotiation
 has found matching variants, but none are acceptable, return the
  --- 1,7 
Changes with Apache 1.2

  *) Inherit virtual server port from main server if none (or *) is
  !  given for VirtualHost.  [Dean Gaudet] PR#576

  *) If the lookup for a DirectoryIndex name with content negotiation
 has found matching variants, but none are acceptable, return the