- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 04 Feb 2009 15:19:22 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/parser
In directory hutz:/tmp/cvs-serv25361/org/w3c/css/parser
Modified Files:
CssFouffa.java
Log Message:
added support for content-encoding gzip
Index: CssFouffa.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/parser/CssFouffa.java,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- CssFouffa.java 10 Dec 2008 15:22:58 -0000 1.43
+++ CssFouffa.java 4 Feb 2009 15:19:20 -0000 1.44
@@ -185,7 +185,7 @@
*/
private CssFouffa(ApplContext ac, URLConnection uco) throws IOException {
- this(ac, uco.getInputStream(), uco.getURL(), 0);
+ this(ac, HTTPURL.getInputStream(uco), uco.getURL(), 0);
String httpCL = uco.getHeaderField("Content-Location");
if (httpCL != null) {
setURL(HTTPURL.getURL(getURL(), httpCL));
Received on Wednesday, 4 February 2009 15:19:31 UTC