- From: Karl Dubost via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 14 Dec 2006 02:23:29 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/css
In directory hutz:/tmp/cvs-serv10932
Modified Files:
StyleSheetGeneratorHTML2.java
Log Message:
Fixing a missing end of td for line numbers and a begining of td for errors
Index: StyleSheetGeneratorHTML2.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/css/StyleSheetGeneratorHTML2.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- StyleSheetGeneratorHTML2.java 14 Dec 2006 02:16:46 -0000 1.29
+++ StyleSheetGeneratorHTML2.java 14 Dec 2006 02:23:27 -0000 1.30
@@ -214,7 +214,7 @@
ret.append("</td>");
}
}
- ret.append("\n<p>");
+ ret.append("\n<td class='error'>");
String name = error.getProperty();
if ((name != null) && (getURLProperty(name) != null)) {
ret.append(ac.getMsg().getGeneratorString("property"));
@@ -281,6 +281,7 @@
// ret.append(ac.getMsg().getGeneratorString("line"));
// ret.append(": ").append(error[i].getLine());
ret.append(error[i].getLine());
+ ret.append("</td>");
if (ex instanceof FileNotFoundException) {
ret.append("\n<td class='error'>");
ret.append(ac.getMsg().getGeneratorString("not-found"));
Received on Thursday, 14 December 2006 02:23:35 UTC