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() { /** * @memberof OCA.Versions */ var VersionModel = OC.Backbone.Model.extend({ /** * Restores the original file to this revision */ revert: function(options) { options = options ? _.clone(options) : {}; var model = this; var file = this.getFullPath(); var revision = this.get('timestamp'); $.ajax({ type: 'GET', url: OC.generateUrl('/apps/files_versions/ajax/rollbackVersion.php'), dataType: 'json', data: { file: file, revision: revision }, success: function(response) { if (response.status === 'error') { if (options.error) { options.error.call(options.context, model, response, options); } model.trigger('error', model, response, options); } else { if (options.success) { options.success.call(options.context, model, response, options); } model.trigger('revert', model, response, options); } } }); }, getFullPath: function() { return this.get('fullPath'); }, getPreviewUrl: function() { var url = OC.generateUrl('/apps/files_versions/preview'); var params = { file: this.get('fullPath'), version: this.get('timestamp') }; return url + '?' + OC.buildQueryString(params); }, getDownloadUrl: function() { var url = OC.generateUrl('/apps/files_versions/download.php'); var params = { file: this.get('fullPath'), revision: this.get('timestamp') }; return url + '?' + OC.buildQueryString(params); } }); OCA.Versions = OCA.Versions || {}; OCA.Versions.VersionModel = VersionModel; })();