[PATCH] Resend: fix mod_dav If: weak etag comparison

2003-03-24 Thread Joe Orton
On Sat, Mar 15, 2003 at 11:36:03AM +, Joe Orton wrote: Hi, the change in r1.45 of dav/main/util.c doesn't seem to work, since weak etags look like W/etag not W/etag as the code expects. Here is a fix: Of course those strdups are now unnecessary since the string doesn't need to be

[PATCH] Apache 2.0 Proxy Windows Update

2003-03-24 Thread Tikka, Sami
Apache2 proxy seems to drop Content-Length header from replies to HEAD requests. This is very bad for Microsoft's Windows Update system (and against HTTP spec). The problem is caused by CONTENT_LENGTH output filter setting Content-Length header to zero because there is no body data. Later on

mod_expires and mod_dir problem

2003-03-24 Thread Brian Akins
I have had the problem in all versions of apache 2 that the following does not work as expected: ExpiresActive On ExpiresByType text/html A120 A request for http://host.domain.com/index.html has the correct Expires header added, but a request for http://host.domain.com/ does not. I determined

Re: New patch for preventing reverse lookups mod_proxy

2003-03-24 Thread Graham Leggett
Federico Mennite wrote: as suggested a while back (I've been a bit busy) by members of this list I changed the patch so that mod_proxy respects HostnameLookups when dealing reverse lookups. I'm not happy with it tough, because I had to add an API funtcion to the apache core. Since i'm quite

Re: AIX: ld -bI:httpd.exp vs. ld -lhttpd

2003-03-24 Thread Jeff Trawick
Stas Bekman wrote: Jeff Trawick wrote: The shared object has symbols that aren't intended for use by applications, whereas the .exp file doesn't. Personally, I think it is a good thing that we have a tight control over our API, so I think in terms of getting httpd.exp fixed instead of

Re: mod_expires and mod_dir problem

2003-03-24 Thread Greg Ames
Brian Akins wrote: I have had the problem in all versions of apache 2 that the following does not work as expected: ExpiresActive On ExpiresByType text/html A120 A request for http://host.domain.com/index.html has the correct Expires header added, but a request for http://host.domain.com/ does

Problem with mod_proxy when enabling ProxyErrorOverride

2003-03-24 Thread Graham Wiseman
Hello, Using mod_proxy in reverse mode with ProxyErrorOverride enabled, and a persistent back-end connection causes any server response of 304 to hang until the KeepAliveTimeOut expires. This has been tested on Apache 2.0.44, running on Linux-x86. Maybe mod_proxy becomes confused when

Testers; Apache 2.0 release candidate is tagged

2003-03-24 Thread William A. Rowe, Jr.
Apache 2.0 testers, can you please help move forward the next HTTPD release by checking out httpd-2.0 from the WROWE_2_0_45_RC1 tag? This should look something like; cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic login [password is anonymous without the quotes] cvs -d :pserver:[EMAIL

Re: Testers; Apache 2.0 release candidate is tagged

2003-03-24 Thread André Malo
* William A. Rowe, Jr. wrote: Apache 2.0 testers, can you please help move forward the next HTTPD release by checking out httpd-2.0 from the WROWE_2_0_45_RC1 tag? This should look something like; Just a question: does it mean, there's no chance to get the outstanding patches of

Re: Testers; Apache 2.0 release candidate is tagged

2003-03-24 Thread William A. Rowe, Jr.
At 04:47 PM 3/24/2003, André Malo wrote: * William A. Rowe, Jr. wrote: Apache 2.0 testers, can you please help move forward the next HTTPD release by checking out httpd-2.0 from the WROWE_2_0_45_RC1 tag? This should look something like; Just a question: does it mean, there's no chance

[PATCH] build problem with stable and older libtool

2003-03-24 Thread Greg Ames
I'm trying to get WROWE_2_0_45_RC1 going on daedalus and got: /home/gregames/httpd-2.0.45-wr1/shlibtool: /home/gregames/httpd-2.0.45-wr1/shlibtool: No such file or directory *** Error code 127 ...when make tried to build mod_access (the first module we build as a DSO). This is a symptom of

Re: AIX: ld -bI:httpd.exp vs. ld -lhttpd

2003-03-24 Thread Stas Bekman
Jeff Trawick wrote: Stas Bekman wrote: Jeff Trawick wrote: The shared object has symbols that aren't intended for use by applications, whereas the .exp file doesn't. Personally, I think it is a good thing that we have a tight control over our API, so I think in terms of getting httpd.exp

Re: Testers; Apache 2.0 release candidate is tagged

2003-03-24 Thread Greg Ames
William A. Rowe, Jr. wrote: Apache 2.0 testers, can you please help move forward the next HTTPD release by checking out httpd-2.0 from the WROWE_2_0_45_RC1 tag? It's running on port 8092 on apache.org if anyone wants to check it out there. My initial tests look fine, but I'm too burnt out at

Re: [Patch] ap_alloc_listener

2003-03-24 Thread Philippe M. Chiasson
On Sat, 2003-02-22 at 20:55, Jeff Trawick wrote: Philippe M. Chiasson wrote: In trying to write a protocol module for a protocol type != TCP, I had to duplicate the logic of both alloc_listener and find_default_family from server/listen.c. I believe that if a module wants to push a

Re: [PATCH] build problem with stable and older libtool

2003-03-24 Thread William A. Rowe, Jr.
I'll see your +1 and raise you +1... I thought the patch was required to build with apr out of tree - if everyone is going to be bit on libtool 1.3 releases let's get it in there now, and into the .45 release. Bill At 06:16 PM 3/24/2003, Greg Ames wrote: I'm trying to get WROWE_2_0_45_RC1 going

Re: Testers; Apache 2.0 release candidate is tagged

2003-03-24 Thread André Malo
* William A. Rowe, Jr. wrote: Oh - testing before/after with httpd-test/perl-framework really helps justify the patch - especially if you can create a scenario if none exists already. Since the fixes I want to test only affect non-unices ... is there a way to let it run under win32? (I don't

Re: [Patch] ap_alloc_listener

2003-03-24 Thread Philippe M. Chiasson
On Tue, 2003-03-25 at 11:18, Philippe M. Chiasson wrote: On Sat, 2003-02-22 at 20:55, Jeff Trawick wrote: Philippe M. Chiasson wrote: Realized my previous patch had lines 78 chars, following patch fixes that (thank you Stas) # $Id: ap_alloc_listener.patch,v 1.3 2003/03/25 07:23:18 gozer