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

2003-12-15 Thread Andr Malo
* Ben Laurie [EMAIL PROTECTED] wrote: -char errstr[MAX_STRING_LEN]; +char errstr[MAX_STRING_LEN], scratch[MAX_STRING_LEN]; Surely scratch and errstr should be MAX_STRING_LEN*4? Hmm. MAX_STRING_LEN is 8k. So we put 16k onto the stack now. Would you really like to mess up the

Re: cvs commit: httpd-2.0/modules/experimental mod_charset_lite.c

2003-12-15 Thread Joe Orton
On Mon, Dec 15, 2003 at 02:24:31PM -, [EMAIL PROTECTED] wrote: ... diff -u -u -r1.66 -r1.67 --- mod_charset_lite.c 7 Nov 2003 01:01:27 - 1.66 +++ mod_charset_lite.c 15 Dec 2003 14:24:31 - 1.67 @@ -307,7 +307,16 @@ mime type

Re: cvs commit: httpd-2.0/modules/experimental mod_charset_lite.c

2003-12-15 Thread Brad Nicholes
-1 Please use some other #define. This won't build with Metrowerks on NetWare. Brad Brad Nicholes Senior Software Engineer Novell, Inc., the leading provider of Net business solutions http://www.novell.com [EMAIL PROTECTED] Monday, December 15, 2003 8:18:05 AM On Mon, Dec 15, 2003 at

Re: AddCharset filename extensions

2003-12-15 Thread Zvi Har'El
To make my point clearer, here is the patch: --- httpd-2.0.48/docs/conf/httpd-std.conf.in.~20031011014743~ 2003-10-11 03:47:43.0 +0200 +++ httpd-2.0.48/docs/conf/httpd-std.conf.in2003-12-15 18:47:07.0 +0200 @@ -797,11 +797,15 @@ AddCharset ISO-8859-2 .iso8859-2 .latin2

RE: [PATCH] Create plog pool before pconf

2003-12-15 Thread BLAKE,DAVID (HP-Boise,ex1)
In reference to bug 20462 I see you are tracking down the root cause of this problem. In doing some tracking on Windows with 2.0.47 I came up with a check that prevents the crash, though it doesn't by any means solve the bigger issue you are working on. My description of problem before seeing

Re: new ETag supression/weakening API

2003-12-15 Thread Geoffrey Young
hi again... ok, I think I've worked out all the issues - attached is a new patch with logic (and spelling :) errors hopefully worked out. also included is a patch against the perl-framework for testing if you so choose. one of the issues that needed working out was dealing with multiple ETag

Re: cvs commit: httpd-2.0/modules/experimental mod_charset_lite.c

2003-12-15 Thread Bill Stoddard
[EMAIL PROTECTED] wrote: martin 2003/12/15 06:24:31 Modified:modules/experimental mod_charset_lite.c Log: Flame bait: mod_charset_lite would decide in the mime checker phase whether a conversion was required, and would stick with that decision, even if a later handler (like CGI

Re: (detabifyied) Re: [PATCH] Page Fault in mod_mem_cache-steaming response

2003-12-15 Thread Bill Stoddard
Jean-Jacques Clar wrote: Just replaced tabs with spaces to follow guidelines. [EMAIL PROTECTED] 12/11/2003 5:00:31 PM Bugzilla Defect #21285 This is a rework of the already posted patch. It address the following situation; 1- request comes in for streaming response 2- before that request

Re: new ETag supression/weakening API

2003-12-15 Thread Roy T. Fielding
one of the issues that needed working out was dealing with multiple ETag headers. my original idea was to have ap_weaken_etag guarantee that ETag headers would be weak. with ETag headers entering err_headers_out via a third party, there exists the possibility that the server would send

Re: new ETag supression/weakening API

2003-12-15 Thread Roy T. Fielding
RFC 2616, section 3.11, BNF does not allow multiple ETag header fields. ^ ^14.19 + 3.11 Roy

Re: new ETag supression/weakening API

2003-12-15 Thread Geoffrey Young
Roy T. Fielding wrote: one of the issues that needed working out was dealing with multiple ETag headers. my original idea was to have ap_weaken_etag guarantee that ETag headers would be weak. with ETag headers entering err_headers_out via a third party, there exists the possibility that

Help with RMI over HTTPS

2003-12-15 Thread Ramanan
Hi, How do we configure Apache to support RMI over HTTPS on Windows 2000? I am seeing the following POST request being made : /cgi-bin/java-rmi.cgi?forward=5000 The RMI POST request should be forwarded to the Tomcat server which uses the servlet approach. The servlet defined is

Re: new ETag supression/weakening API

2003-12-15 Thread Roy T. Fielding
BTW, an entity tag does not identify the entity -- it merely acts as a key for cache and range request handling. right. and what I was trying to do was make it possible for content-altering filters to handle that key a bit more intelligently than just removing it altogether. the situation I

Re: cvs commit: httpd-test/perl-framework/Apache-Test Changes

2003-12-15 Thread Stas Bekman
[EMAIL PROTECTED] wrote: geoff 2003/12/15 06:08:16 Modified:perl-framework/Apache-Test Changes Log: allow conditional C module compilation on a more granular level. #define HTTPD_TEST_REQUIRE_APACHE 2.0.49 is now recognized. [...] +allow conditional C module compilation on a