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 /
comments /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
activitytabviewplugin.js
1.46
KB
-rw-r--r--
2018-04-19 18:15
app.js
293
B
-rw-r--r--
2018-04-19 18:15
commentcollection.js
3.58
KB
-rw-r--r--
2018-04-19 18:15
commentmodel.js
2.01
KB
-rw-r--r--
2018-04-19 18:15
commentstabview.js
12.76
KB
-rw-r--r--
2018-04-19 18:15
commentsummarymodel.js
1.34
KB
-rw-r--r--
2018-04-19 18:15
filesplugin.js
3.47
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
/* * Copyright (c) 2016 * * This file is licensed under the Affero General Public License version 3 * or later. * * See the COPYING-README file. * */ (function(OC, OCA) { _.extend(OC.Files.Client, { PROPERTY_READMARKER: '{' + OC.Files.Client.NS_OWNCLOUD + '}readMarker' }); /** * @class OCA.Comments.CommentSummaryModel * @classdesc * * Model containing summary information related to comments * like the read marker. * */ var CommentSummaryModel = OC.Backbone.Model.extend( /** @lends OCA.Comments.CommentSummaryModel.prototype */ { sync: OC.Backbone.davSync, /** * Object type * * @type string */ _objectType: 'files', /** * Object id * * @type string */ _objectId: null, davProperties: { 'readMarker': OC.Files.Client.PROPERTY_READMARKER }, /** * Initializes the summary model * * @param {string} [options.objectType] object type * @param {string} [options.objectId] object id */ initialize: function(attrs, options) { options = options || {}; if (options.objectType) { this._objectType = options.objectType; } }, url: function() { return OC.linkToRemote('dav') + '/comments/' + encodeURIComponent(this._objectType) + '/' + encodeURIComponent(this.id) + '/'; } }); OCA.Comments.CommentSummaryModel = CommentSummaryModel; })(OC, OCA);