From: Janis Streib Date: Fri, 27 Jun 2014 00:09:16 +0000 (+0200) Subject: Updated html attribute handling in DataTable X-Git-Url: https://code.wpia.club/?p=gigi.git;a=commitdiff_plain;h=ef1a8a72160bd31940a269e5fe75e4fcf0ff8017 Updated html attribute handling in DataTable --- diff --git a/src/org/cacert/gigi/output/DataTable.java b/src/org/cacert/gigi/output/DataTable.java index 60893b04..3f131a22 100644 --- a/src/org/cacert/gigi/output/DataTable.java +++ b/src/org/cacert/gigi/output/DataTable.java @@ -29,8 +29,7 @@ public class DataTable implements Outputable { for (int j = 0; j < columnCount;) { Cell current = cells.get((i * columnCount) + j); j += current.getColSpan(); - out.println(""); + out.println(""); out.print(current.shouldTranslate() ? l.getTranslation(current .getText()) : current.getText()); out.print(""); @@ -40,12 +39,6 @@ public class DataTable implements Outputable { out.println(""); } - /** - * Note: All cells have the html attribute class="DataTD"! - * - * @author janis - * - */ public static class Cell { private String text, htmlAttribs; private boolean translate; @@ -64,11 +57,11 @@ public class DataTable implements Outputable { } public Cell(String text, boolean translate) { - this(text, translate, 1, ""); + this(text, translate, 1, "class=\"DataTD\""); } public Cell(String text, boolean translate, int colSpan) { - this(text, translate, colSpan, ""); + this(text, translate, colSpan, "class=\"DataTD\""); } public boolean shouldTranslate() {