mod_deflate in 2.0.40

2002-08-30 Thread Kris Verbeeck
Hi, The 2.0.39 code: if ((r-content_type == NULL || strncmp(r-content_type, text/html, 9)) apr_table_get(r-subprocess_env, gzip-only-text/html)) { ap_remove_output_filter(f); return ap_pass_brigade(f-next, bb); } says 'if we have a response with a content-type

[PATCH] Re: mod_deflate in 2.0.40

2002-08-30 Thread Kris Verbeeck
Hi again, After testing I discovered that some more changes were needed to get it to work. Patch has been attached. This patch should still have the behaviour of enabling compression when gzip-only-text/html is set to something other than 1. It will also enable compression if

Re: [PATCH] Re: mod_deflate in 2.0.40

2002-08-30 Thread Ian Holsman
Thanks Kris. I've applied your change.