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 /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
templates
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
app.js
8.69
KB
-rw-r--r--
2018-04-19 18:15
breadcrumb.js
7.03
KB
-rw-r--r--
2018-04-19 18:15
detailfileinfoview.js
981
B
-rw-r--r--
2018-04-19 18:15
detailsview.js
6.81
KB
-rw-r--r--
2018-04-19 18:15
detailtabview.js
2.07
KB
-rw-r--r--
2018-04-19 18:15
favoritesfilelist.js
2.62
KB
-rw-r--r--
2018-04-19 18:15
favoritesplugin.js
3.33
KB
-rw-r--r--
2018-04-19 18:15
file-upload.js
35.51
KB
-rw-r--r--
2018-04-19 18:15
fileactions.js
22.4
KB
-rw-r--r--
2018-04-19 18:15
fileactionsmenu.js
3.72
KB
-rw-r--r--
2018-04-19 18:15
fileinfomodel.js
3.11
KB
-rw-r--r--
2018-04-19 18:15
filelist.js
87.21
KB
-rw-r--r--
2018-04-19 18:15
files.js
14.21
KB
-rw-r--r--
2018-04-19 18:15
filesummary.js
8.19
KB
-rw-r--r--
2018-04-19 18:15
jquery-visibility.js
2.49
KB
-rw-r--r--
2018-04-19 18:15
jquery.fileupload.js
62.27
KB
-rw-r--r--
2018-04-19 18:15
keyboardshortcuts.js
4.65
KB
-rw-r--r--
2018-04-19 18:15
mainfileinfodetailview.js
8.1
KB
-rw-r--r--
2018-04-19 18:15
navigation.js
2.93
KB
-rw-r--r--
2018-04-19 18:15
newfilemenu.js
6.51
KB
-rw-r--r--
2018-04-19 18:15
search.js
5.63
KB
-rw-r--r--
2018-04-19 18:15
tagsplugin.js
7.04
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() { /** * @class OCA.Files.DetailTabView * @classdesc * * Base class for tab views to display file information. * */ var DetailTabView = OC.Backbone.View.extend({ tag: 'div', className: 'tab', /** * Tab label */ _label: null, _template: null, initialize: function(options) { options = options || {}; if (!this.id) { this.id = 'detailTabView' + DetailTabView._TAB_COUNT; DetailTabView._TAB_COUNT++; } if (options.order) { this.order = options.order || 0; } }, /** * Returns the tab label * * @return {String} label */ getLabel: function() { return 'Tab ' + this.id; }, /** * returns the jQuery object for HTML output * * @returns {jQuery} */ get$: function() { return this.$el; }, /** * Renders this details view * * @abstract */ render: function() { // to be implemented in subclass // FIXME: code is only for testing this.$el.html('<div>Hello ' + this.id + '</div>'); }, /** * Sets the file info to be displayed in the view * * @param {OCA.Files.FileInfoModel} fileInfo file info to set */ setFileInfo: function(fileInfo) { if (this.model !== fileInfo) { this.model = fileInfo; this.render(); } }, /** * Returns the file info. * * @return {OCA.Files.FileInfoModel} file info */ getFileInfo: function() { return this.model; }, /** * Load the next page of results */ nextPage: function() { // load the next page, if applicable }, /** * Returns whether the current tab is able to display * the given file info, for example based on mime type. * * @param {OCA.Files.FileInfoModel} fileInfo file info model * @return {bool} whether to display this tab */ canDisplay: function(fileInfo) { return true; } }); DetailTabView._TAB_COUNT = 0; OCA.Files = OCA.Files || {}; OCA.Files.DetailTabView = DetailTabView; })();