This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 5648 - Handle gzip content-encoded content
Summary: Handle gzip content-encoded content
Status: RESOLVED FIXED
Alias: None
Product: LinkChecker
Classification: Unclassified
Component: checklink (show other bugs)
Version: 4.3
Hardware: All All
: P2 enhancement
Target Milestone: 4.4
Assignee: Ville Skyttä
QA Contact: qa-dev tracking
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-04-21 02:26 UTC by Olivier Thereaux
Modified: 2009-04-09 19:21 UTC (History)
2 users (show)

See Also:


Attachments

Description Olivier Thereaux 2008-04-21 02:26:02 UTC
In current checklink code:

 my $ce = $response->header('Content-Encoding');
 ...
 elsif (defined($ce) && $ce ne 'identity') {
    # @@@ We could maybe handle gzip...
    $failed_reason = "Content-Encoding for <$request_uri> is '$ce'";
  }

Indeed, we could handle gzip. Recording this as an RFE.
Comment 1 Ville Skyttä 2008-04-21 07:13:12 UTC
Done in CVS, will be in 4.4.

http://dev.w3.org/cvsweb/perl/modules/W3C/LinkChecker/bin/checklink.diff?r1=4.98&r2=4.99
Comment 2 Henrik Gemal 2008-09-25 11:58:55 UTC
I'm wondering when this will his the production site?

it still crashes on this http://browserspy.dk/gzip.php?css=1&x.css

http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fbrowserspy.dk%2Fgzip.php%3Fcss%3D1%26x.css&profile=css21&usermedium=all&warning=1&lang=en

"Servlet has thrown exception:javax.servlet.ServletException: Timed out"
Comment 3 Ville Skyttä 2008-09-25 17:41:47 UTC
The URL you posted points to the CSS validator, this bug is about the link checker.  The link checker fix is not in production yet though, but I suppose it won't take too long any more for it to make it there.
Comment 4 Ville Skyttä 2009-04-09 19:21:26 UTC
In production now.