- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 06 Mar 2008 23:05:01 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/index In directory hutz:/tmp/cvs-serv14913 Modified Files: TranslationTableGenerator.java Log Message: finding a way to repeat the th row with the limitations of html (can only have one thead) Index: TranslationTableGenerator.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/index/TranslationTableGenerator.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- TranslationTableGenerator.java 6 Mar 2008 23:01:47 -0000 1.6 +++ TranslationTableGenerator.java 6 Mar 2008 23:04:59 -0000 1.7 @@ -137,7 +137,7 @@ } translations_table = translations_table + "</tr>"; if(num_properties%12 == 0) { - translations_table = translations_table+"</tbody>"+table_head+"<tbody>"; + translations_table = translations_table+"</tbody><tbody>"+table_head; } } translations_table = translations_table + "</tbody></table>";
Received on Thursday, 6 March 2008 23:05:09 UTC