From 98d2608bf2b120a3dde1128069b4ac89a2601f86 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 2 May 2011 11:05:56 -0500 Subject: Ensure we can handle all values in file size columns Signed-off-by: Dan McGee --- media/archweb.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'media') diff --git a/media/archweb.js b/media/archweb.js index 78b15670..49f2a319 100644 --- a/media/archweb.js +++ b/media/archweb.js @@ -69,12 +69,13 @@ if (typeof $.tablesorter !== 'undefined') { }); $.tablesorter.addParser({ id: 'filesize', - re: /^(\d+(?:\.\d+)?) (bytes?|KB|MB|GB|TB)$/, + re: /^(\d+(?:\.\d+)?) (bytes?|KB|MB|GB|TB|PB)$/, is: function(s) { return this.re.test(s); }, format: function(s) { var matches = this.re.exec(s); + if (!matches) return 0; var size = parseFloat(matches[1]); var suffix = matches[2]; @@ -90,6 +91,8 @@ if (typeof $.tablesorter !== 'undefined') { return size * 1024 * 1024 * 1024; case 'TB': return size * 1024 * 1024 * 1024 * 1024; + case 'PB': + return size * 1024 * 1024 * 1024 * 1024 * 1024; } }, type: 'numeric' -- cgit v1.2.3-55-g3dc8