Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 50988 invoked from network); 20 Jul 2005 14:35:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 20 Jul 2005 14:35:44 -0000 Received: (qmail 31908 invoked by uid 500); 20 Jul 2005 14:35:37 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 31849 invoked by uid 500); 20 Jul 2005 14:35:37 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 31805 invoked by uid 99); 20 Jul 2005 14:35:36 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 20 Jul 2005 07:35:25 -0700 Received: (qmail 50705 invoked by uid 65534); 20 Jul 2005 14:35:23 -0000 Message-ID: <20050720143523.50704.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r219913 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_cache.c Date: Wed, 20 Jul 2005 14:35:22 -0000 To: cvs@httpd.apache.org From: pquerna@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: pquerna Date: Wed Jul 20 07:35:21 2005 New Revision: 219913 URL: http://svn.apache.org/viewcvs?rev=219913&view=rev Log: Now you can run mod_deflate before mod_cache, and cache it. Modified: httpd/httpd/trunk/CHANGES httpd/httpd/trunk/modules/cache/mod_cache.c Modified: httpd/httpd/trunk/CHANGES URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/CHANGES?rev=219913&r1=219912&r2=219913&view=diff ============================================================================== --- httpd/httpd/trunk/CHANGES [utf-8] (original) +++ httpd/httpd/trunk/CHANGES [utf-8] Wed Jul 20 07:35:21 2005 @@ -2,6 +2,9 @@ Changes with Apache 2.1.7 [Remove entries to the current 2.0 section below, when backported] + *) mod_cache: Run the CACHE_SAVE and CACHE_OUT Filters after other content + filters. [Paul Querna] + *) mod_negotiation: Correctly report 404 instead of 403 for missing files. [Paul Querna] Modified: httpd/httpd/trunk/modules/cache/mod_cache.c URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/cache/mod_cache.c?rev=219913&r1=219912&r2=219913&view=diff ============================================================================== --- httpd/httpd/trunk/modules/cache/mod_cache.c (original) +++ httpd/httpd/trunk/modules/cache/mod_cache.c Wed Jul 20 07:35:21 2005 @@ -1018,7 +1018,7 @@ ap_register_output_filter("CACHE_SAVE", cache_save_filter, NULL, - AP_FTYPE_CONTENT_SET-1); + AP_FTYPE_CONTENT_SET+1); /* CACHE_OUT must go into the filter chain before SUBREQ_CORE to * handle subrequsts. Decrementing filter type by 1 ensures this * happens. @@ -1027,7 +1027,7 @@ ap_register_output_filter("CACHE_OUT", cache_out_filter, NULL, - AP_FTYPE_CONTENT_SET-1); + AP_FTYPE_CONTENT_SET+1); ap_hook_post_config(cache_post_config, NULL, NULL, APR_HOOK_REALLY_FIRST); }