cvs commit: apachen/src/main http_core.c

1997-12-28 Thread coar
coar97/12/27 20:51:03 Modified:.STATUS src CHANGES src/ap Makefile.tmpl src/main http_core.c Added: src/ap ap_strings.c Log: Correct handling of quotation marks in AuthName realm names. PR:

cvs commit: apachen/src/main http_core.c

1997-11-30 Thread dgaudet
dgaudet 97/11/30 11:18:47 Modified:src/main http_core.c Log: Bump default MMAP_THRESHOLD to 1 from 0 because some systems don't allow mmap of size 0. PR: 1491 Reviewed by: Jim Jagielski, Ken Coar Revision ChangesPath 1.142 +4 -4

cvs commit: apachen/src/main http_core.c

1997-11-22 Thread dgaudet
dgaudet 97/11/21 17:59:58 Modified:src CHANGES src/main http_core.c Log: Fix the mmap_handler error messages again. Submitted by: Ben Hyde Reviewed by: Dean Gaudet, Randy Terbush, Martin Kraemer Revision ChangesPath 1.517 +3 -0

cvs commit: apachen/src/main http_core.c

1997-11-15 Thread dgaudet
dgaudet 97/11/14 16:16:51 Modified:htdocs/manual/mod core.html src/main http_core.c Log: Clean up check_cmd_context stuff. Fix core documentation for a few directives. Reviewed by: Jim Jagielski, Ken Coar, Martin Kraemer Revision ChangesPath 1.85

cvs commit: apachen/src/main http_core.c

1997-11-13 Thread coar
coar97/11/13 07:00:11 Modified:src CHANGES src/main http_core.c Log: Correct an invalid assumption about where AllowOverrides may appear. Reviewed by: Dean Gaudet, Martin Kraemer Revision ChangesPath 1.509 +5 -1

cvs commit: apachen/src/main http_core.c

1997-11-11 Thread martin
martin 97/11/11 14:36:23 Modified:src/main http_core.c Log: Minor off-by-one error in parsing the host:port argument. Would work without the patch, but gives correcter error message with it. Reviewed by: Dean Gaudet, Jim Jagielski, Ken Coar Revision ChangesPath

cvs commit: apachen/src/main http_core.c

1997-11-11 Thread martin
martin 97/11/11 14:43:27 Modified:src/main http_core.c Log: New check routine check_cmd_context() -- controls whether a particular directive is allowed in Directory/Files/Location, Limit or VirtualHost context and complains if it isn't. Reviewed by: Dean Gaudet, Jim

cvs commit: apachen/src/main http_core.c

1997-11-08 Thread dgaudet
dgaudet 97/11/08 13:42:37 Modified:src CHANGES src/main http_core.c Log: Fix a logic error when issuing a mmap error with non-zero MMAP_THRESHOLD. PR: 1294 Submitted by: David Chambers [EMAIL PROTECTED] Reviewed by: Dean Gaudet, Jim Jagielski

cvs commit: apachen/src/main http_core.c

1997-10-22 Thread dgaudet
dgaudet 97/10/22 10:08:49 Modified:src/main http_core.c Log: Tweak the descriptions a bit. Revision ChangesPath 1.130 +2 -2 apachen/src/main/http_core.c Index: http_core.c === RCS file:

cvs commit: apachen/src/main http_core.c

1997-10-22 Thread martin
martin 97/10/22 14:49:47 Modified:src/main http_core.c Log: The global variables which exist in http_core belong to the main server and should not be settable in VirtualHosts, otherwise users believe that virtual hosts each use a separate variable. Reviewed by: Martin +1,

cvs commit: apachen/src/main http_core.c

1997-10-21 Thread martin
martin 97/10/21 14:33:10 Modified:src/main http_core.c Log: Some of the ... directives allow multiple arguments, some don't. Those who don't accept multiple arguments to ... block directives return an error message now. Reviewed by: Martin +1, Brian +1, Dean +1 Revision

cvs commit: apachen/src/main http_core.c

1997-10-21 Thread martin
martin 97/10/21 14:37:02 Modified:src/main http_core.c Log: When a ... section (Directory / Files / Location / ... is not closed properly when end-of-file is reached, an error message is returned now. Reviewed by: Martin +1, Brian +1, Dean +1 Revision ChangesPath

cvs commit: apachen/src/main http_core.c

1997-10-21 Thread martin
martin 97/10/21 14:41:26 Modified:src/main http_core.c Log: /Limit expects NO_ARGS, not RAW_ARGS Revision ChangesPath 1.128 +1 -1 apachen/src/main/http_core.c Index: http_core.c === RCS

cvs commit: apachen/src/main http_core.c http_protocol.h

1997-09-12 Thread Rodent of Unusual Size
coar97/09/12 14:49:19 Modified:src/main http_core.c http_protocol.h Log: Fix up some missing includes (fallout from the set_last_modified() rework). Revision ChangesPath 1.122 +1 -0 apachen/src/main/http_core.c Index: http_core.c

cvs commit: apachen/src/main http_core.c http_request.c

1997-09-11 Thread Dean Gaudet
dgaudet 97/09/11 11:46:47 Modified:src/main http_core.c http_request.c Log: I know we're about to commit os abstraction, but this bug bugs me. This fixes a bug I introduced with the directory_walk optimization where I test absolute paths in a non-portable way. Revision

cvs commit: apachen/src/main http_core.c

1997-09-09 Thread Alexei Kosut
akosut 97/09/09 11:39:19 Modified:src/main http_core.c Log: Canonicalize Windows pathnames in Directory and Files sections, so they will match the filenames you expect them to match. Also do case-insentitive matching for DirectoryMatch and FilesMatch, for the same reason.

cvs commit: apachen/src/main http_core.c

1997-08-31 Thread Rodent of Unusual Size
coar97/08/31 18:47:02 Modified:src/main http_core.c Log: Add the post_read_request slot (missed when the other modules were done). Revision ChangesPath 1.117 +2 -1 apachen/src/main/http_core.c Index: http_core.c

cvs commit: apachen/src/main http_core.c http_core.h http_log.c http_log.h

1997-08-24 Thread Randy Terbush
randy 97/08/24 19:00:43 Modified:src CHANGES src/main http_core.c http_core.h http_log.c http_log.h Log: Add LogLevels functionality through the addition of aplog_error(). This change also provides the ability to log errors via syslogd. Reviewed by: Dean