Re: mod_cache with Cache-Control no-cache= or private=

2013-03-27 Thread Yann Ylavic
On Mon, Mar 25, 2013 at 11:58 PM, Roy T. Fielding field...@gbiv.com wrote: On Mar 13, 2013, at 10:20 AM, Graham Leggett wrote: I don't read it that way from the spec, I think it all comes down to the phrase without successful revalidation with the origin server. I read it as without

Re: mod_cache with Cache-Control no-cache= or private=

2013-03-27 Thread Yann Ylavic
I have already created the bugzilla issue #54706 nearly 2 weeks ago, about mod_cache that may serve cached private= or no-cache= response headers. Should I link something discussion from here or the patch to this issue ? Regards, Yann.

Re: mod_cache with Cache-Control no-cache= or private=

2013-03-27 Thread Graham Leggett
On 27 Mar 2013, at 6:06 PM, Yann Ylavic ylavic@gmail.com wrote: Index: modules/cache/mod_cache.h === --- modules/cache/mod_cache.h (revision 1461557) +++ modules/cache/mod_cache.h (working copy) @@ -152,9 +152,12 @@ /*

Broken links in 2.4/current docs

2013-03-27 Thread Tom Evans
Hi all mod_macro documentation seems to have gone AWOL: http://httpd.apache.org/docs/current/mod/mod_macro.html http://httpd.apache.org/docs/2.4t/mod/mod_macro.html Both linked from /docs/ver/mod/ Cheers Tom

Re: mod_ssl dynamic configuration project

2013-03-27 Thread Tom Evans
On Tue, Mar 26, 2013 at 8:25 PM, Tim Traver tt-l...@simplenet.com wrote: Hi all, ok, I just wanted to start here, because this seems like the place. I know this is going to meet a lot of resistance, but here is my crazy idea. I'd like to figure out a way to dynamically retrieve the SSL keys

Re: mod_cache with Cache-Control no-cache= or private=

2013-03-27 Thread Yann Ylavic
On Wed, Mar 27, 2013 at 5:44 PM, Graham Leggett minf...@sharp.fm wrote: Been snowed under and haven't had a chance to look at this in detail, but one quick thing - we would definitely want to be able to backport this to v2.4 so as to get it into people's hands, and to do that, we cannot

Re: mod_cache with Cache-Control no-cache= or private=

2013-03-27 Thread Yann Ylavic
In fact this patch is probably better since it does not change h-resp_hdrs before calling cache_accept_headers() which uses them. Regars, Yann. Index: modules/cache/cache_util.c === --- modules/cache/cache_util.c (revision 1461557)

Re: Broken links in 2.4/current docs

2013-03-27 Thread Jeff Trawick
On Wed, Mar 27, 2013 at 1:14 PM, Tom Evans tevans...@googlemail.com wrote: Hi all mod_macro documentation seems to have gone AWOL: http://httpd.apache.org/docs/current/mod/mod_macro.html http://httpd.apache.org/docs/2.4t/mod/mod_macro.html Both linked from /docs/ver/mod/ fixed in

Re: mod_cache with Cache-Control no-cache= or private=

2013-03-27 Thread Yann Ylavic
Sorry for my precipitation, the Content-Type is stripped from the validated (stale) headers with the previous patch, we have to do a copy like below. Regards, Yann. Index: modules/cache/cache_util.c === ---

Re: mod_cache with Cache-Control no-cache= or private=

2013-03-27 Thread Yann Ylavic
The latest patch is attached to bugzilla #54706. Regards, Yann.