cvs commit: apache/src CHANGES httpd.h

1997-03-28 Thread Roy Fielding
fielding97/03/28 19:40:35

  Modified:src   CHANGES httpd.h
  Log:
  Host port changed to unsigned short.
  
  Submitted by: Ken Coar, PR #276
  Reviewed by: Roy Fielding, Chuck Murcko
  
  Revision  ChangesPath
  1.215 +2 -0  apache/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.214
  retrieving revision 1.215
  diff -C3 -r1.214 -r1.215
  *** CHANGES   1997/03/29 01:55:56 1.214
  --- CHANGES   1997/03/29 03:40:33 1.215
  ***
  *** 1,5 
  --- 1,7 
Changes with Apache 1.2b8

  +   *) Host port changed to unsigned short. [Ken Coar] PR #276
  + 
  *) Fix typo in command definition of AuthAuthoritative. [Ken Coar] PR #246

  *) Defined HAVE_SHMGET for shared memory on Linux.  [Dean Gaudet]
  
  
  
  1.93  +2 -2  apache/src/httpd.h
  
  Index: httpd.h
  ===
  RCS file: /export/home/cvs/apache/src/httpd.h,v
  retrieving revision 1.92
  retrieving revision 1.93
  diff -C3 -r1.92 -r1.93
  *** httpd.h   1997/03/20 17:10:09 1.92
  --- httpd.h   1997/03/29 03:40:34 1.93
  ***
  *** 568,574 
struct server_addr_rec {
server_addr_rec *next;
struct in_addr host_addr;   /* The bound address, for this server */
  ! short host_port;/* The bound port, for this server */   
char *virthost; /* The name given in  */
};

  --- 568,574 
struct server_addr_rec {
server_addr_rec *next;
struct in_addr host_addr;   /* The bound address, for this server */
  ! unsigned short host_port;   /* The bound port, for this server */   
char *virthost; /* The name given in  */
};

  ***
  *** 586,592 
  
char *server_admin;
char *server_hostname;
  ! short port;/* for redirects, etc. */
  
/* Log files --- note that transfer log is now in the modules... */
  
  --- 586,592 
  
char *server_admin;
char *server_hostname;
  ! unsigned short port;   /* for redirects, etc. */
  
/* Log files --- note that transfer log is now in the modules... */
  
  
  
  


cvs commit: apache/src CHANGES mod_rewrite.h mod_rewrite.c

1997-03-28 Thread Roy Fielding
fielding97/03/28 17:56:00

  Modified:src   CHANGES mod_rewrite.h mod_rewrite.c
  Log:
  Updated to 3.0.2 -- minor style changes.
  
  Submitted by: Ralf S. Engelschall
  Reviewed by: Roy Fielding
  
  Revision  ChangesPath
  1.214 +1 -1  apache/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.213
  retrieving revision 1.214
  diff -C3 -r1.213 -r1.214
  *** CHANGES   1997/03/29 01:48:19 1.213
  --- CHANGES   1997/03/29 01:55:56 1.214
  ***
  *** 107,113 
 other than the name defined in the virtualhost directive (but
 with the same IP address) failing. [Dean Gaudet]

  !   *) Updated mod_rewrite to version 3.0.1, which: fixes compile error on
 AIX; improves the redirection stuff to enable the users to generally
 redirect to http, https, gopher and ftp; added TIME variable for
 RewriteCond which expands to MMDDHHMMSS strings and added the
  --- 107,113 
 other than the name defined in the virtualhost directive (but
 with the same IP address) failing. [Dean Gaudet]

  !   *) Updated mod_rewrite to version 3.0.2, which: fixes compile error on
 AIX; improves the redirection stuff to enable the users to generally
 redirect to http, https, gopher and ftp; added TIME variable for
 RewriteCond which expands to MMDDHHMMSS strings and added the
  
  
  
  1.19  +1 -1  apache/src/mod_rewrite.h
  
  Index: mod_rewrite.h
  ===
  RCS file: /export/home/cvs/apache/src/mod_rewrite.h,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -C3 -r1.18 -r1.19
  *** mod_rewrite.h 1997/03/20 18:03:34 1.18
  --- mod_rewrite.h 1997/03/29 01:55:57 1.19
  ***
  *** 64,70 
**  |_| |_| |_|\___/ \__,_|___|_|  \___| \_/\_/ |_|  |_|\__\___|
**   |_|
**
  ! **  URL Rewriting Module, Version 3.0.1 (17-Mar-1997)
**
**  This module uses a rule-based rewriting engine (based on a
**  regular-expression parser) to rewrite requested URLs on the fly. 
  --- 64,70 
**  |_| |_| |_|\___/ \__,_|___|_|  \___| \_/\_/ |_|  |_|\__\___|
**   |_|
**
  ! **  URL Rewriting Module, Version 3.0.2 (26-Mar-1997)
**
**  This module uses a rule-based rewriting engine (based on a
**  regular-expression parser) to rewrite requested URLs on the fly. 
  
  
  
  1.24  +16 -8 apache/src/mod_rewrite.c
  
  Index: mod_rewrite.c
  ===
  RCS file: /export/home/cvs/apache/src/mod_rewrite.c,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -C3 -r1.23 -r1.24
  *** mod_rewrite.c 1997/03/22 23:51:03 1.23
  --- mod_rewrite.c 1997/03/29 01:55:57 1.24
  ***
  *** 61,67 
**  |_| |_| |_|\___/ \__,_|___|_|  \___| \_/\_/ |_|  |_|\__\___|
**   |_|
**
  ! **  URL Rewriting Module, Version 3.0.1 (17-Mar-1997)
**
**  This module uses a rule-based rewriting engine (based on a
**  regular-expression parser) to rewrite requested URLs on the fly. 
  --- 61,67 
**  |_| |_| |_|\___/ \__,_|___|_|  \___| \_/\_/ |_|  |_|\__\___|
**   |_|
**
  ! **  URL Rewriting Module, Version 3.0.2 (26-Mar-1997)
**
**  This module uses a rule-based rewriting engine (based on a
**  regular-expression parser) to rewrite requested URLs on the fly. 
  ***
  *** 2250,2258 
fname = server_root_relative(p, conf->rewritelogfile);

if (*conf->rewritelogfile == '|') {
  ! if (!spawn_child (p, rewritelog_child, (void 
*)(conf->rewritelogfile+1),
kill_after_timeout, &fp, NULL)) {
  ! perror ("spawn_child");
fprintf (stderr, "mod_rewrite: could not fork child for 
RewriteLog process\n");
exit (1);
}
  --- 2250,2258 
fname = server_root_relative(p, conf->rewritelogfile);

if (*conf->rewritelogfile == '|') {
  ! if (!spawn_child(p, rewritelog_child, (void 
*)(conf->rewritelogfile+1),
kill_after_timeout, &fp, NULL)) {
  ! perror("spawn_child");
fprintf (stderr, "mod_rewrite: could not fork child for 
RewriteLog process\n");
exit (1);
}
  ***
  *** 2405,2413 
fpout = NULL;
rc = spawn_child(p, rewritemap_program_child, (void 
*)map->datafile, kill_after_timeout, &fpin, &fpout);
if (rc == 0 || fpin == NULL || fpout == NULL) {
  ! perror ("spawn_child");
  ! fprintf (stderr, "mod_rewrite: could not fork child for 
RewriteMap process\n")

cvs commit: apache/src CHANGES mod_auth.c

1997-03-28 Thread Roy Fielding
fielding97/03/28 17:48:21

  Modified:src   CHANGES mod_auth.c
  Log:
  When the *Authoritative directives were added a few weeks ago,
  mod_auth.c got loaded with mod_auth_msql.c's setting by mistake.
  
  Submitted by: Ken Coar, PR #246
  Reviewed by: Roy Fielding
  
  Revision  ChangesPath
  1.213 +2 -0  apache/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.212
  retrieving revision 1.213
  diff -C3 -r1.212 -r1.213
  *** CHANGES   1997/03/29 01:42:32 1.212
  --- CHANGES   1997/03/29 01:48:19 1.213
  ***
  *** 1,5 
  --- 1,7 
Changes with Apache 1.2b8

  +   *) Fix typo in command definition of AuthAuthoritative. [Ken Coar] PR #246
  + 
  *) Defined HAVE_SHMGET for shared memory on Linux.  [Dean Gaudet]

  *) Report extra info from errno with many errors that cause httpd to exit.
  
  
  
  1.14  +1 -1  apache/src/mod_auth.c
  
  Index: mod_auth.c
  ===
  RCS file: /export/home/cvs/apache/src/mod_auth.c,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -C3 -r1.13 -r1.14
  *** mod_auth.c1997/03/07 14:15:37 1.13
  --- mod_auth.c1997/03/29 01:48:19 1.14
  ***
  *** 102,108 
  (void*)XtOffsetOf(auth_config_rec,auth_pwfile), OR_AUTHCFG, TAKE12, NULL 
},
{ "AuthGroupFile", set_auth_slot,
  (void*)XtOffsetOf(auth_config_rec,auth_grpfile), OR_AUTHCFG, TAKE12, NULL 
},
  ! { "Auth_MSQL_Authoritative", set_flag_slot,
  (void*)XtOffsetOf(auth_config_rec,auth_authoritative), 
OR_AUTHCFG, FLAG, 
   "Set to 'no' to allow access control to be passed along to lower modules 
if the UserID is not known to this module" },
  --- 102,108 
  (void*)XtOffsetOf(auth_config_rec,auth_pwfile), OR_AUTHCFG, TAKE12, NULL 
},
{ "AuthGroupFile", set_auth_slot,
  (void*)XtOffsetOf(auth_config_rec,auth_grpfile), OR_AUTHCFG, TAKE12, NULL 
},
  ! { "AuthAuthoritative", set_flag_slot,
  (void*)XtOffsetOf(auth_config_rec,auth_authoritative), 
OR_AUTHCFG, FLAG, 
   "Set to 'no' to allow access control to be passed along to lower modules 
if the UserID is not known to this module" },
  
  
  


cvs commit: apache/src CHANGES conf.h

1997-03-28 Thread Roy Fielding
fielding97/03/28 17:42:35

  Modified:src   CHANGES conf.h
  Log:
  Defined HAVE_SHMGET for shared memory on Linux.
  
  Submitted by: Dean Gaudet
  Reviewed by: Jim Jagielski, Roy Fielding
  
  Revision  ChangesPath
  1.212 +2 -0  apache/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.211
  retrieving revision 1.212
  diff -C3 -r1.211 -r1.212
  *** CHANGES   1997/03/24 22:49:08 1.211
  --- CHANGES   1997/03/29 01:42:32 1.212
  ***
  *** 1,5 
  --- 1,7 
Changes with Apache 1.2b8

  +   *) Defined HAVE_SHMGET for shared memory on Linux.  [Dean Gaudet]
  + 
  *) Report extra info from errno with many errors that cause httpd to exit.
 spawn_child, popenf, and pclosef now have valid errno returns in the
 event of an error.  Correct problems where errno was stomped on
  
  
  
  1.89  +1 -0  apache/src/conf.h
  
  Index: conf.h
  ===
  RCS file: /export/home/cvs/apache/src/conf.h,v
  retrieving revision 1.88
  retrieving revision 1.89
  diff -C3 -r1.88 -r1.89
  *** conf.h1997/03/24 22:54:51 1.88
  --- conf.h1997/03/29 01:42:32 1.89
  ***
  *** 254,259 
  --- 254,260 
#undef NO_KILLPG
#undef NO_SETSID
#undef NEED_STRDUP
  + #define HAVE_SHMGET
#define JMP_BUF sigjmp_buf
#define USE_FCNTL_SERIALIZED_ACCEPT
#include  
  
  
  


cvs commit: apache/htdocs/manual/mod mod_log_config.html

1997-03-28 Thread Paul Sutton
pcs 97/03/28 07:16:16

  Modified:htdocs/manual/mod  mod_log_config.html
  Log:
  Fix ELF format
  
  Revision  ChangesPath
  1.15  +1 -1  apache/htdocs/manual/mod/mod_log_config.html
  
  Index: mod_log_config.html
  ===
  RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_log_config.html,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -C3 -r1.14 -r1.15
  *** mod_log_config.html   1997/03/27 20:09:02 1.14
  --- mod_log_config.html   1997/03/28 15:16:15 1.15
  ***
  *** 143,149 
Note that the common log format is defined by the string "%h %l
%u %t \"%r\" %s %b", which can be used as the basis for
extending for format if desired (e.g. to add extra fields at the end).
  ! NCSA's extended/combined log format would be "%h %l %u %t \"%r\" %s 
%b \"%{Referer}i\" \"%{Agent}i\"".

Using Multiple Log Files

  --- 143,149 
Note that the common log format is defined by the string "%h %l
%u %t \"%r\" %s %b", which can be used as the basis for
extending for format if desired (e.g. to add extra fields at the end).
  ! NCSA's extended/combined log format would be "%h %l %u %t \"%r\" %s 
%b \"%{Referer}i\" \"%{User-agent}i\"".

Using Multiple Log Files