mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Typing corrections
Signed-off-by: Louis Chemineau <louis@chmn.me>
This commit is contained in:
parent
7484abb6c0
commit
d92cbf5149
149 changed files with 370 additions and 352 deletions
|
|
@ -19,7 +19,7 @@
|
|||
* @param {String} share.owner owner name
|
||||
* @param {String} share.name name of the shared folder
|
||||
* @param {String} share.token authentication token
|
||||
* @param {bool} passwordProtected true if the share is password protected
|
||||
* @param {boolean} passwordProtected true if the share is password protected
|
||||
* @param {Function} callback the callback
|
||||
*/
|
||||
OCA.Sharing.showAddExternalDialog = function(share, passwordProtected, callback) {
|
||||
|
|
|
|||
|
|
@ -187,7 +187,7 @@
|
|||
* they have initialized themselves. Therefore the files list needs to call this
|
||||
* method manually
|
||||
*
|
||||
* @param {OCA.Files.FileList} newFileList
|
||||
* @param {OCA.Files.FileList} newFileList -
|
||||
*/
|
||||
updateCurrentFileList: function(newFileList) {
|
||||
this.currentFileList = newFileList;
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@
|
|||
* Returns the full URL to the given directory
|
||||
*
|
||||
* @param {Object.<String, String>} part crumb data as map
|
||||
* @param {int} index crumb index
|
||||
* @param {number} index crumb index
|
||||
* @return full URL
|
||||
*/
|
||||
getCrumbUrl: function(part, index) {
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@
|
|||
* 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
|
||||
* @return {boolean} whether to display this tab
|
||||
*/
|
||||
canDisplay: function(fileInfo) {
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -163,7 +163,7 @@ OC.FileUpload.prototype = {
|
|||
/**
|
||||
* Returns conflict resolution mode.
|
||||
*
|
||||
* @return {int} conflict mode
|
||||
* @return {number} conflict mode
|
||||
*/
|
||||
getConflictMode: function() {
|
||||
return this._conflictMode || OC.FileUpload.CONFLICT_MODE_DETECT;
|
||||
|
|
@ -173,7 +173,7 @@ OC.FileUpload.prototype = {
|
|||
* Set conflict resolution mode.
|
||||
* See CONFLICT_MODE_* constants.
|
||||
*
|
||||
* @param {int} mode conflict mode
|
||||
* @param {number} mode conflict mode
|
||||
*/
|
||||
setConflictMode: function(mode) {
|
||||
this._conflictMode = mode;
|
||||
|
|
@ -383,7 +383,7 @@ OC.FileUpload.prototype = {
|
|||
/**
|
||||
* Returns the status code from the response
|
||||
*
|
||||
* @return {int} status code
|
||||
* @return {number} status code
|
||||
*/
|
||||
getResponseStatus: function() {
|
||||
if (this.uploader.isXHRUpload()) {
|
||||
|
|
@ -515,7 +515,7 @@ OC.Uploader.prototype = _.extend({
|
|||
/**
|
||||
* Returns whether an XHR upload will be used
|
||||
*
|
||||
* @return {bool} true if XHR upload will be used,
|
||||
* @return {boolean} true if XHR upload will be used,
|
||||
* false for iframe upload
|
||||
*/
|
||||
isXHRUpload: function () {
|
||||
|
|
@ -656,7 +656,7 @@ OC.Uploader.prototype = _.extend({
|
|||
/**
|
||||
* Returns an upload by id
|
||||
*
|
||||
* @param {int} data uploadId
|
||||
* @param {number} data uploadId
|
||||
* @return {OC.FileUpload} file upload
|
||||
*/
|
||||
getUpload: function(data) {
|
||||
|
|
@ -860,7 +860,7 @@ OC.Uploader.prototype = _.extend({
|
|||
* Returns whether the given file is known to be a received shared file
|
||||
*
|
||||
* @param {Object} file file
|
||||
* @return {bool} true if the file is a shared file
|
||||
* @return {boolean} true if the file is a shared file
|
||||
*/
|
||||
_isReceivedSharedFile: function(file) {
|
||||
if (!window.FileList) {
|
||||
|
|
|
|||
|
|
@ -191,7 +191,7 @@
|
|||
*
|
||||
* @param {string} mime mime type
|
||||
* @param {string} type "dir" or "file"
|
||||
* @param {int} permissions permissions
|
||||
* @param {number} permissions permissions
|
||||
* @param {string} filename filename
|
||||
*
|
||||
* @return {Object.<string,OCA.Files.FileActions~actionHandler>} map of action name to action spec
|
||||
|
|
@ -210,7 +210,7 @@
|
|||
*
|
||||
* @param {string} mime mime type
|
||||
* @param {string} type "dir" or "file"
|
||||
* @param {int} permissions permissions
|
||||
* @param {number} permissions permissions
|
||||
* @param {string} filename filename
|
||||
*
|
||||
* @return {Array.<OCA.Files.FileAction>} array of action specs
|
||||
|
|
@ -262,7 +262,7 @@
|
|||
*
|
||||
* @param {string} mime mime type
|
||||
* @param {string} type "dir" or "file"
|
||||
* @param {int} permissions permissions
|
||||
* @param {number} permissions permissions
|
||||
*
|
||||
* @return {OCA.Files.FileActions~actionHandler} action handler
|
||||
*
|
||||
|
|
@ -294,7 +294,7 @@
|
|||
*
|
||||
* @param {string} mime mime type
|
||||
* @param {string} type "dir" or "file"
|
||||
* @param {int} permissions permissions
|
||||
* @param {number} permissions permissions
|
||||
*
|
||||
* @return {OCA.Files.FileActions~actionSpec} action spec
|
||||
* @since 8.2
|
||||
|
|
@ -797,7 +797,7 @@
|
|||
* Defaults to the name given in name property
|
||||
* @property {String} mime mime type
|
||||
* @property {String} filename filename
|
||||
* @property {int} permissions permissions
|
||||
* @property {number} permissions permissions
|
||||
* @property {(Function|String)} icon icon path to the icon or function that returns it (deprecated, use iconClass instead)
|
||||
* @property {(String|OCA.Files.FileActions~iconClassFunction)} iconClass class name of the icon (recommended for theming)
|
||||
* @property {OCA.Files.FileActions~renderActionFunction} [render] optional rendering function
|
||||
|
|
|
|||
|
|
@ -15,14 +15,14 @@
|
|||
* @classdesc File information
|
||||
*
|
||||
* @param {Object} attributes file data
|
||||
* @param {int} attributes.id file id
|
||||
* @param {number} attributes.id file id
|
||||
* @param {string} attributes.name file name
|
||||
* @param {string} attributes.path path leading to the file,
|
||||
* without the file name and with a leading slash
|
||||
* @param {int} attributes.size size
|
||||
* @param {number} attributes.size size
|
||||
* @param {string} attributes.mimetype mime type
|
||||
* @param {string} attributes.icon icon URL
|
||||
* @param {int} attributes.permissions permissions
|
||||
* @param {number} attributes.permissions permissions
|
||||
* @param {Date} attributes.mtime modification time
|
||||
* @param {string} attributes.etag etag
|
||||
* @param {string} mountType mount type
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
* Number of files per page
|
||||
* Always show a minimum of 1
|
||||
*
|
||||
* @return {int} page size
|
||||
* @return {number} page size
|
||||
*/
|
||||
pageSize: function() {
|
||||
var isGridView = this.$showGridView.is(':checked');
|
||||
|
|
@ -803,7 +803,7 @@
|
|||
* the internal selection cache.
|
||||
*
|
||||
* @param {Object} $tr single file row element
|
||||
* @param {bool} state true to select, false to deselect
|
||||
* @param {boolean} state true to select, false to deselect
|
||||
*/
|
||||
_selectFileEl: function($tr, state) {
|
||||
var $checkbox = $tr.find('td.selection>.selectCheckBox');
|
||||
|
|
@ -1958,7 +1958,7 @@
|
|||
*
|
||||
* @param {OC.Files.FileInfo} fileData map of file attributes
|
||||
* @param {Object} [options] map of attributes
|
||||
* @param {int} [options.index] index at which to insert the element
|
||||
* @param {number} [options.index] index at which to insert the element
|
||||
* @param {boolean} [options.updateSummary] true to update the summary
|
||||
* after adding (default), false otherwise. Defaults to true.
|
||||
* @param {boolean} [options.animate] true to animate the thumbnail image after load
|
||||
|
|
@ -2234,7 +2234,7 @@
|
|||
if (status === 401) {
|
||||
// We are not authentificated, so reload the page so that we get
|
||||
// redirected to the login page while saving the current url.
|
||||
location.reload();
|
||||
location.reload();
|
||||
}
|
||||
|
||||
// Firewall Blocked request?
|
||||
|
|
@ -2348,8 +2348,8 @@
|
|||
/**
|
||||
* Generates a preview URL based on the URL space.
|
||||
* @param urlSpec attributes for the URL
|
||||
* @param {int} urlSpec.x width
|
||||
* @param {int} urlSpec.y height
|
||||
* @param {number} urlSpec.x width
|
||||
* @param {number} urlSpec.y height
|
||||
* @param {String} urlSpec.file path to the file
|
||||
* @return preview URL
|
||||
*/
|
||||
|
|
@ -3166,7 +3166,7 @@
|
|||
*
|
||||
* @param {string} file file name
|
||||
*
|
||||
* @return {bool} true if the file exists in the list, false otherwise
|
||||
* @return {boolean} true if the file exists in the list, false otherwise
|
||||
*/
|
||||
inList:function(file) {
|
||||
return this.findFile(file);
|
||||
|
|
@ -3176,7 +3176,7 @@
|
|||
* Shows busy state on a given file row or multiple
|
||||
*
|
||||
* @param {string|Array.<string>} files file name or array of file names
|
||||
* @param {bool} [busy=true] busy state, true for busy, false to remove busy state
|
||||
* @param {boolean} [busy=true] busy state, true for busy, false to remove busy state
|
||||
*
|
||||
* @since 8.2
|
||||
*/
|
||||
|
|
@ -3952,7 +3952,7 @@
|
|||
*
|
||||
* @param {OC.Files.FileInfo} fileInfo1 file info
|
||||
* @param {OC.Files.FileInfo} fileInfo2 file info
|
||||
* @return {int} -1 if the first file must appear before the second one,
|
||||
* @return {number} -1 if the first file must appear before the second one,
|
||||
* 0 if they are identify, 1 otherwise.
|
||||
*/
|
||||
name: function(fileInfo1, fileInfo2) {
|
||||
|
|
@ -3969,7 +3969,7 @@
|
|||
*
|
||||
* @param {OC.Files.FileInfo} fileInfo1 file info
|
||||
* @param {OC.Files.FileInfo} fileInfo2 file info
|
||||
* @return {int} -1 if the first file must appear before the second one,
|
||||
* @return {number} -1 if the first file must appear before the second one,
|
||||
* 0 if they are identify, 1 otherwise.
|
||||
*/
|
||||
size: function(fileInfo1, fileInfo2) {
|
||||
|
|
@ -3980,7 +3980,7 @@
|
|||
*
|
||||
* @param {OC.Files.FileInfo} fileInfo1 file info
|
||||
* @param {OC.Files.FileInfo} fileInfo2 file info
|
||||
* @return {int} -1 if the first file must appear before the second one,
|
||||
* @return {number} -1 if the first file must appear before the second one,
|
||||
* 0 if they are identify, 1 otherwise.
|
||||
*/
|
||||
mtime: function(fileInfo1, fileInfo2) {
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@
|
|||
* Returns the download URL of the given file(s)
|
||||
* @param {string} filename string or array of file names to download
|
||||
* @param {string} [dir] optional directory in which the file name is, defaults to the current directory
|
||||
* @param {bool} [isDir=false] whether the given filename is a directory and might need a special URL
|
||||
* @param {boolean} [isDir=false] whether the given filename is a directory and might need a special URL
|
||||
*/
|
||||
getDownloadUrl: function(filename, dir, isDir) {
|
||||
if (!_.isArray(filename) && !isDir) {
|
||||
|
|
@ -271,8 +271,8 @@
|
|||
/**
|
||||
* Generates a preview URL based on the URL space.
|
||||
* @param urlSpec attributes for the URL
|
||||
* @param {int} urlSpec.x width
|
||||
* @param {int} urlSpec.y height
|
||||
* @param {number} urlSpec.x width
|
||||
* @param {number} urlSpec.y height
|
||||
* @param {String} urlSpec.file path to the file
|
||||
* @return preview URL
|
||||
* @deprecated used OCA.Files.FileList.generatePreviewUrl instead
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ export default class Setting {
|
|||
*
|
||||
* @since 19.0.0
|
||||
* @param {string} name the name of this setting
|
||||
* @param {object} component the component
|
||||
* @param {Function} component.el function that returns an unmounted dom element to be added
|
||||
* @param {Function} [component.open] callback for when setting is added
|
||||
* @param {Function} [component.close] callback for when setting is closed
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ function highlightInput($input) {
|
|||
* Initialize select2 plugin on the given elements
|
||||
*
|
||||
* @param {Array<Object>} array of jQuery elements
|
||||
* @param {int} userListLimit page size for result list
|
||||
* @param {number} userListLimit page size for result list
|
||||
*/
|
||||
function addSelect2 ($elements, userListLimit) {
|
||||
var escapeHTML = function (text) {
|
||||
|
|
@ -571,7 +571,7 @@ MountOptionsDropdown.prototype = {
|
|||
*
|
||||
* @param {Object} $el DOM object containing the list
|
||||
* @param {Object} [options]
|
||||
* @param {int} [options.userListLimit] page size in applicable users dropdown
|
||||
* @param {number} [options.userListLimit] page size in applicable users dropdown
|
||||
*/
|
||||
var MountConfigListView = function($el, options) {
|
||||
this.initialize($el, options);
|
||||
|
|
@ -642,7 +642,7 @@ MountConfigListView.prototype = _.extend({
|
|||
/**
|
||||
* @param {Object} $el DOM object containing the list
|
||||
* @param {Object} [options]
|
||||
* @param {int} [options.userListLimit] page size in applicable users dropdown
|
||||
* @param {number} [options.userListLimit] page size in applicable users dropdown
|
||||
*/
|
||||
initialize: function($el, options) {
|
||||
var self = this;
|
||||
|
|
@ -1227,7 +1227,7 @@ MountConfigListView.prototype = _.extend({
|
|||
* Update status display
|
||||
*
|
||||
* @param {jQuery} $tr
|
||||
* @param {int} status
|
||||
* @param {number} status
|
||||
* @param {string} message
|
||||
*/
|
||||
updateStatus: function($tr, status, message) {
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
/** @type {Function} **/
|
||||
_template: undefined,
|
||||
|
||||
/** @type {bool} */
|
||||
/** @type {boolean} */
|
||||
_uploading: false,
|
||||
|
||||
addFileToUpload: function(e, data) {
|
||||
|
|
|
|||
|
|
@ -374,7 +374,7 @@
|
|||
* Converts the OCS API share response data to a file info
|
||||
* list
|
||||
* @param {Array} data OCS API share array
|
||||
* @param {bool} sharedWithUser
|
||||
* @param {boolean} sharedWithUser
|
||||
* @returns {Array.<OCA.Sharing.SharedFileInfo>} array of shared file info
|
||||
*/
|
||||
_makeFilesFromShares: function(data, sharedWithUser) {
|
||||
|
|
@ -511,10 +511,10 @@
|
|||
*
|
||||
* @typedef {Object} OCA.Sharing.ShareInfo
|
||||
*
|
||||
* @property {int} id share ID
|
||||
* @property {int} type share type
|
||||
* @property {number} id share ID
|
||||
* @property {number} type share type
|
||||
* @property {String} target share target, either user name or group name
|
||||
* @property {int} stime share timestamp in milliseconds
|
||||
* @property {number} stime share timestamp in milliseconds
|
||||
* @property {String} [targetDisplayName] display name of the recipient
|
||||
* (only when shared with others)
|
||||
* @property {String} [targetShareWithId] id of the recipient
|
||||
|
|
@ -536,7 +536,7 @@
|
|||
*
|
||||
* @property {Array.<OCA.Sharing.ShareInfo>} shares array of shares for
|
||||
* this file
|
||||
* @property {int} mtime most recent share time (if multiple shares)
|
||||
* @property {number} mtime most recent share time (if multiple shares)
|
||||
* @property {String} shareOwner name of the share owner
|
||||
* @property {Array.<String>} recipients name of the first 4 recipients
|
||||
* (this is mostly for display purposes)
|
||||
|
|
|
|||
|
|
@ -373,7 +373,7 @@ export default {
|
|||
},
|
||||
|
||||
/**
|
||||
* @return {bool}
|
||||
* @return {boolean}
|
||||
*/
|
||||
hasStatus() {
|
||||
if (this.share.type !== this.SHARE_TYPES.SHARE_TYPE_USER) {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@
|
|||
|
||||
// eslint-disable-next-line import/no-unresolved, node/no-missing-import
|
||||
import PQueue from 'p-queue'
|
||||
// import PQueue from 'p-queue/dist/index'
|
||||
import debounce from 'debounce'
|
||||
|
||||
import Share from '../models/Share'
|
||||
|
|
@ -200,7 +199,6 @@ export default {
|
|||
/**
|
||||
* When the note change, we trim, save and dispatch
|
||||
*
|
||||
* @param {string} note the note
|
||||
*/
|
||||
onNoteSubmit() {
|
||||
if (this.share.newNote) {
|
||||
|
|
@ -231,7 +229,7 @@ export default {
|
|||
/**
|
||||
* Send an update of the share to the queue
|
||||
*
|
||||
* @param {string} propertyNames the properties to sync
|
||||
* @param {Array<string>} propertyNames the properties to sync
|
||||
*/
|
||||
queueUpdate(...propertyNames) {
|
||||
if (propertyNames.length === 0) {
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ export default class Share {
|
|||
/**
|
||||
* get the share id
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Share
|
||||
*/
|
||||
|
|
@ -76,7 +76,7 @@ export default class Share {
|
|||
/**
|
||||
* Get the share type
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Share
|
||||
*/
|
||||
|
|
@ -88,7 +88,7 @@ export default class Share {
|
|||
* Get the share permissions
|
||||
* See OC.PERMISSION_* variables
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Share
|
||||
*/
|
||||
|
|
@ -100,7 +100,7 @@ export default class Share {
|
|||
* Set the share permissions
|
||||
* See OC.PERMISSION_* variables
|
||||
*
|
||||
* @param {int} permissions valid permission, See OC.PERMISSION_* variables
|
||||
* @param {number} permissions valid permission, See OC.PERMISSION_* variables
|
||||
* @memberof Share
|
||||
*/
|
||||
set permissions(permissions) {
|
||||
|
|
@ -219,7 +219,7 @@ export default class Share {
|
|||
/**
|
||||
* Get the share creation timestamp
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Share
|
||||
*/
|
||||
|
|
@ -417,7 +417,7 @@ export default class Share {
|
|||
/**
|
||||
* Get the shared item id
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Share
|
||||
*/
|
||||
|
|
@ -441,7 +441,7 @@ export default class Share {
|
|||
/**
|
||||
* Get the parent folder id if any
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Share
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@ export default class Config {
|
|||
/**
|
||||
* Get the default days to link shares expiration
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Config
|
||||
*/
|
||||
|
|
@ -230,7 +230,7 @@ export default class Config {
|
|||
/**
|
||||
* Get the default days to internal shares expiration
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Config
|
||||
*/
|
||||
|
|
@ -241,7 +241,7 @@ export default class Config {
|
|||
/**
|
||||
* Get the default days to remote shares expiration
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Config
|
||||
*/
|
||||
|
|
@ -294,7 +294,7 @@ export default class Config {
|
|||
/**
|
||||
* Get the maximum results of a share search
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Config
|
||||
*/
|
||||
|
|
@ -306,7 +306,7 @@ export default class Config {
|
|||
* Get the minimal string length
|
||||
* to initiate a share search
|
||||
*
|
||||
* @return {int}
|
||||
* @return {number}
|
||||
* @readonly
|
||||
* @memberof Config
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -215,7 +215,7 @@ import Template from './templates/template.handlebars';
|
|||
* Returns true for files, false for folders.
|
||||
*
|
||||
* @param {FileInfo} fileInfo fileInfo
|
||||
* @return {bool} true for files, false for folders
|
||||
* @return {boolean} true for files, false for folders
|
||||
*/
|
||||
canDisplay(fileInfo) {
|
||||
if (!fileInfo) {
|
||||
|
|
|
|||
|
|
@ -15,9 +15,9 @@
|
|||
* @constructs FederationScopeMenu
|
||||
* @memberof OC.Settings
|
||||
* @param {object} options
|
||||
* @param {bool} [options.showFederatedScope=false] whether show the
|
||||
* @param {boolean} [options.showFederatedScope=false] whether show the
|
||||
* "v2-federated" scope or not
|
||||
* @param {bool} [options.showPublishedScope=false] whether show the
|
||||
* @param {boolean} [options.showPublishedScope=false] whether show the
|
||||
* "v2-published" scope or not
|
||||
*/
|
||||
var FederationSettingsView = OC.Backbone.View.extend({
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ export default {
|
|||
* Generate avatar url
|
||||
*
|
||||
* @param {string} user The user name
|
||||
* @param {int} size Size integer, default 32
|
||||
* @param {number} size Size integer, default 32
|
||||
* @return {string}
|
||||
*/
|
||||
generateAvatar(user, size = 32) {
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import Vuex, { Store } from 'vuex'
|
||||
|
||||
Vue.use(Vuex)
|
||||
|
||||
|
|
@ -44,7 +44,7 @@ const mutations = {
|
|||
},
|
||||
}
|
||||
|
||||
export default new Vuex.Store({
|
||||
export default new Store({
|
||||
strict: process.env.NODE_ENV !== 'production',
|
||||
state,
|
||||
mutations,
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import Vuex, { Store } from 'vuex'
|
||||
import users from './users'
|
||||
import apps from './apps'
|
||||
import settings from './settings'
|
||||
|
|
@ -44,7 +44,7 @@ const mutations = {
|
|||
},
|
||||
}
|
||||
|
||||
export default new Vuex.Store({
|
||||
export default new Store({
|
||||
modules: {
|
||||
users,
|
||||
apps,
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ const actions = {
|
|||
* @param {string} options.app Application name
|
||||
* @param {boolean} options.key Config key
|
||||
* @param {boolean} options.value Value to set
|
||||
* @returns{Promise}
|
||||
* @return {Promise}
|
||||
*/
|
||||
setAppConfig(context, { app, key, value }) {
|
||||
return api.requireAdmin().then((response) => {
|
||||
|
|
|
|||
|
|
@ -207,8 +207,8 @@ const actions = {
|
|||
*
|
||||
* @param {object} context store context
|
||||
* @param {object} options destructuring object
|
||||
* @param {int} options.offset List offset to request
|
||||
* @param {int} options.limit List number to return from offset
|
||||
* @param {number} options.offset List offset to request
|
||||
* @param {number} options.limit List number to return from offset
|
||||
* @param {string} options.search Search amongst users
|
||||
* @param {string} options.group Get users from group
|
||||
* @return {Promise}
|
||||
|
|
@ -276,8 +276,8 @@ const actions = {
|
|||
*
|
||||
* @param {object} context store context
|
||||
* @param {object} options destructuring object
|
||||
* @param {int} options.offset List offset to request
|
||||
* @param {int} options.limit List number to return from offset
|
||||
* @param {number} options.offset List offset to request
|
||||
* @param {number} options.limit List number to return from offset
|
||||
* @param options.search
|
||||
* @return {Promise}
|
||||
*/
|
||||
|
|
@ -299,8 +299,8 @@ const actions = {
|
|||
*
|
||||
* @param {object} context store context
|
||||
* @param {object} options destructuring object
|
||||
* @param {int} options.offset List offset to request
|
||||
* @param {int} options.limit List number to return from offset
|
||||
* @param {number} options.offset List offset to request
|
||||
* @param {number} options.limit List number to return from offset
|
||||
* @param options.groupid
|
||||
* @return {Promise}
|
||||
*/
|
||||
|
|
@ -462,6 +462,8 @@ const actions = {
|
|||
* Add a user
|
||||
*
|
||||
* @param {object} context store context
|
||||
* @param {Function} context.commit
|
||||
* @param {Function} context.dispatch
|
||||
* @param {object} options destructuring object
|
||||
* @param {string} options.userid User id
|
||||
* @param {string} options.password User password
|
||||
|
|
@ -470,8 +472,7 @@ const actions = {
|
|||
* @param {string} options.groups User groups
|
||||
* @param {string} options.subadmin User subadmin groups
|
||||
* @param {string} options.quota User email
|
||||
* @param context.commit
|
||||
* @param context.dispatch
|
||||
* @param {string} options.language User language
|
||||
* @param options.language
|
||||
* @return {Promise}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@
|
|||
/**
|
||||
* Prepare the form for create/update
|
||||
*
|
||||
* @param {int} tagId
|
||||
* @param {number} tagId
|
||||
*/
|
||||
_prepareForm: function (tagId) {
|
||||
if (tagId > 0) {
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
id: 'systemTagsInfoView',
|
||||
|
||||
/**
|
||||
* @type OC.SystemTags.SystemTagsInputField
|
||||
* @type {OC.SystemTags.SystemTagsInputField}
|
||||
*/
|
||||
_inputView: null,
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import Vuex, { Store } from 'vuex'
|
||||
import { generateCodes } from './service/BackupCodesService'
|
||||
|
||||
Vue.use(Vuex)
|
||||
|
|
@ -63,7 +63,7 @@ const actions = {
|
|||
},
|
||||
}
|
||||
|
||||
export default new Vuex.Store({
|
||||
export default new Store({
|
||||
strict: process.env.NODE_ENV !== 'production',
|
||||
state,
|
||||
mutations,
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ OCA = OCA || {};
|
|||
bjQuiButtonClass: 'ui-button',
|
||||
|
||||
/**
|
||||
* @property {bool} - indicates whether a filter mode toggle operation
|
||||
* @property {boolean} - indicates whether a filter mode toggle operation
|
||||
* is still in progress
|
||||
*/
|
||||
isToggling: false,
|
||||
|
|
|
|||
|
|
@ -21,13 +21,13 @@
|
|||
*/
|
||||
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import Vuex, { Store } from 'vuex'
|
||||
import predefinedStatuses from './predefinedStatuses'
|
||||
import userStatus from './userStatus'
|
||||
|
||||
Vue.use(Vuex)
|
||||
|
||||
export default new Vuex.Store({
|
||||
export default new Store({
|
||||
modules: {
|
||||
predefinedStatuses,
|
||||
userStatus,
|
||||
|
|
|
|||
|
|
@ -97,7 +97,6 @@ const getLocation = async () => {
|
|||
/**
|
||||
* Fetches the weather forecast
|
||||
*
|
||||
* @param {string} address The location
|
||||
* @return {Promise<object>}
|
||||
*/
|
||||
const fetchForecast = async () => {
|
||||
|
|
@ -110,7 +109,6 @@ const fetchForecast = async () => {
|
|||
/**
|
||||
* Fetches the location favorites
|
||||
*
|
||||
* @param {string} address The location
|
||||
* @return {Promise<object>}
|
||||
*/
|
||||
const getFavorites = async () => {
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
*/
|
||||
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import Vuex, { Store } from 'vuex'
|
||||
import axios from '@nextcloud/axios'
|
||||
import { getApiUrl } from './helpers/api'
|
||||
import confirmPassword from '@nextcloud/password-confirmation'
|
||||
|
|
@ -33,7 +33,7 @@ import { loadState } from '@nextcloud/initial-state'
|
|||
|
||||
Vue.use(Vuex)
|
||||
|
||||
const store = new Vuex.Store({
|
||||
const store = new Store({
|
||||
state: {
|
||||
rules: [],
|
||||
scope: loadState('workflowengine', 'scope'),
|
||||
|
|
@ -161,8 +161,7 @@ const store = new Vuex.Store({
|
|||
* Return all available checker plugins for a given entity class
|
||||
*
|
||||
* @param {object} state the store state
|
||||
* @param {object} entity the entity class
|
||||
* @return {Array} the available plugins
|
||||
* @return {Function} the available plugins
|
||||
*/
|
||||
getChecksForEntity(state) {
|
||||
return (entity) => {
|
||||
|
|
|
|||
|
|
@ -37,8 +37,8 @@ import ShippedChecks from './components/Checks'
|
|||
* The component should handle the v-model directive properly,
|
||||
* so it needs a value property to receive data and emit an input
|
||||
* event once the data has changed
|
||||
* @property {callable} placeholder - Return a placeholder of no custom component is used
|
||||
* @property {callable} validate - validate a check if no custom component is used
|
||||
* @property {Function} placeholder - Return a placeholder of no custom component is used
|
||||
* @property {Function} validate - validate a check if no custom component is used
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ describe('OC.Files.Client tests', function() {
|
|||
* status code
|
||||
*
|
||||
* @param {Promise} promise promise
|
||||
* @param {int} status status to test
|
||||
* @param {number} status status to test
|
||||
*/
|
||||
function respondAndCheckStatus(promise, status) {
|
||||
var successHandler = sinon.stub();
|
||||
|
|
@ -79,7 +79,7 @@ describe('OC.Files.Client tests', function() {
|
|||
* status code
|
||||
*
|
||||
* @param {Promise} promise promise object
|
||||
* @param {int} status error status to test
|
||||
* @param {number} status error status to test
|
||||
*/
|
||||
function respondAndCheckError(promise, status) {
|
||||
var successHandler = sinon.stub();
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ const isAdmin = !!window._oc_isadmin
|
|||
/**
|
||||
* Returns whether the current user is an administrator
|
||||
*
|
||||
* @return {bool} true if the user is an admin, false otherwise
|
||||
* @return {boolean} true if the user is an admin, false otherwise
|
||||
* @since 9.0.0
|
||||
*/
|
||||
export const isUserAdmin = () => isAdmin
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ import { getCapabilities as realGetCapabilities } from '@nextcloud/capabilities'
|
|||
*
|
||||
* @return {Array} capabilities
|
||||
*
|
||||
* @since 14.0
|
||||
* @since 14.0.0
|
||||
*/
|
||||
export const getCapabilities = () => {
|
||||
console.warn('OC.getCapabilities is deprecated and will be removed in Nextcloud 21. See @nextcloud/capabilities')
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ export const getProtocol = () => window.location.protocol.split(':')[0]
|
|||
*
|
||||
* @return {string} host
|
||||
*
|
||||
* @since 8.2
|
||||
* @since 8.2.0
|
||||
* @deprecated 17.0.0 use window.location.host directly
|
||||
*/
|
||||
export const getHost = () => window.location.host
|
||||
|
|
@ -44,7 +44,7 @@ export const getHost = () => window.location.host
|
|||
* The hostname is always stripped of the port
|
||||
*
|
||||
* @return {string} hostname
|
||||
* @since 9.0
|
||||
* @since 9.0.0
|
||||
* @deprecated 17.0.0 use window.location.hostname directly
|
||||
*/
|
||||
export const getHostName = () => window.location.hostname
|
||||
|
|
@ -52,9 +52,9 @@ export const getHostName = () => window.location.hostname
|
|||
/**
|
||||
* Returns the port number used to access this Nextcloud instance
|
||||
*
|
||||
* @return {int} port number
|
||||
* @return {number} port number
|
||||
*
|
||||
* @since 8.2
|
||||
* @since 8.2.0
|
||||
* @deprecated 17.0.0 use window.location.port directly
|
||||
*/
|
||||
export const getPort = () => window.location.port
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ export default {
|
|||
/**
|
||||
* Currently logged in user or null if none
|
||||
*
|
||||
* @type String
|
||||
* @type {string}
|
||||
* @deprecated use `getCurrentUser` from https://www.npmjs.com/package/@nextcloud/auth
|
||||
*/
|
||||
currentUser,
|
||||
|
|
@ -307,7 +307,7 @@ export default {
|
|||
* Relative path to Nextcloud root.
|
||||
* For example: "/nextcloud"
|
||||
*
|
||||
* @type string
|
||||
* @type {string}
|
||||
*
|
||||
* @deprecated 19.0.0 use `getRootUrl` from https://www.npmjs.com/package/@nextcloud/router
|
||||
* @see OC#getRootPath
|
||||
|
|
|
|||
|
|
@ -106,8 +106,8 @@ const L10n = {
|
|||
* @param {object} [vars] map of placeholder key to value
|
||||
* @param {number} [count] number to replace %n with
|
||||
* @param {Array} [options] options array
|
||||
* @param {bool} [options.escape=true] enable/disable auto escape of placeholders (by default enabled)
|
||||
* @param {bool} [options.sanitize=true] enable/disable sanitization (by default enabled)
|
||||
* @param {boolean} [options.escape=true] enable/disable auto escape of placeholders (by default enabled)
|
||||
* @param {boolean} [options.sanitize=true] enable/disable sanitization (by default enabled)
|
||||
* @return {string}
|
||||
*/
|
||||
translate(app, text, vars, count, options) {
|
||||
|
|
@ -159,7 +159,7 @@ const L10n = {
|
|||
* @param {number} count number to determine whether to use singular or plural
|
||||
* @param {object} [vars] map of placeholder key to value
|
||||
* @param {Array} [options] options array
|
||||
* @param {bool} [options.escape=true] enable/disable auto escape of placeholders (by default enabled)
|
||||
* @param {boolean} [options.escape=true] enable/disable auto escape of placeholders (by default enabled)
|
||||
* @return {string} Translated string
|
||||
*/
|
||||
translatePlural(app, textSingular, textPlural, count, vars, options) {
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ export let currentMenuToggle = null
|
|||
* @param {jQuery} $menuEl the menu container element
|
||||
* @param {Function | undefined} toggle callback invoked everytime the menu is opened
|
||||
* @param {boolean} headerMenu is this a top right header menu?
|
||||
* @return {undefined}
|
||||
* @return {void}
|
||||
*/
|
||||
export const registerMenu = function($toggle, $menuEl, toggle, headerMenu) {
|
||||
$menuEl.addClass('menu')
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ export default {
|
|||
* @param {string} html Message to display
|
||||
* @param {object} [options] options
|
||||
* @param {string} [options.type] notification type
|
||||
* @param {int} [options.timeout=0] timeout value, defaults to 0 (permanent)
|
||||
* @param {number} [options.timeout=0] timeout value, defaults to 0 (permanent)
|
||||
* @return {jQuery} jQuery element for notification row
|
||||
* @deprecated 17.0.0 use the `@nextcloud/dialogs` package
|
||||
*/
|
||||
|
|
@ -116,7 +116,7 @@ export default {
|
|||
* @param {string} text Message to display
|
||||
* @param {object} [options] options
|
||||
* @param {string} [options.type] notification type
|
||||
* @param {int} [options.timeout=0] timeout value, defaults to 0 (permanent)
|
||||
* @param {number} [options.timeout=0] timeout value, defaults to 0 (permanent)
|
||||
* @return {jQuery} jQuery element for notification row
|
||||
* @deprecated 17.0.0 use the `@nextcloud/dialogs` package
|
||||
*/
|
||||
|
|
@ -159,7 +159,7 @@ export default {
|
|||
*
|
||||
* @param {string} text Message to show
|
||||
* @param {Array} [options] options array
|
||||
* @param {int} [options.timeout=7] timeout in seconds, if this is 0 it will show the message permanently
|
||||
* @param {number} [options.timeout=7] timeout in seconds, if this is 0 it will show the message permanently
|
||||
* @param {boolean} [options.isHTML=false] an indicator for HTML notifications (true) or text (false)
|
||||
* @param {string} [options.type] notification type
|
||||
* @return {JQuery<any>} the toast element
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
export default {
|
||||
|
||||
/**
|
||||
* @type Array.<OC.Plugin>
|
||||
* @type {Array.<OC.Plugin>}
|
||||
*/
|
||||
_plugins: {},
|
||||
|
||||
|
|
|
|||
|
|
@ -148,7 +148,7 @@ export default {
|
|||
/**
|
||||
* Returns the width of a generic browser scrollbar
|
||||
*
|
||||
* @return {int} width of scrollbar
|
||||
* @return {number} width of scrollbar
|
||||
*/
|
||||
getScrollBarWidth() {
|
||||
if (this._scrollBarWidth) {
|
||||
|
|
@ -230,7 +230,7 @@ export default {
|
|||
* Calls the callback in a given interval until it returns true
|
||||
*
|
||||
* @param {Function} callback function to call on success
|
||||
* @param {integer} interval in milliseconds
|
||||
* @param {number} interval in milliseconds
|
||||
*/
|
||||
waitFor(callback, interval) {
|
||||
const internalCallback = function() {
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import escapeHTML from 'escape-html'
|
|||
|
||||
/**
|
||||
* @typedef TypeDefinition
|
||||
* @function {callback} action This action is executed to let the user select a resource
|
||||
* @function {Function} action This action is executed to let the user select a resource
|
||||
* @param {string} icon Contains the icon css class for the type
|
||||
* @function Object() { [native code] }
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ import $ from 'jquery'
|
|||
/*
|
||||
* Detects links:
|
||||
* Either the http(s) protocol is given or two strings, basically limited to ascii with the last
|
||||
* word being at least one digit long,
|
||||
* word being at least one digit long,
|
||||
* followed by at least another character
|
||||
*
|
||||
* The downside: anything not ascii is excluded. Not sure how common it is in areas using different
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ import escapeHTML from 'escape-html'
|
|||
*
|
||||
* @param {Object} options
|
||||
* @param {String} options.host host name
|
||||
* @param {int} [options.port] port
|
||||
* @param {number} [options.port] port
|
||||
* @param {boolean} [options.useHTTPS] whether to use https
|
||||
* @param {String} [options.root] root path
|
||||
* @param {String} [options.userName] user name
|
||||
|
|
@ -449,7 +449,7 @@ import escapeHTML from 'escape-html'
|
|||
/**
|
||||
* Returns whether the given status code means success
|
||||
*
|
||||
* @param {int} status status code
|
||||
* @param {number} status status code
|
||||
*
|
||||
* @returns true if status code is between 200 and 299 included
|
||||
*/
|
||||
|
|
@ -546,7 +546,7 @@ import escapeHTML from 'escape-html'
|
|||
*
|
||||
* @param {Object} filter filter criteria
|
||||
* @param {Object} [filter.systemTagIds] list of system tag ids to filter by
|
||||
* @param {bool} [filter.favorite] set it to filter by favorites
|
||||
* @param {boolean} [filter.favorite] set it to filter by favorites
|
||||
* @param {Object} [options] options
|
||||
* @param {Array} [options.properties] list of Webdav properties to retrieve
|
||||
*
|
||||
|
|
@ -698,7 +698,7 @@ import escapeHTML from 'escape-html'
|
|||
* @param {String} body file body
|
||||
* @param {Object} [options]
|
||||
* @param {String} [options.contentType='text/plain'] content type
|
||||
* @param {bool} [options.overwrite=true] whether to overwrite an existing file
|
||||
* @param {boolean} [options.overwrite=true] whether to overwrite an existing file
|
||||
*
|
||||
* @returns {Promise}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ const warnIfNotTesting = function() {
|
|||
*
|
||||
* @param {Function} func the library to deprecate
|
||||
* @param {string} funcName the name of the library
|
||||
* @param {Int} version the version this gets removed
|
||||
* @param {number} version the version this gets removed
|
||||
* @return {Function}
|
||||
*/
|
||||
const deprecate = (func, funcName, version) => {
|
||||
|
|
|
|||
2
core/src/jquery/exists.js
vendored
2
core/src/jquery/exists.js
vendored
|
|
@ -27,7 +27,7 @@ import $ from 'jquery'
|
|||
* check if an element exists.
|
||||
* allows you to write if ($('#myid').exists()) to increase readability
|
||||
*
|
||||
* @link http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery
|
||||
* @see {@link http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery}
|
||||
* @return {boolean}
|
||||
*/
|
||||
$.fn.exists = function() {
|
||||
|
|
|
|||
2
core/src/jquery/filterattr.js
vendored
2
core/src/jquery/filterattr.js
vendored
|
|
@ -28,7 +28,7 @@ import $ from 'jquery'
|
|||
*
|
||||
* @param {string} attrName attribute name
|
||||
* @param {string} attrValue attribute value
|
||||
* @return {Void}
|
||||
* @return {void}
|
||||
*/
|
||||
$.fn.filterAttr = function(attrName, attrValue) {
|
||||
return this.filter(function() {
|
||||
|
|
|
|||
16
core/src/jquery/octemplate.js
vendored
16
core/src/jquery/octemplate.js
vendored
|
|
@ -65,14 +65,14 @@ import escapeHTML from 'escape-html'
|
|||
* var contacts = // fetched in some ajax call
|
||||
*
|
||||
* $.each(contacts, function(idx, contact) {
|
||||
* $contactList.append(
|
||||
* $tmpl.octemplate({
|
||||
* id: contact.getId(),
|
||||
* name: contact.getDisplayName(),
|
||||
* email: contact.getPreferredEmail(),
|
||||
* phone: contact.getPreferredPhone(),
|
||||
* });
|
||||
* );
|
||||
* $contactList.append(
|
||||
* $tmpl.octemplate({
|
||||
* id: contact.getId(),
|
||||
* name: contact.getDisplayName(),
|
||||
* email: contact.getPreferredEmail(),
|
||||
* phone: contact.getPreferredPhone(),
|
||||
* });
|
||||
* );
|
||||
* });
|
||||
*/
|
||||
/**
|
||||
|
|
|
|||
6
core/src/jquery/selectrange.js
vendored
6
core/src/jquery/selectrange.js
vendored
|
|
@ -27,9 +27,9 @@ import $ from 'jquery'
|
|||
* select a range in an input field
|
||||
*
|
||||
* @link http://stackoverflow.com/questions/499126/jquery-set-cursor-position-in-text-area
|
||||
* @param {int} start start selection from
|
||||
* @param {int} end number of char from start
|
||||
* @return {Void}
|
||||
* @param {number} start start selection from
|
||||
* @param {number} end number of char from start
|
||||
* @return {void}
|
||||
*/
|
||||
$.fn.selectRange = function(start, end) {
|
||||
return this.each(function() {
|
||||
|
|
|
|||
27
core/src/jquery/showpassword.js
vendored
27
core/src/jquery/showpassword.js
vendored
|
|
@ -23,20 +23,19 @@
|
|||
|
||||
import $ from 'jquery'
|
||||
|
||||
/*
|
||||
* @name Show Password
|
||||
* @description
|
||||
* @version 1.3
|
||||
* @requires Jquery 1.5
|
||||
*
|
||||
* @author Jan Jarfalk
|
||||
* @author-email jan.jarfalk@unwrongest.com
|
||||
* @author-website http://www.unwrongest.com
|
||||
*
|
||||
* @special-thanks Michel Gratton
|
||||
*
|
||||
* @licens MIT License - http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
/**
|
||||
* @name Show Password
|
||||
* @description
|
||||
* @version 1.3.0
|
||||
* @requires Jquery 1.5
|
||||
*
|
||||
* @author Jan Jarfalk <jan.jarfalk@unwrongest.com>
|
||||
* author-website http://www.unwrongest.com
|
||||
*
|
||||
* special-thanks Michel Gratton
|
||||
*
|
||||
* @license MIT
|
||||
*/
|
||||
$.fn.extend({
|
||||
showPassword(c) {
|
||||
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ export async function getTypes() {
|
|||
* @param {object} options destructuring object
|
||||
* @param {string} options.type the type to search
|
||||
* @param {string} options.query the search
|
||||
* @param {int|string|undefined} options.cursor the offset for paginated searches
|
||||
* @param {number|string|undefined} options.cursor the offset for paginated searches
|
||||
* @return {object} {request: Promise, cancel: Promise}
|
||||
*/
|
||||
export function search({ type, query, cursor }) {
|
||||
|
|
|
|||
|
|
@ -57,10 +57,10 @@ import templateSelection from './templates/selection.handlebars'
|
|||
*
|
||||
* @param {Object} [options]
|
||||
* @param {string} [options.objectType=files] object type for which tags are assigned to
|
||||
* @param {bool} [options.multiple=false] whether to allow selecting multiple tags
|
||||
* @param {bool} [options.allowActions=true] whether tags can be renamed/delete within the dropdown
|
||||
* @param {bool} [options.allowCreate=true] whether new tags can be created
|
||||
* @param {bool} [options.isAdmin=true] whether the user is an administrator
|
||||
* @param {boolean} [options.multiple=false] whether to allow selecting multiple tags
|
||||
* @param {boolean} [options.allowActions=true] whether tags can be renamed/delete within the dropdown
|
||||
* @param {boolean} [options.allowCreate=true] whether new tags can be created
|
||||
* @param {boolean} [options.isAdmin=true] whether the user is an administrator
|
||||
* @param {Function} options.initSelection function to convert selection to data
|
||||
*/
|
||||
initialize: function(options) {
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ import { generateRemoteUrl } from '@nextcloud/router'
|
|||
/**
|
||||
* Sets the object id to filter by or null for all.
|
||||
*
|
||||
* @param {int} objectId file id or null
|
||||
* @param {number} objectId file id or null
|
||||
*/
|
||||
setObjectId(objectId) {
|
||||
this._objectId = objectId
|
||||
|
|
@ -74,7 +74,7 @@ import { generateRemoteUrl } from '@nextcloud/router'
|
|||
/**
|
||||
* Sets the object type to filter by or null for all.
|
||||
*
|
||||
* @param {int} objectType file id or null
|
||||
* @param {number} objectType file id or null
|
||||
*/
|
||||
setObjectType(objectType) {
|
||||
this._objectType = objectType
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/accessibility-accessibility.js.map
vendored
2
dist/accessibility-accessibility.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -4,7 +4,7 @@
|
|||
* @author Jan C. Borchardt <hey@jancborchardt.net>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/accessibility-accessibilityoca.js.map
vendored
2
dist/accessibility-accessibilityoca.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/comments-comments-app.js.LICENSE.txt
vendored
4
dist/comments-comments-app.js.LICENSE.txt
vendored
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/comments-comments-app.js.map
vendored
2
dist/comments-comments-app.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/comments-comments-tab.js.LICENSE.txt
vendored
2
dist/comments-comments-tab.js.LICENSE.txt
vendored
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/comments-comments-tab.js.map
vendored
2
dist/comments-comments-tab.js.map
vendored
|
|
@ -1 +1 @@
|
|||
{"version":3,"sources":["webpack:///nextcloud/apps/comments/src/comments-tab.js"],"names":["TabInstance","commentTab","OCA","Files","Sidebar","Tab","id","name","t","icon","mount","el","fileInfo","context","$destroy","Comments","View","parent","update","$mount","destroy","scrollBottomReached","onScrollBottomReached","window","addEventListener","registerTab"],"mappings":";qIAuBA,IAAIA,EAAc,KACZC,EAAa,IAAIC,IAAIC,MAAMC,QAAQC,IAAI,CAC5CC,GAAI,WACJC,KAAMC,EAAE,WAAY,YACpBC,KAAM,eAEAC,MALsC,SAKhCC,EAAIC,EAAUC,GAAS,O,EAAA,6HAC9Bb,GACHA,EAAYc,WAEbd,EAAc,IAAIE,IAAIa,SAASC,KAAK,QAAS,CAE5CC,OAAQJ,IANyB,SAS5Bb,EAAYkB,OAAON,EAASN,IATA,OAUlCN,EAAYmB,OAAOR,GAVe,0C,wLAYnCO,OAjB4C,SAiBrCN,GACNZ,EAAYkB,OAAON,EAASN,KAE7Bc,QApB4C,WAqB3CpB,EAAYc,WACZd,EAAc,MAEfqB,oBAxB4C,WAyB3CrB,EAAYsB,2BAIdC,OAAOC,iBAAiB,oBAAoB,WACvCtB,IAAIC,OAASD,IAAIC,MAAMC,SAC1BF,IAAIC,MAAMC,QAAQqB,YAAYxB,M","file":"comments-comments-tab.js?v=badfdc180a9f8cfb2cfa","sourcesContent":["/**\n * @copyright Copyright (c) 2020 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n// Init Comments tab component\nlet TabInstance = null\nconst commentTab = new OCA.Files.Sidebar.Tab({\n\tid: 'comments',\n\tname: t('comments', 'Comments'),\n\ticon: 'icon-comment',\n\n\tasync mount(el, fileInfo, context) {\n\t\tif (TabInstance) {\n\t\t\tTabInstance.$destroy()\n\t\t}\n\t\tTabInstance = new OCA.Comments.View('files', {\n\t\t\t// Better integration with vue parent component\n\t\t\tparent: context,\n\t\t})\n\t\t// Only mount after we have all the info we need\n\t\tawait TabInstance.update(fileInfo.id)\n\t\tTabInstance.$mount(el)\n\t},\n\tupdate(fileInfo) {\n\t\tTabInstance.update(fileInfo.id)\n\t},\n\tdestroy() {\n\t\tTabInstance.$destroy()\n\t\tTabInstance = null\n\t},\n\tscrollBottomReached() {\n\t\tTabInstance.onScrollBottomReached()\n\t},\n})\n\nwindow.addEventListener('DOMContentLoaded', function() {\n\tif (OCA.Files && OCA.Files.Sidebar) {\n\t\tOCA.Files.Sidebar.registerTab(commentTab)\n\t}\n})\n"],"sourceRoot":""}
|
||||
{"version":3,"sources":["webpack:///nextcloud/apps/comments/src/comments-tab.js"],"names":["TabInstance","commentTab","OCA","Files","Sidebar","Tab","id","name","t","icon","mount","el","fileInfo","context","$destroy","Comments","View","parent","update","$mount","destroy","scrollBottomReached","onScrollBottomReached","window","addEventListener","registerTab"],"mappings":";qIAuBA,IAAIA,EAAc,KACZC,EAAa,IAAIC,IAAIC,MAAMC,QAAQC,IAAI,CAC5CC,GAAI,WACJC,KAAMC,EAAE,WAAY,YACpBC,KAAM,eAEAC,MALsC,SAKhCC,EAAIC,EAAUC,GAAS,O,EAAA,6HAC9Bb,GACHA,EAAYc,WAEbd,EAAc,IAAIE,IAAIa,SAASC,KAAK,QAAS,CAE5CC,OAAQJ,IANyB,SAS5Bb,EAAYkB,OAAON,EAASN,IATA,OAUlCN,EAAYmB,OAAOR,GAVe,0C,wLAYnCO,OAjB4C,SAiBrCN,GACNZ,EAAYkB,OAAON,EAASN,KAE7Bc,QApB4C,WAqB3CpB,EAAYc,WACZd,EAAc,MAEfqB,oBAxB4C,WAyB3CrB,EAAYsB,2BAIdC,OAAOC,iBAAiB,oBAAoB,WACvCtB,IAAIC,OAASD,IAAIC,MAAMC,SAC1BF,IAAIC,MAAMC,QAAQqB,YAAYxB,M","file":"comments-comments-tab.js?v=badfdc180a9f8cfb2cfa","sourcesContent":["/**\n * @copyright Copyright (c) 2020 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n// Init Comments tab component\nlet TabInstance = null\nconst commentTab = new OCA.Files.Sidebar.Tab({\n\tid: 'comments',\n\tname: t('comments', 'Comments'),\n\ticon: 'icon-comment',\n\n\tasync mount(el, fileInfo, context) {\n\t\tif (TabInstance) {\n\t\t\tTabInstance.$destroy()\n\t\t}\n\t\tTabInstance = new OCA.Comments.View('files', {\n\t\t\t// Better integration with vue parent component\n\t\t\tparent: context,\n\t\t})\n\t\t// Only mount after we have all the info we need\n\t\tawait TabInstance.update(fileInfo.id)\n\t\tTabInstance.$mount(el)\n\t},\n\tupdate(fileInfo) {\n\t\tTabInstance.update(fileInfo.id)\n\t},\n\tdestroy() {\n\t\tTabInstance.$destroy()\n\t\tTabInstance = null\n\t},\n\tscrollBottomReached() {\n\t\tTabInstance.onScrollBottomReached()\n\t},\n})\n\nwindow.addEventListener('DOMContentLoaded', function() {\n\tif (OCA.Files && OCA.Files.Sidebar) {\n\t\tOCA.Files.Sidebar.registerTab(commentTab)\n\t}\n})\n"],"sourceRoot":""}
|
||||
4
dist/comments-comments.js.LICENSE.txt
vendored
4
dist/comments-comments.js.LICENSE.txt
vendored
|
|
@ -4,7 +4,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/comments-comments.js.map
vendored
2
dist/comments-comments.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/core-common.js
vendored
4
dist/core-common.js
vendored
File diff suppressed because one or more lines are too long
2
dist/core-common.js.map
vendored
2
dist/core-common.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/core-files_client.js.LICENSE.txt
vendored
2
dist/core-files_client.js.LICENSE.txt
vendored
|
|
@ -13,7 +13,7 @@
|
|||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
* @author Vinicius Cubas Brand <vinicius@eita.org.br>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/core-files_client.js.map
vendored
2
dist/core-files_client.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/core-files_fileinfo.js.LICENSE.txt
vendored
2
dist/core-files_fileinfo.js.LICENSE.txt
vendored
|
|
@ -6,7 +6,7 @@
|
|||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/core-files_fileinfo.js.map
vendored
2
dist/core-files_fileinfo.js.map
vendored
|
|
@ -1 +1 @@
|
|||
{"version":3,"sources":["webpack:///nextcloud/core/src/files/fileinfo.js"],"names":["OC","FileInfo","data","self","this","_","each","value","key","isFunction","isUndefined","id","parseInt","path","type","mimetype","prototype","name","icon","permissions","mtime","etag","mountType","hasPreview","sharePermissions","quotaAvailableBytes","Files"],"mappings":";CA0BA,SAAUA,GAUT,IAAMC,EAAW,SAASC,GACzB,IAAMC,EAAOC,KACbC,EAAEC,KAAKJ,GAAM,SAASK,EAAOC,GACvBH,EAAEI,WAAWF,KACjBJ,EAAKK,GAAOD,MAITF,EAAEK,YAAYN,KAAKO,MACvBP,KAAKO,GAAKC,SAASV,EAAKS,GAAI,KAI7BP,KAAKS,KAAOX,EAAKW,MAAQ,GAEP,QAAdT,KAAKU,KACRV,KAAKW,SAAW,uBAEhBX,KAAKW,SAAWX,KAAKW,UAAY,2BAG7BX,KAAKU,OACa,yBAAlBV,KAAKW,SACRX,KAAKU,KAAO,MAEZV,KAAKU,KAAO,SAQfb,EAASe,UAAY,CAMpBL,GAAI,KAOJM,KAAM,KAQNJ,KAAM,KAONE,SAAU,KASVG,KAAM,KAQNJ,KAAM,KAQNK,YAAa,KAObC,MAAO,KAOPC,KAAM,KASNC,UAAW,KAKXC,YAAY,EAKZC,iBAAkB,KAElBC,qBAAsB,GAGlBzB,EAAG0B,QACP1B,EAAG0B,MAAQ,IAEZ1B,EAAG0B,MAAMzB,SAAWA,EAzIrB,CA0IGD","file":"core-files_fileinfo.js?v=d9cc5e8823977a1e870b","sourcesContent":["/**\n * Copyright (c) 2015\n *\n * @author Julius Härtl <jus@bitgrid.net>\n * @author Robin Appelman <robin@icewind.nl>\n * @author Roeland Jago Douma <roeland@famdouma.nl>\n * @author Vincent Petry <vincent@nextcloud.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n/* eslint-disable */\n(function(OC) {\n\n\t/**\n\t * @class OC.Files.FileInfo\n\t * @classdesc File information\n\t *\n\t * @param {Object} data file data, see attributes for details\n\t *\n\t * @since 8.2\n\t */\n\tconst FileInfo = function(data) {\n\t\tconst self = this\n\t\t_.each(data, function(value, key) {\n\t\t\tif (!_.isFunction(value)) {\n\t\t\t\tself[key] = value\n\t\t\t}\n\t\t})\n\n\t\tif (!_.isUndefined(this.id)) {\n\t\t\tthis.id = parseInt(data.id, 10)\n\t\t}\n\n\t\t// TODO: normalize path\n\t\tthis.path = data.path || ''\n\n\t\tif (this.type === 'dir') {\n\t\t\tthis.mimetype = 'httpd/unix-directory'\n\t\t} else {\n\t\t\tthis.mimetype = this.mimetype || 'application/octet-stream'\n\t\t}\n\n\t\tif (!this.type) {\n\t\t\tif (this.mimetype === 'httpd/unix-directory') {\n\t\t\t\tthis.type = 'dir'\n\t\t\t} else {\n\t\t\t\tthis.type = 'file'\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * @memberof OC.Files\n\t */\n\tFileInfo.prototype = {\n\t\t/**\n\t\t * File id\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tid: null,\n\n\t\t/**\n\t\t * File name\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tname: null,\n\n\t\t/**\n\t\t * Path leading to the file, without the file name,\n\t\t * and with a leading slash.\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tpath: null,\n\n\t\t/**\n\t\t * Mime type\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tmimetype: null,\n\n\t\t/**\n\t\t * Icon URL.\n\t\t *\n\t\t * Can be used to override the mime type icon.\n\t\t *\n\t\t * @type String\n\t\t */\n\t\ticon: null,\n\n\t\t/**\n\t\t * File type. 'file' for files, 'dir' for directories.\n\t\t *\n\t\t * @type String\n\t\t * @deprecated rely on mimetype instead\n\t\t */\n\t\ttype: null,\n\n\t\t/**\n\t\t * Permissions.\n\t\t *\n\t\t * @see OC#PERMISSION_ALL for permissions\n\t\t * @type int\n\t\t */\n\t\tpermissions: null,\n\n\t\t/**\n\t\t * Modification time\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tmtime: null,\n\n\t\t/**\n\t\t * Etag\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tetag: null,\n\n\t\t/**\n\t\t * Mount type.\n\t\t *\n\t\t * One of null, \"external-root\", \"shared\" or \"shared-root\"\n\t\t *\n\t\t * @type string\n\t\t */\n\t\tmountType: null,\n\n\t\t/**\n\t\t * @type boolean\n\t\t */\n\t\thasPreview: true,\n\n\t\t/**\n\t\t * @type int\n\t\t */\n\t\tsharePermissions: null,\n\n\t\tquotaAvailableBytes: -1,\n\t}\n\n\tif (!OC.Files) {\n\t\tOC.Files = {}\n\t}\n\tOC.Files.FileInfo = FileInfo\n})(OC)\n"],"sourceRoot":""}
|
||||
{"version":3,"sources":["webpack:///nextcloud/core/src/files/fileinfo.js"],"names":["OC","FileInfo","data","self","this","_","each","value","key","isFunction","isUndefined","id","parseInt","path","type","mimetype","prototype","name","icon","permissions","mtime","etag","mountType","hasPreview","sharePermissions","quotaAvailableBytes","Files"],"mappings":";CA0BA,SAAUA,GAUT,IAAMC,EAAW,SAASC,GACzB,IAAMC,EAAOC,KACbC,EAAEC,KAAKJ,GAAM,SAASK,EAAOC,GACvBH,EAAEI,WAAWF,KACjBJ,EAAKK,GAAOD,MAITF,EAAEK,YAAYN,KAAKO,MACvBP,KAAKO,GAAKC,SAASV,EAAKS,GAAI,KAI7BP,KAAKS,KAAOX,EAAKW,MAAQ,GAEP,QAAdT,KAAKU,KACRV,KAAKW,SAAW,uBAEhBX,KAAKW,SAAWX,KAAKW,UAAY,2BAG7BX,KAAKU,OACa,yBAAlBV,KAAKW,SACRX,KAAKU,KAAO,MAEZV,KAAKU,KAAO,SAQfb,EAASe,UAAY,CAMpBL,GAAI,KAOJM,KAAM,KAQNJ,KAAM,KAONE,SAAU,KASVG,KAAM,KAQNJ,KAAM,KAQNK,YAAa,KAObC,MAAO,KAOPC,KAAM,KASNC,UAAW,KAKXC,YAAY,EAKZC,iBAAkB,KAElBC,qBAAsB,GAGlBzB,EAAG0B,QACP1B,EAAG0B,MAAQ,IAEZ1B,EAAG0B,MAAMzB,SAAWA,EAzIrB,CA0IGD","file":"core-files_fileinfo.js?v=d9cc5e8823977a1e870b","sourcesContent":["/**\n * Copyright (c) 2015\n *\n * @author Julius Härtl <jus@bitgrid.net>\n * @author Robin Appelman <robin@icewind.nl>\n * @author Roeland Jago Douma <roeland@famdouma.nl>\n * @author Vincent Petry <vincent@nextcloud.com>\n *\n * @license GPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n/* eslint-disable */\n(function(OC) {\n\n\t/**\n\t * @class OC.Files.FileInfo\n\t * @classdesc File information\n\t *\n\t * @param {Object} data file data, see attributes for details\n\t *\n\t * @since 8.2\n\t */\n\tconst FileInfo = function(data) {\n\t\tconst self = this\n\t\t_.each(data, function(value, key) {\n\t\t\tif (!_.isFunction(value)) {\n\t\t\t\tself[key] = value\n\t\t\t}\n\t\t})\n\n\t\tif (!_.isUndefined(this.id)) {\n\t\t\tthis.id = parseInt(data.id, 10)\n\t\t}\n\n\t\t// TODO: normalize path\n\t\tthis.path = data.path || ''\n\n\t\tif (this.type === 'dir') {\n\t\t\tthis.mimetype = 'httpd/unix-directory'\n\t\t} else {\n\t\t\tthis.mimetype = this.mimetype || 'application/octet-stream'\n\t\t}\n\n\t\tif (!this.type) {\n\t\t\tif (this.mimetype === 'httpd/unix-directory') {\n\t\t\t\tthis.type = 'dir'\n\t\t\t} else {\n\t\t\t\tthis.type = 'file'\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * @memberof OC.Files\n\t */\n\tFileInfo.prototype = {\n\t\t/**\n\t\t * File id\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tid: null,\n\n\t\t/**\n\t\t * File name\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tname: null,\n\n\t\t/**\n\t\t * Path leading to the file, without the file name,\n\t\t * and with a leading slash.\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tpath: null,\n\n\t\t/**\n\t\t * Mime type\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tmimetype: null,\n\n\t\t/**\n\t\t * Icon URL.\n\t\t *\n\t\t * Can be used to override the mime type icon.\n\t\t *\n\t\t * @type String\n\t\t */\n\t\ticon: null,\n\n\t\t/**\n\t\t * File type. 'file' for files, 'dir' for directories.\n\t\t *\n\t\t * @type String\n\t\t * @deprecated rely on mimetype instead\n\t\t */\n\t\ttype: null,\n\n\t\t/**\n\t\t * Permissions.\n\t\t *\n\t\t * @see OC#PERMISSION_ALL for permissions\n\t\t * @type int\n\t\t */\n\t\tpermissions: null,\n\n\t\t/**\n\t\t * Modification time\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tmtime: null,\n\n\t\t/**\n\t\t * Etag\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tetag: null,\n\n\t\t/**\n\t\t * Mount type.\n\t\t *\n\t\t * One of null, \"external-root\", \"shared\" or \"shared-root\"\n\t\t *\n\t\t * @type string\n\t\t */\n\t\tmountType: null,\n\n\t\t/**\n\t\t * @type boolean\n\t\t */\n\t\thasPreview: true,\n\n\t\t/**\n\t\t * @type int\n\t\t */\n\t\tsharePermissions: null,\n\n\t\tquotaAvailableBytes: -1,\n\t}\n\n\tif (!OC.Files) {\n\t\tOC.Files = {}\n\t}\n\tOC.Files.FileInfo = FileInfo\n})(OC)\n"],"sourceRoot":""}
|
||||
35
dist/core-install.js.LICENSE.txt
vendored
35
dist/core-install.js.LICENSE.txt
vendored
|
|
@ -1,25 +1,10 @@
|
|||
/*
|
||||
* @name Show Password
|
||||
* @description
|
||||
* @version 1.3
|
||||
* @requires Jquery 1.5
|
||||
*
|
||||
* @author Jan Jarfalk
|
||||
* @author-email jan.jarfalk@unwrongest.com
|
||||
* @author-website http://www.unwrongest.com
|
||||
*
|
||||
* @special-thanks Michel Gratton
|
||||
*
|
||||
* @licens MIT License - http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
|
||||
/**
|
||||
* @copyright 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
*
|
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -43,7 +28,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -67,7 +52,7 @@
|
|||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
* @author Richard Steinmetz <richard@steinmetz.cloud>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -83,3 +68,17 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name Show Password
|
||||
* @description
|
||||
* @version 1.3.0
|
||||
* @requires Jquery 1.5
|
||||
*
|
||||
* @author Jan Jarfalk <jan.jarfalk@unwrongest.com>
|
||||
* author-website http://www.unwrongest.com
|
||||
*
|
||||
* special-thanks Michel Gratton
|
||||
*
|
||||
* @license MIT
|
||||
*/
|
||||
|
|
|
|||
2
dist/core-install.js.map
vendored
2
dist/core-install.js.map
vendored
File diff suppressed because one or more lines are too long
14
dist/core-login.js.LICENSE.txt
vendored
14
dist/core-login.js.LICENSE.txt
vendored
|
|
@ -4,7 +4,7 @@
|
|||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
* @author Thomas Tanghus <thomas@tanghus.net>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -96,7 +96,7 @@
|
|||
*
|
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
* @author Robin Appelman <robin@icewind.nl>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -146,7 +146,7 @@
|
|||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -176,7 +176,7 @@
|
|||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/core-login.js.map
vendored
2
dist/core-login.js.map
vendored
File diff suppressed because one or more lines are too long
67
dist/core-main.js.LICENSE.txt
vendored
67
dist/core-main.js.LICENSE.txt
vendored
|
|
@ -1,25 +1,10 @@
|
|||
/*
|
||||
* @name Show Password
|
||||
* @description
|
||||
* @version 1.3
|
||||
* @requires Jquery 1.5
|
||||
*
|
||||
* @author Jan Jarfalk
|
||||
* @author-email jan.jarfalk@unwrongest.com
|
||||
* @author-website http://www.unwrongest.com
|
||||
*
|
||||
* @special-thanks Michel Gratton
|
||||
*
|
||||
* @licens MIT License - http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
|
||||
/**
|
||||
* @copyright (c) 2017 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
||||
*
|
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -45,7 +30,7 @@
|
|||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
* @author Sergey Shliakhov <husband.sergey@gmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -70,7 +55,7 @@
|
|||
* @author Joas Schilling <coding@schilljs.com>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -93,7 +78,7 @@
|
|||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -118,7 +103,7 @@
|
|||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -142,7 +127,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -165,7 +150,7 @@
|
|||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -190,7 +175,7 @@
|
|||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -214,7 +199,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -259,7 +244,7 @@
|
|||
* @author Thomas Tanghus <thomas@tanghus.net>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -283,7 +268,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -305,7 +290,7 @@
|
|||
*
|
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -328,7 +313,7 @@
|
|||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -352,7 +337,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -379,7 +364,7 @@
|
|||
* @author Robin Appelman <robin@icewind.nl>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -402,7 +387,7 @@
|
|||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -424,7 +409,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -447,7 +432,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -464,6 +449,20 @@
|
|||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name Show Password
|
||||
* @description
|
||||
* @version 1.3.0
|
||||
* @requires Jquery 1.5
|
||||
*
|
||||
* @author Jan Jarfalk <jan.jarfalk@unwrongest.com>
|
||||
* author-website http://www.unwrongest.com
|
||||
*
|
||||
* special-thanks Michel Gratton
|
||||
*
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/**
|
||||
* Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com>
|
||||
* Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
|
|
@ -477,7 +476,7 @@
|
|||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/core-main.js.map
vendored
2
dist/core-main.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/core-maintenance.js.map
vendored
2
dist/core-maintenance.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/core-recommendedapps.js.LICENSE.txt
vendored
2
dist/core-recommendedapps.js.LICENSE.txt
vendored
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/core-recommendedapps.js.map
vendored
2
dist/core-recommendedapps.js.map
vendored
File diff suppressed because one or more lines are too long
10
dist/core-systemtags.js.LICENSE.txt
vendored
10
dist/core-systemtags.js.LICENSE.txt
vendored
|
|
@ -6,7 +6,7 @@
|
|||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -78,7 +78,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -104,7 +104,7 @@
|
|||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/core-systemtags.js.map
vendored
2
dist/core-systemtags.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/core-unified-search.js.LICENSE.txt
vendored
4
dist/core-unified-search.js.LICENSE.txt
vendored
|
|
@ -6,7 +6,7 @@
|
|||
* @author Joas Schilling <coding@schilljs.com>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/core-unified-search.js.map
vendored
2
dist/core-unified-search.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/dashboard-main.js.LICENSE.txt
vendored
2
dist/dashboard-main.js.LICENSE.txt
vendored
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/dashboard-main.js.map
vendored
2
dist/dashboard-main.js.map
vendored
File diff suppressed because one or more lines are too long
12
dist/files-main.js.LICENSE.txt
vendored
12
dist/files-main.js.LICENSE.txt
vendored
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
*
|
||||
* @author Gary Kim <gary@garykim.dev>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
*
|
||||
* @author Gary Kim <gary@garykim.dev>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
* @author Gary Kim <gary@garykim.dev>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -95,7 +95,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -117,7 +117,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/files-main.js.map
vendored
2
dist/files-main.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/files-personal-settings.js.LICENSE.txt
vendored
2
dist/files-personal-settings.js.LICENSE.txt
vendored
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/files-personal-settings.js.map
vendored
2
dist/files-personal-settings.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/files-sidebar.js.LICENSE.txt
vendored
2
dist/files-sidebar.js.LICENSE.txt
vendored
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/files-sidebar.js.map
vendored
2
dist/files-sidebar.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -5,7 +5,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/files_sharing-additionalScripts.js.map
vendored
2
dist/files_sharing-additionalScripts.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/files_sharing-collaboration.js.map
vendored
2
dist/files_sharing-collaboration.js.map
vendored
|
|
@ -1 +1 @@
|
|||
{"version":3,"sources":["webpack:///nextcloud/apps/files_sharing/src/collaborationresourceshandler.js"],"names":["btoa","OC","requestToken","window","OCP","Collaboration","registerType","action","Promise","resolve","reject","dialogs","filepicker","t","f","Files","getClient","getFileInfo","then","status","fileInfo","id","fail","Error","FILEPICKER_TYPE_CHOOSE","allowDirectoryChooser","typeString","typeIconClass"],"mappings":"AAwBoBA,KAAKC,GAAGC,cAE5BC,OAAOC,IAAIC,cAAcC,aAAa,OAAQ,CAC7CC,OAAQ,WACP,OAAO,IAAIC,SAAQ,SAACC,EAASC,GAC5BT,GAAGU,QAAQC,WAAWC,EAAE,gBAAiB,mBAAmB,SAASC,GACrDb,GAAGc,MAAMC,YACjBC,YAAYH,GAAGI,MAAK,SAACC,EAAQC,GACnCX,EAAQW,EAASC,OACfC,MAAK,WACPZ,EAAO,IAAIa,MAAM,8BAEhB,EAAO,MAAM,EAAOtB,GAAGU,QAAQa,uBAAwB,GAAI,CAAEC,uBAAuB,QAGzFC,WAAYb,EAAE,gBAAiB,kBAC/Bc,cAAe","file":"files_sharing-collaboration.js?v=b736a508139452dd8b55","sourcesContent":["/**\n * @copyright Copyright (c) 2016 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n// eslint-disable-next-line camelcase\n__webpack_nonce__ = btoa(OC.requestToken)\n\nwindow.OCP.Collaboration.registerType('file', {\n\taction: () => {\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tOC.dialogs.filepicker(t('files_sharing', 'Link to a file'), function(f) {\n\t\t\t\tconst client = OC.Files.getClient()\n\t\t\t\tclient.getFileInfo(f).then((status, fileInfo) => {\n\t\t\t\t\tresolve(fileInfo.id)\n\t\t\t\t}).fail(() => {\n\t\t\t\t\treject(new Error('Cannot get fileinfo'))\n\t\t\t\t})\n\t\t\t}, false, null, false, OC.dialogs.FILEPICKER_TYPE_CHOOSE, '', { allowDirectoryChooser: true })\n\t\t})\n\t},\n\ttypeString: t('files_sharing', 'Link to a file'),\n\ttypeIconClass: 'icon-files-dark',\n})\n"],"sourceRoot":""}
|
||||
{"version":3,"sources":["webpack:///nextcloud/apps/files_sharing/src/collaborationresourceshandler.js"],"names":["btoa","OC","requestToken","window","OCP","Collaboration","registerType","action","Promise","resolve","reject","dialogs","filepicker","t","f","Files","getClient","getFileInfo","then","status","fileInfo","id","fail","Error","FILEPICKER_TYPE_CHOOSE","allowDirectoryChooser","typeString","typeIconClass"],"mappings":"AAwBoBA,KAAKC,GAAGC,cAE5BC,OAAOC,IAAIC,cAAcC,aAAa,OAAQ,CAC7CC,OAAQ,WACP,OAAO,IAAIC,SAAQ,SAACC,EAASC,GAC5BT,GAAGU,QAAQC,WAAWC,EAAE,gBAAiB,mBAAmB,SAASC,GACrDb,GAAGc,MAAMC,YACjBC,YAAYH,GAAGI,MAAK,SAACC,EAAQC,GACnCX,EAAQW,EAASC,OACfC,MAAK,WACPZ,EAAO,IAAIa,MAAM,8BAEhB,EAAO,MAAM,EAAOtB,GAAGU,QAAQa,uBAAwB,GAAI,CAAEC,uBAAuB,QAGzFC,WAAYb,EAAE,gBAAiB,kBAC/Bc,cAAe","file":"files_sharing-collaboration.js?v=b736a508139452dd8b55","sourcesContent":["/**\n * @copyright Copyright (c) 2016 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n// eslint-disable-next-line camelcase\n__webpack_nonce__ = btoa(OC.requestToken)\n\nwindow.OCP.Collaboration.registerType('file', {\n\taction: () => {\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tOC.dialogs.filepicker(t('files_sharing', 'Link to a file'), function(f) {\n\t\t\t\tconst client = OC.Files.getClient()\n\t\t\t\tclient.getFileInfo(f).then((status, fileInfo) => {\n\t\t\t\t\tresolve(fileInfo.id)\n\t\t\t\t}).fail(() => {\n\t\t\t\t\treject(new Error('Cannot get fileinfo'))\n\t\t\t\t})\n\t\t\t}, false, null, false, OC.dialogs.FILEPICKER_TYPE_CHOOSE, '', { allowDirectoryChooser: true })\n\t\t})\n\t},\n\ttypeString: t('files_sharing', 'Link to a file'),\n\ttypeIconClass: 'icon-files-dark',\n})\n"],"sourceRoot":""}
|
||||
2
dist/files_sharing-files_sharing.js.map
vendored
2
dist/files_sharing-files_sharing.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/files_sharing-files_sharing_tab.js
vendored
4
dist/files_sharing-files_sharing_tab.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -5,7 +5,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -84,7 +84,7 @@
|
|||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -106,7 +106,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -129,7 +129,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -151,7 +151,7 @@
|
|||
*
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
@ -173,7 +173,7 @@
|
|||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/files_sharing-files_sharing_tab.js.map
vendored
2
dist/files_sharing-files_sharing_tab.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/files_sharing-main.js.LICENSE.txt
vendored
2
dist/files_sharing-main.js.LICENSE.txt
vendored
|
|
@ -4,7 +4,7 @@
|
|||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
* @license GPL-3.0-or-later
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
|
|
|
|||
2
dist/files_sharing-main.js.map
vendored
2
dist/files_sharing-main.js.map
vendored
|
|
@ -1 +1 @@
|
|||
{"version":3,"sources":["webpack:///nextcloud/apps/files_sharing/src/index.js"],"names":["Object","assign","OC","Share","SHARE_TYPE_USER","SHARE_TYPE_GROUP","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","SHARE_TYPE_REMOTE","SHARE_TYPE_CIRCLE","SHARE_TYPE_GUEST","SHARE_TYPE_REMOTE_GROUP","SHARE_TYPE_ROOM","SHARE_TYPE_DECK"],"mappings":";AAwBAA,OAAOC,OAAOC,GAAI,CACjBC,MAAO,CACNC,gBAAiB,EACjBC,iBAAkB,EAClBC,gBAAiB,EACjBC,iBAAkB,EAClBC,kBAAmB,EACnBC,kBAAmB,EACnBC,iBAAkB,EAClBC,wBAAyB,EACzBC,gBAAiB,GACjBC,gBAAiB","file":"files_sharing-main.js?v=4c7ee07633a21133e94e","sourcesContent":["/**\n * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n// register default shares types\nObject.assign(OC, {\n\tShare: {\n\t\tSHARE_TYPE_USER: 0,\n\t\tSHARE_TYPE_GROUP: 1,\n\t\tSHARE_TYPE_LINK: 3,\n\t\tSHARE_TYPE_EMAIL: 4,\n\t\tSHARE_TYPE_REMOTE: 6,\n\t\tSHARE_TYPE_CIRCLE: 7,\n\t\tSHARE_TYPE_GUEST: 8,\n\t\tSHARE_TYPE_REMOTE_GROUP: 9,\n\t\tSHARE_TYPE_ROOM: 10,\n\t\tSHARE_TYPE_DECK: 12,\n\t},\n})\n"],"sourceRoot":""}
|
||||
{"version":3,"sources":["webpack:///nextcloud/apps/files_sharing/src/index.js"],"names":["Object","assign","OC","Share","SHARE_TYPE_USER","SHARE_TYPE_GROUP","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","SHARE_TYPE_REMOTE","SHARE_TYPE_CIRCLE","SHARE_TYPE_GUEST","SHARE_TYPE_REMOTE_GROUP","SHARE_TYPE_ROOM","SHARE_TYPE_DECK"],"mappings":";AAwBAA,OAAOC,OAAOC,GAAI,CACjBC,MAAO,CACNC,gBAAiB,EACjBC,iBAAkB,EAClBC,gBAAiB,EACjBC,iBAAkB,EAClBC,kBAAmB,EACnBC,kBAAmB,EACnBC,iBAAkB,EAClBC,wBAAyB,EACzBC,gBAAiB,GACjBC,gBAAiB","file":"files_sharing-main.js?v=4c7ee07633a21133e94e","sourcesContent":["/**\n * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n// register default shares types\nObject.assign(OC, {\n\tShare: {\n\t\tSHARE_TYPE_USER: 0,\n\t\tSHARE_TYPE_GROUP: 1,\n\t\tSHARE_TYPE_LINK: 3,\n\t\tSHARE_TYPE_EMAIL: 4,\n\t\tSHARE_TYPE_REMOTE: 6,\n\t\tSHARE_TYPE_CIRCLE: 7,\n\t\tSHARE_TYPE_GUEST: 8,\n\t\tSHARE_TYPE_REMOTE_GROUP: 9,\n\t\tSHARE_TYPE_ROOM: 10,\n\t\tSHARE_TYPE_DECK: 12,\n\t},\n})\n"],"sourceRoot":""}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue