[RESULT] Re: [VOTE] Release 2.3.16-beta as beta

2011-12-19 Thread Jim Jagielski
With (binding) +1 votes from: igor, graham, jim, stefen I call this vote CLOSED and PASSED. I will start the release process. Thanks to all! On Dec 15, 2011, at 9:48 AM, Jim Jagielski wrote: The 2.3.16-beta (prerelease) tarballs are available for download at test:

mod_substitute buggy execution order

2011-12-19 Thread Nick Gearls
Directive execution order is performed in a very strange way in mod_substitute. Look at the following example: Substitute s/aaa/global/inq Location /test/ Substitute s/aaa/local/inq /Location If I have aaa in a page, I expect it to be replaced by global. No luck, it is

Re: mod_substitute buggy execution order

2011-12-19 Thread William A. Rowe Jr.
On 12/19/2011 8:40 AM, Nick Gearls wrote: Directive execution order is performed in a very strange way in mod_substitute. Look at the following example: Substitute s/aaa/global/inq Location /test/ Substitute s/aaa/local/inq /Location If I have aaa in a page, I expect

questions about rewrite module

2011-12-19 Thread Rui Hu
hi, I encountered a problem while configured virtual host. My experiment environment is Apache2+fastcgi+php-cgi. I want to implement mass virtual hosting using rewrite rules based on apache rewrite module. That is, for a request url like: http://1000.xyz.com/test.php, apache will translate it to

Re: svn commit: r1220867 - in /httpd/httpd/branches/2.4.x: ./ CHANGES Makefile.in build/rpm/httpd.spec.in build/rules.mk.in support/Makefile.in test/Makefile.in

2011-12-19 Thread William A. Rowe Jr.
On 12/19/2011 11:27 AM, minf...@apache.org wrote: Modified: httpd/httpd/branches/2.4.x/Makefile.in URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/Makefile.in?rev=1220867r1=1220866r2=1220867view=diff ==

Fwd: mod_substitute buggy execution order

2011-12-19 Thread Nick Gearls
That's very different from other modules. Most (all?) modules do the opposite: first global, then local - ex: rewrite Furthermore, narrowing does not work the way you expect as Location /test/ Substitute s/aaa/local1/inq /Location Location / Substitute s/aaa/local2/inq