]> mj.ucw.cz Git - libucw.git/commitdiff
Tableprinter: TODO notes moved from table.h to TODO file
authorRobert Kessl <kesslr@centrum.cz>
Tue, 17 Jun 2014 14:00:47 +0000 (16:00 +0200)
committerRobert Kessl <kesslr@centrum.cz>
Tue, 17 Jun 2014 14:00:47 +0000 (16:00 +0200)
TODO
ucw/table.h

diff --git a/TODO b/TODO
index 5e4357b772c515b50a0d5da0fa172a1c459b7fa8..ccac49f0f7a58633df30f30dcca20e6395448b0b 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,3 +1,7 @@
 - ipaccess: support IPv6
 - transactions: Unit tests
 - Maint: git push --tags
+
+Tableprinter:
+- computing statistics of columns via the table_start_callback/table_end_callback.
+- unsupported: (dynamic) alignment of cells which is computed in table_end
index bf62a58781e149ce075fa5ed3fcb5c1150c5f82a..c476cb18888c84f46cca8cc436817bcd6087555b 100644 (file)
@@ -32,6 +32,7 @@
 #define table_col_printf ucw_table_col_printf
 #define table_col_str ucw_table_col_str
 #define table_col_u64 ucw_table_col_u64
+#define table_col_s64 ucw_table_col_s64
 #define table_col_uint ucw_table_col_uint
 #define table_col_uintmax ucw_table_col_uintmax
 #define table_end ucw_table_end
@@ -162,17 +163,7 @@ enum column_type {
  * It is also possible to print string to an arbitrary cell.
  *
  * Features:
- * * user supplied callback functions can be used for modifying the output format.
- *
- * TODO part/Planned features:
- * * computing statistics of columns via the table_start_callback/table_end_callback.
- * * unsupported: (dynamic) alignment of cells which is computed in table_end
- *
- * TODO: table_set_col_fmt: this functin takes the format string and the value. But I'm not able to
- * test whether the format string and the type match !!!
- *
- * TODO: how to print column which is aligned to the left flag for alignment: 1) left; 2) right;
- *       3) decimal point alignment;
+ * - user supplied callback functions can be used for modifying the output format.
  ***/
 
 struct table;