Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
webedi.bdcloud.fr /
core /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
blockUI.js
2.98
KB
-rw-r--r--
2020-04-18 15:05
dst.js
6.06
KB
-rw-r--r--
2020-04-18 15:05
editinplace.js
12.56
KB
-rw-r--r--
2020-04-18 15:05
index.html
0
B
-rw-r--r--
2020-04-18 15:05
lib_foot.js.php
8.63
KB
-rw-r--r--
2020-07-06 22:27
lib_gravatar.js.php
6.32
KB
-rw-r--r--
2020-05-12 15:31
lib_head.js.php
37.39
KB
-rw-r--r--
2020-06-03 13:58
lib_notification.js.php
5.88
KB
-rw-r--r--
2020-05-12 15:31
lib_photosresize.js
1.53
KB
-rw-r--r--
2020-04-18 15:05
lib_rare.js
1.32
KB
-rw-r--r--
2020-04-18 15:05
listview.js
5.68
KB
-rw-r--r--
2020-04-18 15:05
timepicker.js.php
2.57
KB
-rw-r--r--
2020-05-12 15:31
timesheet.js
9.53
KB
-rw-r--r--
2020-05-12 15:31
Save
Rename
// Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net> // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // or see https://www.gnu.org/ // // \file htdocs/core/js/lib_rare.js // \brief File that include javascript functions not frequently used (included if option use_javascript activated) // // in [-]HH:MM format... // won't yet work with non-even tzs function fetchTimezone() { var localclock = new Date(), // returns negative offset from GMT in minutes tzRaw = localclock.getTimezoneOffset(), tzHour = Math.floor(Math.abs(tzRaw) / 60), tzMin = Math.abs(tzRaw) % 60; return ((tzRaw >= 0) ? "-" : "") + ((tzHour < 10) ? "0" : "") + tzHour + ":" + ((tzMin < 10) ? "0" : "") + tzMin; }