summaryrefslogtreecommitdiff
path: root/frontend/beta/js/Clipperz/Profile.js
Unidiff
Diffstat (limited to 'frontend/beta/js/Clipperz/Profile.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/js/Clipperz/Profile.js22
1 files changed, 10 insertions, 12 deletions
diff --git a/frontend/beta/js/Clipperz/Profile.js b/frontend/beta/js/Clipperz/Profile.js
index fb12417..98c1e53 100644
--- a/frontend/beta/js/Clipperz/Profile.js
+++ b/frontend/beta/js/Clipperz/Profile.js
@@ -1,118 +1,116 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26addEvent(window, "load", sortables_init); 24addEvent(window, "load", sortables_init);
27 25
28var SORT_COLUMN_INDEX; 26var SORT_COLUMN_INDEX;
29 27
30function sortables_init() { 28function sortables_init() {
31 // Find all tables with class sortable and make them sortable 29 // Find all tables with class sortable and make them sortable
32 if (!document.getElementsByTagName) return; 30 if (!document.getElementsByTagName) return;
33 tbls = document.getElementsByTagName("table"); 31 tbls = document.getElementsByTagName("table");
34 for (ti=0;ti<tbls.length;ti++) { 32 for (ti=0;ti<tbls.length;ti++) {
35 thisTbl = tbls[ti]; 33 thisTbl = tbls[ti];
36 if (((' '+thisTbl.className+' ').indexOf("sortable") != -1) && (thisTbl.id)) { 34 if (((' '+thisTbl.className+' ').indexOf("sortable") != -1) && (thisTbl.id)) {
37 //initTable(thisTbl.id); 35 //initTable(thisTbl.id);
38 ts_makeSortable(thisTbl); 36 ts_makeSortable(thisTbl);
39 } 37 }
40 } 38 }
41} 39}
42 40
43function ts_makeSortable(table) { 41function ts_makeSortable(table) {
44 if (table.rows && table.rows.length > 0) { 42 if (table.rows && table.rows.length > 0) {
45 var firstRow = table.rows[0]; 43 var firstRow = table.rows[0];
46 } 44 }
47 if (!firstRow) return; 45 if (!firstRow) return;
48 46
49 // We have a first row: assume it's the header, and make its contents clickable links 47 // We have a first row: assume it's the header, and make its contents clickable links
50 for (var i=0;i<firstRow.cells.length;i++) { 48 for (var i=0;i<firstRow.cells.length;i++) {
51 var cell = firstRow.cells[i]; 49 var cell = firstRow.cells[i];
52 var txt = ts_getInnerText(cell); 50 var txt = ts_getInnerText(cell);
53 cell.innerHTML = '<a href="#" class="sortheader" '+ 51 cell.innerHTML = '<a href="#" class="sortheader" '+
54 'onclick="ts_resortTable(this, '+i+');return false;">' + 52 'onclick="ts_resortTable(this, '+i+');return false;">' +
55 txt+'<span class="sortarrow">&nbsp;&nbsp;&nbsp;</span></a>'; 53 txt+'<span class="sortarrow">&nbsp;&nbsp;&nbsp;</span></a>';
56 } 54 }
57} 55}
58 56
59function ts_getInnerText(el) { 57function ts_getInnerText(el) {
60 if (typeof el == "string") return el; 58 if (typeof el == "string") return el;
61 if (typeof el == "undefined") { return el }; 59 if (typeof el == "undefined") { return el };
62 if (el.innerText) return el.innerText;//Not needed but it is faster 60 if (el.innerText) return el.innerText;//Not needed but it is faster
63 var str = ""; 61 var str = "";
64 62
65 var cs = el.childNodes; 63 var cs = el.childNodes;
66 var l = cs.length; 64 var l = cs.length;
67 for (var i = 0; i < l; i++) { 65 for (var i = 0; i < l; i++) {
68 switch (cs[i].nodeType) { 66 switch (cs[i].nodeType) {
69 case 1: //ELEMENT_NODE 67 case 1: //ELEMENT_NODE
70 str += ts_getInnerText(cs[i]); 68 str += ts_getInnerText(cs[i]);
71 break; 69 break;
72 case 3://TEXT_NODE 70 case 3://TEXT_NODE
73 str += cs[i].nodeValue; 71 str += cs[i].nodeValue;
74 break; 72 break;
75 } 73 }
76 } 74 }
77 return str; 75 return str;
78} 76}
79 77
80function ts_resortTable(lnk,clid) { 78function ts_resortTable(lnk,clid) {
81 // get the span 79 // get the span
82 var span; 80 var span;
83 for (var ci=0;ci<lnk.childNodes.length;ci++) { 81 for (var ci=0;ci<lnk.childNodes.length;ci++) {
84 if (lnk.childNodes[ci].tagName && lnk.childNodes[ci].tagName.toLowerCase() == 'span') span = lnk.childNodes[ci]; 82 if (lnk.childNodes[ci].tagName && lnk.childNodes[ci].tagName.toLowerCase() == 'span') span = lnk.childNodes[ci];
85 } 83 }
86 var spantext = ts_getInnerText(span); 84 var spantext = ts_getInnerText(span);
87 var td = lnk.parentNode; 85 var td = lnk.parentNode;
88 var column = clid || td.cellIndex; 86 var column = clid || td.cellIndex;
89 var table = getParent(td,'TABLE'); 87 var table = getParent(td,'TABLE');
90 88
91 // Work out a type for the column 89 // Work out a type for the column
92 if (table.rows.length <= 1) return; 90 if (table.rows.length <= 1) return;
93 var itm = ts_getInnerText(table.rows[1].cells[column]); 91 var itm = ts_getInnerText(table.rows[1].cells[column]);
94 sortfn = ts_sort_caseinsensitive; 92 sortfn = ts_sort_caseinsensitive;
95 if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d\d\d$/)) { 93 if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d\d\d$/)) {
96 sortfn = ts_sort_date; 94 sortfn = ts_sort_date;
97 } 95 }
98 if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d$/)) { 96 if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d$/)) {
99 sortfn = ts_sort_date; 97 sortfn = ts_sort_date;
100 } 98 }
101 if (itm.match(/^[£$]/)) { 99 if (itm.match(/^[£$]/)) {
102 sortfn = ts_sort_currency; 100 sortfn = ts_sort_currency;
103 } 101 }
104 if (itm.match(/^[\d\.]+$/)) { 102 if (itm.match(/^[\d\.]+$/)) {
105 sortfn = ts_sort_numeric; 103 sortfn = ts_sort_numeric;
106 } 104 }
107 SORT_COLUMN_INDEX = column; 105 SORT_COLUMN_INDEX = column;
108 var firstRow = new Array(); 106 var firstRow = new Array();
109 var newRows = new Array(); 107 var newRows = new Array();
110 for (i=0;i<table.rows[0].length;i++) { 108 for (i=0;i<table.rows[0].length;i++) {
111 firstRow[i] = table.rows[0][i]; 109 firstRow[i] = table.rows[0][i];
112 } 110 }
113 111
114 for (j=1;j<table.rows.length;j++) { 112 for (j=1;j<table.rows.length;j++) {
115 newRows[j-1] = table.rows[j]; 113 newRows[j-1] = table.rows[j];
116 } 114 }
117 newRows.sort(sortfn); 115 newRows.sort(sortfn);
118 116