shell_ready function

2004-08-18 Thread Joe Orton
Does the quote escaping really work in this function? It confuses emacs font-lock mode which doesn't see a closing quote so thinks the rest of the file is part of the string. This fixes at least the latter: Index: TestConfig.pm ===

Re: shell_ready function

2004-08-18 Thread Geoffrey Young
Joe Orton wrote: Does the quote escaping really work in this function? hmm, it doesn't look like it does. I think this was part of some work that stas and ken were doing, though, and IIRC it was some win32 command line thing. but I could be wrong. It confuses emacs font-lock mode which

Re: shell_ready function

2004-08-18 Thread Stas Bekman
Geoffrey Young wrote: Joe Orton wrote: Does the quote escaping really work in this function? hmm, it doesn't look like it does. I think this was part of some work that stas and ken were doing, though, and IIRC it was some win32 command line thing. but I could be wrong. It confuses emacs

Re: shell_ready function

2004-08-18 Thread Geoffrey Young
and here is the optimized version of Geoff's one: sub shell_ready_stas { my $arg = shift; $arg =~ s!\\?!\\!g; return qq[$arg]; } :) Benchmark: timing 100 iterations of geoff, stas... geoff: 64 wallclock secs (56.35 usr + 0.10 sys = 56.45 CPU) @ 17714.79/s

Re: proxy compile warnings

2004-08-18 Thread Justin Erenkrantz
--On Tuesday, August 17, 2004 4:52 PM -0500 William A. Rowe, Jr. [EMAIL PROTECTED] wrote: I have the same concern... Madhu is gone for about another week, I think you mean Mladen not Madhu. ;-) -- justin

Re: proxy compile warnings

2004-08-18 Thread jean-frederic clere
Geoffrey Young wrote: William A. Rowe, Jr. wrote: At 04:36 PM 8/17/2004, Joe Orton wrote: On Tue, Aug 17, 2004 at 11:48:39AM -0400, Geoffrey Young wrote: hi all the attached patch is required for me to get mod_proxy to compile with -Werror. Thanks Geoff. The only thing I'm not sure of is

missing variable in suexec safe list

2004-08-18 Thread Zvi Har'El
Hi, I just noticed that the safe_env_list in suexec.c has one variable name missing: SERVER_SIGNATURE. Here is a tivial patch to add it: --- httpd-2.0.50/support/suexec.c.~20040209205949~ 2004-02-09 22:59:49.0 +0200 +++ httpd-2.0.50/support/suexec.c 2004-08-18

Re: missing variable in suexec safe list

2004-08-18 Thread Jeff Trawick
On Wed, 18 Aug 2004 09:56:53 +0300, Zvi Har'El [EMAIL PROTECTED] wrote: Hi, I just noticed that the safe_env_list in suexec.c has one variable name missing: SERVER_SIGNATURE. Here is a tivial patch to add it: thanks! patch committed to 2.1-dev and proposed for merging into 2.0.next

mod_deflate and no-gzip

2004-08-18 Thread Brian Akins
Shouldn't we still set Vary: Accept-Encoding if no-gzip is set? Example, if I use SetEnvIf to disallow gzip for some browsers, shouldn't we still tell proxies to vary on Accept-Encoding? mod_deflate will send the Vary if the client does not have a proper Accept-Encoding header, but not if we

Re: mod_deflate and no-gzip

2004-08-18 Thread Nick Kew
On Wed, 18 Aug 2004, Brian Akins wrote: Shouldn't we still set Vary: Accept-Encoding if no-gzip is set? Hmmm, makes sense. +1 Should we be looking at a wholesale backport from 2.1-head? There are a number of minor bugfixes, as well as the inflate output filter. -- Nick Kew

Re: proxy compile warnings

2004-08-18 Thread Geoffrey Young
Adding it to mod_proxy.h is right the thing. The idea is to have a ap_proxy_pre_request and ap_proxy_post_request: one called before processing the request and one after. ok, cool. attached is a new patch that addresses this. sorry for the excess dialogue - this would have been obvious if I

Re: cvs commit: httpd-2.0/modules/aaa NWGNUauthnzldap mod_authnz_ldap.c NWGNUmakefile

2004-08-18 Thread Graham Leggett
Brad Nicholes wrote: BTW, since I am not a Linux makefile guru, the new authnz_ldap module has not been added to the Linux build scripts. Can somebody make the appropriate changes to the makefiles? Done. Are you going to move util_ldap to the ldap directory, or should I do it? I am not a

Re: cvs commit: httpd-2.0/modules/aaa NWGNUauthnzldap mod_authnz_ldap.c NWGNUmakefile

2004-08-18 Thread Brad Nicholes
If you have time to move it before I do, by all mean, go for it. I probably won't get around to it until this afternoon anyway. Thanks for taking care of the build scripts. I'm pretty sure that I can handle the util_ldap netware build files once it is moved :) Experimental/Mod_auth_ldap

Re: mod_deflate and no-gzip

2004-08-18 Thread Joshua Slive
On Wed, 18 Aug 2004, Brian Akins wrote: Shouldn't we still set Vary: Accept-Encoding if no-gzip is set? Example, if I use SetEnvIf to disallow gzip for some browsers, shouldn't we still tell proxies to vary on Accept-Encoding? mod_deflate will send the Vary if the client does not have a

Re: Where is the AJP code...

2004-08-18 Thread jean-frederic clere
William A. Rowe, Jr. wrote: At 01:56 AM 8/17/2004, jean-frederic clere wrote: William A. Rowe, Jr. wrote: At 03:58 PM 8/16/2004, Brad Nicholes wrote: The addition of the proxy_ajp module to the httpd project presents a build problem. The AJP module code exists in httpd/modules/proxy in the httpd

AJP lib files added to httpd-2.0 repos

2004-08-18 Thread jean-frederic clere
Hi, I have added to the httpd-2.0/modules/proxy the following files: ajp.h ajp_header.c ajp_header.h ajp_link.c ajp_msg.c They are also in jakarta-tomcat-connectors/ajp/ajplib/test. They have to be kept up to date (synchronized) please remember to mail the diff to the other repos dev-list when

vacation

2004-08-18 Thread jean-frederic clere
Hi, I'll be on vacation til 7th september. I will (try to) go on the new proxy implementation but I will only read my apache.org mail, so if you find something wrong in the new code (and want a quick fix) mail me there. Cheers Jean-Frederic

Re: Windows 2003 IA64 builds?

2004-08-18 Thread Allan Edwards
I posted a companion patch to the apr list last night. This patch against HEAD along with the apr patch get the three core dlls cross compiling with Visual Studio 6 + IA64 SDK. It addresses most /W2 warnings and fixes a couple of bugs. I haven't looked at many of the modules yet. As I mentioned in

Re: mod_deflate and no-gzip

2004-08-18 Thread Andr Malo
* Nick Kew [EMAIL PROTECTED] wrote: On Wed, 18 Aug 2004, Brian Akins wrote: Shouldn't we still set Vary: Accept-Encoding if no-gzip is set? Hmmm, makes sense. +1 Nope. mod_deflate doesn't know whether it depends on the request (more than the URL). Location /foo SetEnv no-gzip

[STATUS] (apache-1.3) Wed Aug 18 23:45:06 EDT 2004

2004-08-18 Thread Rodent of Unusual Size
APACHE 1.3 STATUS: -*-text-*- Last modified at [$Date: 2004/05/20 15:16:42 $] Release: 1.3.32-dev: In development 1.3.31: Tagged May 7, 2004. Announced May 11, 2004. 1.3.30: Tagged April 9, 2004. Not released. 1.3.29: Tagged October 24,

[STATUS] (httpd-2.0) Wed Aug 18 23:45:11 EDT 2004

2004-08-18 Thread Rodent of Unusual Size
APACHE 2.0 STATUS: -*-text-*- Last modified at [$Date: 2004/08/18 14:46:02 $] Release: 2.0.51 : in development 2.0.50 : released June 30, 2004 as GA. 2.0.49 : released March 19, 2004 as GA. 2.0.48 : released October 29, 2003 as GA.

[STATUS] (httpd-2.1) Wed Aug 18 23:45:15 EDT 2004

2004-08-18 Thread Rodent of Unusual Size
APACHE 2.1 STATUS: -*-text-*- Last modified at [$Date: 2004/04/27 22:09:17 $] Release [NOTE that only Alpha/Beta releases occur in 2.1 development]: 2.1.0 : in development Please consult the following STATUS files for information on related