Skip Menu |

This queue is for tickets about the Apache-Compress CPAN distribution.

Report information
The Basics
Id: 32682
Status: open
Priority: 0/
Queue: Apache-Compress

People
Owner: Nobody in particular
Requestors: cpan [...] djsf.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.005
Fixed in: (no value)



Subject: Implement "conditional GET"
This patch adds support for If-Modified-Since: If-*Match: for gzipped content: --- Compress.pm.ORiG Wed Nov 17 23:01:14 2004 +++ Compress.pm Sat Jan 26 21:49:36 2008 @@ -32,6 +32,11 @@ $fh = $r->filter_input(); } else { $fh = Apache::File->new($r->filename); + $r->set_last_modified((stat $r->finfo)[9]); + $r->set_etag; + if ((my $rc = $r->meets_conditions) != OK) { + return $rc; + } } return SERVER_ERROR unless $fh;
From: kwilliams [...] cpan.org
Hi Andrew, Actually, are you interested in taking over maintenance of the module? And/or any of the other Apache::* modules I maintain? I just don't have enough time to devote to them anymore and I'm not in the web business anymore so I'm rusty on all things Apache these days. -Ken