Re: mod_substitute behavior -- bug or feature?

2008-10-14 Thread Sascha Kersken
Eric Covener schrieb: On Tue, Oct 14, 2008 at 7:37 AM, Sascha Kersken [EMAIL PROTECTED] wrote: Hi all, I tried to use a Substitute directive for a naive approach to get rid of all HTML/XML markup from a document (just a textbook example). Configuration looks as follows: Location /nohtml

Re: [VOTE] Release Apache HTTP server 2.2.10

2008-10-14 Thread Tom Donovan
William A. Rowe, Jr. wrote: .msi*'s to direct at /dist/httpd/binaries/win32/, -symbols.zip*'s to direct at archive.apache.org/dist/httpd/binaries/win32/symbols/, and the usual httpd-2.2.10-win32-src.zip* files are all in the usual /dev/dist/ location. I noticed a few little things building

Re: [VOTE] Release Apache HTTP server 2.2.10

2008-10-14 Thread William A. Rowe, Jr.
Tom Donovan wrote: William A. Rowe, Jr. wrote: .msi*'s to direct at /dist/httpd/binaries/win32/, -symbols.zip*'s to direct at archive.apache.org/dist/httpd/binaries/win32/symbols/, and the usual httpd-2.2.10-win32-src.zip* files are all in the usual /dev/dist/ location. I noticed a few

[RESULT] Re: [VOTE] Release Apache HTTP server 2.2.10

2008-10-14 Thread Jim Jagielski
We are plenty of binding (and non-binding) +1 votes... I will start the process of doing the actual release. I will move the tarballs over in the next few hours. I've also gone ahead and updated the site docs (but not updated the site)

Re: [apr_dbd] apr_dbd_datum_get example

2008-10-14 Thread Jérôme Renard
I actually fixed my issue with the following code : for (rv = apr_dbd_get_row(dbd-driver, r-pool, res, row, -1); rv != -1; rv = apr_dbd_get_row(dbd-driver, r-pool, res, row, -1)) { file_data = apr_brigade_create(r-pool, r-connection-bucket_alloc);

svn export via http in release.sh

2008-10-14 Thread Ruediger Pluem
While looking over the release.sh script that is used to cut our releases I noticed that we export our sources via http. Shouldn't this be done via https for the sake of integrity? Regards Rüdiger

Re: [RESULT] Re: [VOTE] Release Apache HTTP server 2.2.10

2008-10-14 Thread Jim Jagielski
The tarballs have been moved... will await for mirrors to sync up On Oct 14, 2008, at 1:56 PM, Jim Jagielski wrote: We are plenty of binding (and non-binding) +1 votes... I will start the process of doing the actual release. I will move the tarballs over in the next few hours. I've also

Re: Speeding up mod_proxy_balancer on Windows

2008-10-14 Thread Jim Jagielski
On Oct 13, 2008, at 4:42 PM, Ruediger Pluem wrote: On 10/13/2008 10:04 PM, Jess Holle wrote: Jess Holle wrote: Ruediger Pluem wrote: So if noone finds a registry entry to stop this RFC violating behaviour I'd love to see this solved by such a discovery, option 0. I see only two

mod_substitute behavior -- bug or feature?

2008-10-14 Thread Sascha Kersken
Hi all, I tried to use a Substitute directive for a naive approach to get rid of all HTML/XML markup from a document (just a textbook example). Configuration looks as follows: Location /nohtml AddOutputFilter SUBSTITUTE .html AddType text/plain .html Substitute s/[^]+// /Location i.e.

Re: svn export via http in release.sh

2008-10-14 Thread Paul Querna
Ruediger Pluem wrote: While looking over the release.sh script that is used to cut our releases I noticed that we export our sources via http. Shouldn't this be done via https for the sake of integrity? +1, change the script :-)

Re: mod_substitute behavior -- bug or feature?

2008-10-14 Thread Eric Covener
On Tue, Oct 14, 2008 at 7:37 AM, Sascha Kersken [EMAIL PROTECTED] wrote: Hi all, I tried to use a Substitute directive for a naive approach to get rid of all HTML/XML markup from a document (just a textbook example). Configuration looks as follows: Location /nohtml AddOutputFilter

Re: svn export via http in release.sh

2008-10-14 Thread Ruediger Pluem
On 10/14/2008 11:26 PM, Paul Querna wrote: Ruediger Pluem wrote: While looking over the release.sh script that is used to cut our releases I noticed that we export our sources via http. Shouldn't this be done via https for the sake of integrity? +1, change the script :-) Done. r704711.

Apache sourcecode cross reference

2008-10-14 Thread Sascha Kersken
Hi all, there used to be a great cross reference of the Apache httpd's source code at http://lxr.webperf.org/. Has it moved, or is it gone forever? Cheers Sascha

Re: proxy_ajp connect timeout fix.

2008-10-14 Thread Ruediger Pluem
On 10/09/2008 10:11 PM, Matt Stevenson wrote: Had a bit more time, here is a patch that should work for Unix which have apr_wait_for_io_or_timeout available. I can't test windows/others so that's the reason for the ifdef. ProxyPass / balance://hotcluster/ Proxy balance://hotcluster #

Re: svn commit: r704726 - /httpd/httpd/trunk/Makefile.in

2008-10-14 Thread Ruediger Pluem
On 10/15/2008 12:39 AM, [EMAIL PROTECTED] wrote: Author: minfrin Date: Tue Oct 14 15:39:32 2008 New Revision: 704726 URL: http://svn.apache.org/viewvc?rev=704726view=rev Log: Export and install the mod_rewrite.h header to ensure the optional rewrite_mapfunc_t and

Re: proxy_ajp connect timeout fix.

2008-10-14 Thread Ruediger Pluem
On 10/15/2008 02:28 AM, Ruediger Pluem wrote: On 10/09/2008 10:11 PM, Matt Stevenson wrote: Had a bit more time, here is a patch that should work for Unix which have apr_wait_for_io_or_timeout available. I can't test windows/others so that's the reason for the ifdef. ProxyPass /

Re: proxy_ajp connect timeout fix.

2008-10-14 Thread Jess Holle
Ruediger Pluem wrote: I checked 2.2.x and trunk in the meantime and they behaves as they should *without* the patch. If I try to connect to a non existing host the apr_socket_connect call returns after the timeout set via connectiontimeout. I guess this leaves us to the question whether we need

Re: proxy_ajp connect timeout fix.

2008-10-14 Thread Mladen Turk
Ruediger Pluem wrote: I guess this leaves us to the question whether we need to be able to set connectiontimeouts below one second. Right now we are using a simple atoi for parsing those config values. Some more advanced function for parsing the time should be added thought. Eg. timeout=30