Re: [VOTE] Release Apache httpd 2.4.4 as GA

2013-02-25 Thread Reindl Harald
Am 25.02.2013 08:54, schrieb Justin Erenkrantz: On Thu, Feb 21, 2013 at 5:27 AM, Justin Erenkrantz jus...@erenkrantz.com mailto:jus...@erenkrantz.com wrote: Anybody know if it still exists in Illumos? This sounds like a fun thing to tackle next week in Portland. =) (I'll be

Re: [VOTE] Release Apache httpd 2.4.4 as GA

2013-02-25 Thread Graham Leggett
On 18 Feb 2013, at 10:34 PM, Jim Jagielski j...@jagunet.com wrote: The pre-release test tarballs for Apache httpd 2.4.4 can be found at the usual place: http://httpd.apache.org/dev/dist/ I'm calling a VOTE on releasing these as Apache httpd 2.4.4 GA. NOTE: The -deps tarballs are

[RESULT][VOTE] Release Apache httpd 2.2.24 as GA

2013-02-25 Thread Rainer Jung
On behalf of Bill who sits next to me but currently can't post to this thread: Bill calls the vote closed. Results are: +1: eric(*), jim(*), rjung(*), wrowe(*), gls +0: - -1: - With the final tally APPROVING release. Thx to all voters and testers! Bill will move the release artifacts to

If/If-Match don't work for COPY

2013-02-25 Thread Timothy Wood
Sending a If or If-Match header with an invalid ETag doesn't result in a 412 Precondition Failed. http://www.webdav.org/specs/rfc4918.html#METHOD_COPY has an example specifically calling out preconditions on COPY (10.4.9), for example, but I'm just doing a simple If-Match. This patch (vs our

Re: If/If-Match don't work for COPY

2013-02-25 Thread Reindl Harald
Am 25.02.2013 22:47, schrieb Timothy Wood: Sending a If or If-Match header with an invalid ETag doesn't result in a 412 Precondition Failed why in the world should it? you get back a 200 status code and content or a 305 Not Modified which you can EASY implement in any PHP-application too

[ANNOUNCE] Apache HTTP Server 2.4.4 Released

2013-02-25 Thread Jim Jagielski
Apache HTTP Server 2.4.4 Released The Apache Software Foundation and the Apache HTTP Server Project are pleased to announce the release of version 2.4.4 of the Apache HTTP Server (Apache). This version of Apache is our latest GA release of the new generation 2.4.x branch

Location header for dav_created not URI encoded

2013-02-25 Thread Timothy Wood
Again, I'm not sure this is the right approach, but returning a non-encoded URI certainly isn't. In particular, I wonder if the optimization of using unparsed_uri is good or whether the r-uri should be escaped. Again, diff is vs our local copy of 2.4.3. -tim Index:

Question about APR_BRIGADE_INSERT_TAIL usage

2013-02-25 Thread Christophe JAILLET
Hi list, in the old PR51699, Stefan Fritsch turned a sequence like: APR_BRIGADE_INSERT_TAIL(bb, apr_bucket_pool_create(...)); into: apr_brigade_putstrs(bb, NULL,...); (http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_include.c?r1=1159896r2=1159895pathrev=1159896)