summaryrefslogtreecommitdiffstats
path: root/apps/files_external/appinfo/app.php
Commit message (Collapse)AuthorAgeFilesLines
* Update author informationLukas Reschke2016-03-011-2/+1
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Consolidate user mounting check codeRobin McCorkell2016-01-141-5/+2
|
* Happy new year!Thomas Müller2016-01-121-3/+3
|
* remove old propagation logicRobin Appelman2015-12-011-3/+0
|
* Update license headersLukas Reschke2015-10-261-1/+1
|
* deduplicate @xenopathicMorris Jobke2015-10-061-1/+1
|
* update licence headers via scriptMorris Jobke2015-10-051-5/+1
|
* Migrate SFTP_Key external storage to new APIRobin McCorkell2015-08-281-13/+0
| | | | | The SFTP backend now supports public key authentication alongside password authentication.
* Migrate SMB_OC external storage to new APIRobin McCorkell2015-08-281-16/+0
| | | | | SMB_OC has been merged with SMB, via the identifier aliases mechanism. Legacy migration is done to the Session Credentials password mechanism
* Migrate Swift external storage to new APIRobin McCorkell2015-08-281-18/+0
| | | | | The Rackspace/OpenStack differences have been split into separate auth mechanisms, with correct legacy migration
* Migrate Google external storage to new APIRobin McCorkell2015-08-251-14/+0
|
* Migrate Dropbox external storage to new APIRobin McCorkell2015-08-251-14/+0
|
* Migrate AmazonS3 external storage to new APIRobin McCorkell2015-08-251-27/+0
|
* Migrate SFTP external storage to new APIRobin McCorkell2015-08-191-11/+0
|
* Migrate OwnCloud external storage to new APIRobin McCorkell2015-08-191-13/+0
|
* Migrate DAV external storage to new APIRobin McCorkell2015-08-191-13/+0
|
* Migrate SMB external storage to new APIRobin McCorkell2015-08-191-13/+0
|
* Migrate FTP external storage to new APIRobin McCorkell2015-08-191-13/+0
|
* Migrate Local external storage to new APIRobin McCorkell2015-08-191-12/+0
|
* Restrict Local backend to admin-onlyRobin McCorkell2015-08-191-0/+4
|
* Make Application a singletonRobin McCorkell2015-08-191-5/+3
| | | | | The same Application must be used in the settings templates and in routes, so that any registered backends are correctly seen
* Introduce BackendService for managing external storage backendsRobin McCorkell2015-08-191-4/+9
| | | | | | | | | | | | | | | | | Backends are registered to the BackendService through new data structures: Backends are concrete classes, deriving from \OCA\Files_External\Lib\Backend\Backend. During construction, the various configuration parameters of the Backend can be set, in a design similar to Symfony Console. DefinitionParameter stores a parameter configuration for an external storage: name of parameter, human-readable name, type of parameter (text, password, hidden, checkbox), flags (optional or not). Storages in the StoragesController now get their parameters validated server-side (fixes a TODO).
* update license headers and authorsMorris Jobke2015-06-251-1/+0
|
* Make string 'SFTP with secret key login' translatableMartin2015-05-271-1/+1
|
* Update license headersJenkins for ownCloud2015-03-261-5/+30
|
* Use storage id + appframework for ext storage CRUDVincent Petry2015-03-121-0/+2
| | | | | | | | | | | | | - Added StorageConfig class to replace ugly arrays - Implemented StorageService and StorageController for Global and User storages - Async status checking for storages (from Xenopathic) - Auto-generate id for external storage configs (not the same as storage_id) - Refactor JS classes for external storage settings, this mostly moves/encapsulated existing global event handlers into the MountConfigListView class. - Added some JS unit tests for the external storage UI
* Revert "Updating license headers"Morris Jobke2015-02-261-29/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-5/+29
|
* New SMB storage backendRobin Appelman2015-02-161-0/+2
|
* Merge pull request #13190 from is-apps/master-sftp-keyVincent Petry2015-02-101-0/+13
|\ | | | | Add SFTP public key authentication support
| * Add support for SFTP key authenticationRoss Nicoll2015-01-141-0/+13
| | | | | | | | | | | | | | | | | | | | Add support for external files accessed via SFTP using public key exchange authentication. Keys are generated automatically when the configuration is added, or can be regenerated on demand if a key is compromised. Creation of a new configuration row now triggers focus on that row. This is used to trigger auto-configuration for SFTP keys. Generated public keys are saved in user's data directory for easy retrieval by an external application. Add controller for SFTP key generation AJAX SFTP class initialisation no longer produces a warning if the password field is missing. Add unit tests for SFTP with key authentication backend
* | Merge pull request #13364 from is-apps/files_external_cleanupVincent Petry2015-02-091-54/+75
|\ \ | | | | | | Clean up files_external
| * | Change from array() to [] style in files_external application info.Ross Nicoll2015-01-141-54/+75
| |/
* / Remove unneeded addTranslations() callsVincent Petry2015-01-141-2/+0
|/
* smb: rename textfield from root to subfolderMartin2015-01-071-5/+5
| | | | | | "root" or "subfolder" -> "Remote subfolder" on selected storages missed ftp...
* Use the mount config api for files_externalRobin Appelman2014-12-041-0/+2
|
* Added OC.L10N namespace with translation functionsVincent Petry2014-10-291-0/+2
| | | | | | | | | | | Added addTranslations and fixed de.js file Fixed de.js to use OC.L10N.register() and use to correct expected format. Added JS unit tests for OC.L10N class Include translations JS script for all apps
* Fix configuration of rackspaceRobin Appelman2014-09-051-2/+2
|
* Use public api for getting l10nRobin Appelman2014-08-311-1/+1
|
* Improve UI of external storage configurationRobin McCorkell2014-08-301-6/+6
| | | | | | | | | * Highlight fields that need to be filled * Remove (required) and (optional) strings where possible * Focus first configuration field when creating new external storage * Add ability to force external storage re-check * Various jQuery improvements * Prevent wrapping of checkboxes in configuration
* fix autoloaderThomas Müller2014-06-271-1/+0
|
* Added external storage list in files appVincent Petry2014-06-061-0/+12
|
* Add storage priority supportRobin McCorkell2014-05-211-0/+12
| | | | | | | | | | | | | | | | | | | Each storage backend has a default priority, assigned to any system mounts created in ownCloud. mount.json can be manually modified to change these priorities. The priority order is as follows: * Personal * User * Group * Global Within each mount type, the mount with the highest priority is active. The storage backend defaults were chosen to be the following: * Local - 150 * Remote storage - 100 * SMB / CIFS with OC login - 90
* changing label "URL" to "Host"fibsifan2014-05-151-4/+4
|
* drop files_irods from apps_externalThomas Müller2014-04-281-13/+0
|
* Add translatable mount configsVolkan Gezer2014-04-231-65/+66
| | | | Will close #8070
* Update backends and their configurationsThomas Müller2014-04-031-19/+72
|
* Added cURL dependency for Amazon S3, Dropbox and SWIFTPhilipp Kapfer2014-04-031-3/+6
| | | | | | Conflicts: apps/files_external/lib/amazons3.php apps/files_external/lib/swift.php
* Added cURL dependency check to Google Drive and WebDAV backendPhilipp Kapfer2014-04-031-2/+4
| | | | | | | | Added check for backend's checkDependencies method to OC_Mount_Config::getBackends() when backend is configured to have some instead of blindly calling it and crashing Conflicts: apps/files_external/lib/config.php apps/files_external/lib/google.php
* Modified app to dynamically register backends instead of hard-coding themPhilipp Kapfer2014-04-031-0/+75
| | | | | | | | Moved dependency check to the individual backends instead of the config Conflicts: apps/files_external/appinfo/app.php apps/files_external/lib/config.php