Module: check_mk
Branch: master
Commit: f2eedd5c64d1012711fd814e98c36b1c5bf52158
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=f2eedd5c64d101…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Tue Nov 26 12:12:48 2013 +0100
Removed non-werk
---
.werks/235 | 25 -------------------------
1 file changed, 25 deletions(-)
diff --git a/.werks/235 b/.werks/235
deleted file mode 100644
index 3116457..0000000
--- a/.werks/235
+++ /dev/null
@@ -1,25 +0,0 @@
-Title: module table.py: table headers are omitted if all header fields are empty
-Level: 1
-Component: wato
-Version: 1.2.3i7
-Date: 1385120851
-Class: feature
-
-Html tables rendered with the help of the table module always displayed the
<th> fields,
-even if none if this fields were filled. For example:
-
-C+:
-table.begin(searchable = False)
-# Firma
-table.row()
-table.cell("", "Company")
-table.cell("", "Yummifood")
-# Adresse
-table.row()
-table.cell("", "Address")
-table.cell("", "Yummistreet 7, 12345 Yummiville")
-table.end()
-C-:
-
-This created a table with empty headers.
-The new feature omits this headerline if it's not used otherwise, e.g. by a table
action.