- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 17 Oct 2005 08:47:54 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/css
In directory hutz:/tmp/cvs-serv952
Modified Files:
StyleReportSOAP12.java
Log Message:
fixed date format to iso8601
Index: StyleReportSOAP12.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/css/StyleReportSOAP12.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- StyleReportSOAP12.java 16 Sep 2005 13:22:35 -0000 1.12
+++ StyleReportSOAP12.java 17 Oct 2005 08:47:52 -0000 1.13
@@ -161,7 +161,7 @@
general.put("today", new Date().toString());
}
SimpleDateFormat formatter = new SimpleDateFormat(
- "yyyy.MM.dd'T'hh:mm:ss'Z'");
+ "yyyy-MM-dd'T'hh:mm:ss'Z'");
formatter.setTimeZone(TimeZone.getTimeZone("UTC"));
general.put("currentdate", formatter.format(new Date()));
}
Received on Monday, 17 October 2005 10:25:56 UTC