--- a/web/data/jquery.tablesorter.js Wed Nov 09 14:55:25 2011 +0100
+++ b/web/data/jquery.tablesorter.js Wed Nov 09 16:42:33 2011 +0100
@@ -886,10 +886,21 @@
is: function (s) {
return true;
}, format: function (s) {
- return $.trim(s.toLocaleLowerCase());
+ return $.trim(s); // CW PATCH: lowercasing decision taken in the server
}, type: "text"
});
+ // CW PATCH: ugly hack to catch booleans
+ ts.addParser({
+ id: 'boolean',
+ is: function (s) {
+ return (s == "true" || s == "false");
+ },
+ format: function (s) {
+ if (s) { return "0"; } else { return "1"; }
+ },
+ type: 'boolean'});
+
ts.addParser({
id: "digit",
is: function (s, table) {