- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 06 Mar 2008 22:26:17 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/index In directory hutz:/tmp/cvs-serv3250 Modified Files: TranslationTableGenerator.java Log Message: fixing (hopefully) the markup of translation table Index: TranslationTableGenerator.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/index/TranslationTableGenerator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- TranslationTableGenerator.java 27 Nov 2007 07:00:45 -0000 1.3 +++ TranslationTableGenerator.java 6 Mar 2008 22:26:15 -0000 1.4 @@ -85,7 +85,7 @@ HashMap[] languages = new HashMap[Messages.languages_name.size()]; HashMap translations = new HashMap(); HashMap translation_completeness = new HashMap(); - table_head ="<thead><tr><th scope='col' id=\"properties\">Property</th>"; + table_head ="<tr><th scope='col' id=\"properties\">Property</th>"; for (int i = 0; i < Messages.languages_name.size(); ++i) { name = String.valueOf(Messages.languages_name.get(i)); HashMap l = new HashMap(); @@ -100,7 +100,7 @@ translation_completeness.put(name, 0); } - table_head=table_head+"</thead>"; + table_head = table_head+"</tr>" Vector sorted_properties_keys = new Vector(ac_default.getMsg().properties.keySet()); Collections.sort(sorted_properties_keys, new AlphaComparator()); Iterator properties_iterator = sorted_properties_keys.iterator();
Received on Thursday, 6 March 2008 22:26:26 UTC