blob: 4f595631fe16e6a9d80bafd3f44b20f871c54fa6 [file] [log] [blame]
Alexander Afanasyev3c95c852013-03-01 18:58:50 -08001function number_format( number, decimals, dec_point, thousands_sep ) {
2 // http://kevin.vanzonneveld.net
3 // + original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
4 // + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
5 // + bugfix by: Michael White (http://crestidg.com)
6 // + bugfix by: Benjamin Lupton
7 // + bugfix by: Allan Jensen (http://www.winternet.no)
8 // + revised by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
9 // * example 1: number_format(1234.5678, 2, '.', '');
10 // * returns 1: 1234.57
11
12 var n = number, c = isNaN(decimals = Math.abs(decimals)) ? 2 : decimals;
13 var d = dec_point == undefined ? "," : dec_point;
14 var t = thousands_sep == undefined ? "." : thousands_sep, s = n < 0 ? "-" : "";
15 var i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "", j = (j = i.length) > 3 ? j % 3 : 0;
16
17 return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : "");
18}
19
20function SegNumToFileSize (segNum) {
21 filesize = segNum * 1024;
22
23 if (filesize >= 1073741824) {
24 filesize = number_format(filesize / 1073741824, 2, '.', '') + ' Gb';
25 } else {
26 if (filesize >= 1048576) {
27 filesize = number_format(filesize / 1048576, 2, '.', '') + ' Mb';
28 } else {
29 if (filesize > 1024) {
30 filesize = number_format(filesize / 1024, 0) + ' Kb';
31 } else {
32 filesize = '< 1 Kb';
33 };
34 };
35 };
36 return filesize;
37};
38
39/**
40 * @brief Convert binary data represented as non-escaped hex string to Uint8Array
41 * @param str String like ba0cb43e4b9639c114a0487d5faa7c70452533963fc8beb37d1b67c09a48a21d
42 *
43 * Note that if string length is odd, null will be returned
44 */
45StringHashToUint8Array = function (str) {
46 if (str.length % 2 != 0) {
47 return null;
48 }
49
50 var buf = new Uint8Array (str.length / 2);
51
52 for (var i = 0; i < str.length; i+=2) {
53 value = parseInt (str.substring (i, i+2), 16);
54 buf[i/2] = value;
55 }
56
57 return buf;
58};
Alexander Afanasyevf7c7cde2013-03-02 00:01:32 -080059
60imgFullPath = function (imgName) {
61 return "images/" + imgName + ".png";
62}
63
64fileExtension = function (fileName) {
65 defaultExtension = "file";
66 knownExtensions = ["ai", "aiff", "bib", "bz2", "c", "chm", "conf", "cpp", "css", "csv", "deb", "divx", "doc", "file", "gif", "gz", "hlp", "htm", "html", "iso", "jpeg", "jpg", "js", "mov", "mp3", "mpg", "odc", "odf", "odg", "odi", "odp", "ods", "odt", "ogg", "pdf", "pgp", "php", "pl", "png", "ppt", "pptx", "ps", "py", "ram", "rar", "rb", "rm", "rpm", "rtf", "sql", "swf", "sxc", "sxd", "sxi", "sxw", "tar", "tex", "tgz", "txt", "vcf", "wav", "wma", "wmv", "xls", "xml", "xpi", "xvid", "zip"];
67
68 extStart = fileName.lastIndexOf('.');
69 if (extStart < 0) {
70 return imgFullPath (defaultExtension);
71 }
72
73 extension = fileName.substr (extStart+1);
74 // return imgFullPath (extension);
75 if ($.inArray(extension, knownExtensions) >= 0) {
76 return imgFullPath (extension);
77 }
78 else {
79 return imgFullPath (defaultExtension);
80 }
81};
82
83
84openHistoryForItem = function (fileName) {
85 url = new HistoryClosure (null).base_url ("fileHistory")
86 url += "&item=" + encodeURIComponent (encodeURIComponent (fileName));
87 document.location = url;
88};
Alexander Afanasyev4c17b482013-03-02 01:32:35 -080089
Alexander Afanasyev1663a412013-03-02 13:52:00 -080090// No need anymore (displaying the whole data set at once)
Alexander Afanasyev4c17b482013-03-02 01:32:35 -080091
Alexander Afanasyev1663a412013-03-02 13:52:00 -080092// displayContent = function (newcontent, more, baseUrl) {
Alexander Afanasyev4c17b482013-03-02 01:32:35 -080093
Alexander Afanasyev1663a412013-03-02 13:52:00 -080094// // if (!PARAMS.offset || PARAMS.offset==0)
95// // {
96// $("#content").fadeOut ("fast", function () {
97// $(this).replaceWith (newcontent);
98// $("#content").fadeIn ("fast");
99// });
Alexander Afanasyev4c17b482013-03-02 01:32:35 -0800100
Alexander Afanasyev1663a412013-03-02 13:52:00 -0800101// $("#content-nav").fadeOut ("fast", function () {
102// $("#content-nav a").hide ();
Alexander Afanasyev4c17b482013-03-02 01:32:35 -0800103
Alexander Afanasyev1663a412013-03-02 13:52:00 -0800104// if (PARAMS.offset !== undefined || more !== undefined) {
105// $("#content-nav").fadeIn ("fast");
Alexander Afanasyev4c17b482013-03-02 01:32:35 -0800106
Alexander Afanasyev1663a412013-03-02 13:52:00 -0800107// if (more !== undefined) {
108// $("#get-more").show ();
Alexander Afanasyev4c17b482013-03-02 01:32:35 -0800109
Alexander Afanasyev1663a412013-03-02 13:52:00 -0800110// $("#get-more").unbind ('click').click (function () {
111// url = baseUrl;
112// url += "&offset="+more;
Alexander Afanasyev4c17b482013-03-02 01:32:35 -0800113
Alexander Afanasyev1663a412013-03-02 13:52:00 -0800114// document.location = url;
115// });
116// }
117// if (PARAMS.offset > 0) {
118// $("#get-less").show ();
Alexander Afanasyev4c17b482013-03-02 01:32:35 -0800119
Alexander Afanasyev1663a412013-03-02 13:52:00 -0800120// $("#get-less").unbind ('click').click (function () {
121// url = baseUrl;
122// if (PARAMS.offset > 1) {
123// url += "&offset="+(PARAMS.offset - 1);
124// }
Alexander Afanasyev4c17b482013-03-02 01:32:35 -0800125
Alexander Afanasyev1663a412013-03-02 13:52:00 -0800126// document.location = url;
127// });
128// }
129// }
130// });
131// // }
132// // else {
133// // tbody.children ().each (function (index, row) {
134// // $("#history-list-actions").append (row);
135// // });
136// // }
137// };
Alexander Afanasyev4c17b482013-03-02 01:32:35 -0800138
139function custom_alert (output_msg, title_msg)
140{
141 if (!title_msg)
142 title_msg = 'Alert';
143
144 if (!output_msg)
145 output_msg = 'No Message to Display';
146
147 $("<div></div>").html(output_msg).dialog({
148 title: title_msg,
149 resizable: false,
150 modal: true,
151 buttons: {
152 "Ok": function()
153 {
154 $( this ).dialog( "close" );
155 }
156 }
157 });
158}