Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
phpMyAdmin /
js /
jqplot /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
jqplot.barRenderer.js
34.05
KB
-rwxrwxr-x
jqplot.byteFormatter.js
1.21
KB
-rwxrwxr-x
jqplot.canvasAxisLabelRenderer.js
7.96
KB
-rwxrwxr-x
jqplot.canvasTextRenderer.js
23.8
KB
-rwxrwxr-x
jqplot.categoryAxisRenderer.js
27.9
KB
-rwxrwxr-x
jqplot.cursor.js
45.02
KB
-rwxrwxr-x
jqplot.dateAxisRenderer.js
29.63
KB
-rwxrwxr-x
jqplot.highlighter.js
20.86
KB
-rwxrwxr-x
jqplot.pieRenderer.js
36.66
KB
-rwxrwxr-x
jqplot.pointLabels.js
14.25
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jqplot.byteFormatter.js
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * jqplot formatter for byte values * * @package phpMyAdmin */ (function($) { "use strict"; var formatByte = function (val, index) { var units = [ PMA_messages.strB, PMA_messages.strKiB, PMA_messages.strMiB, PMA_messages.strGiB, PMA_messages.strTiB, PMA_messages.strPiB, PMA_messages.strEiB ]; while (val >= 1024 && index <= 6) { val /= 1024; index++; } var format = '%.1f'; if (Math.floor(val) === val) { format = '%.0f'; } return $.jqplot.sprintf( format + ' ' + units[index], val ); }; /** * The index indicates what unit the incoming data will be in. * 0 for bytes, 1 for kilobytes and so on... */ $.jqplot.byteFormatter = function (index) { index = index || 0; return function (format, val) { if (typeof val === 'number') { val = parseFloat(val) || 0; return formatByte(val, index); } else { return String(val); } }; }; })(jQuery);
Close