- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 21 Sep 2012 14:42:28 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/servlet In directory hutz:/tmp/cvs-serv30952/servlet Modified Files: CssValidator.java Log Message: do not send bogus usermedium with CSS1, it hurts Index: CssValidator.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/servlet/CssValidator.java,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- CssValidator.java 16 Feb 2012 13:29:22 -0000 1.52 +++ CssValidator.java 21 Sep 2012 14:42:26 -0000 1.53 @@ -44,793 +44,802 @@ */ public final class CssValidator extends HttpServlet { - final static String texthtml = "text/html"; + final static String texthtml = "text/html"; - final static String applxhtml = "application/xhtml+xml"; + final static String applxhtml = "application/xhtml+xml"; - final static String textplain = "text/plain"; + final static String textplain = "text/plain"; [...1463 lines suppressed...] - e, validURI); - res.setHeader(headers_name + "Status", "Abort"); + ErrorReport error = ErrorReportFactory.getErrorReport(ac, title, output, + e, validURI); + res.setHeader(headers_name + "Status", "Abort"); - try { - error.print(out); - } finally { - out.close(); - } - } + try { + error.print(out); + } finally { + out.close(); + } + } }
Received on Friday, 21 September 2012 14:42:29 UTC