Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
apps /
files_versions /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
filesplugin.js
673
B
-rw-r--r--
2018-04-19 18:15
versioncollection.js
1.96
KB
-rw-r--r--
2018-04-19 18:15
versionmodel.js
1.72
KB
-rw-r--r--
2018-04-19 18:15
versionstabview.js
6.84
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
/* * Copyright (c) 2015 * * This file is licensed under the Affero General Public License version 3 * or later. * * See the COPYING-README file. * */ (function() { OCA.Versions = OCA.Versions || {}; /** * @namespace */ OCA.Versions.Util = { /** * Initialize the versions plugin. * * @param {OCA.Files.FileList} fileList file list to be extended */ attach: function(fileList) { if (fileList.id === 'trashbin' || fileList.id === 'files.public') { return; } fileList.registerTabView(new OCA.Versions.VersionsTabView('versionsTabView', {order: -10})); } }; })(); OC.Plugins.register('OCA.Files.FileList', OCA.Versions.Util);