summaryrefslogtreecommitdiffstats
path: root/apps/files_external/appinfo/app.php
Commit message (Collapse)AuthorAgeFilesLines
* Update license headersChristoph Wurst2019-12-051-3/+5
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* when a user was delete remove them from applicable list, unlessArthur Schiwon2019-11-281-0/+2
| | | | | | it is the only user, then remove the mount Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Remove some more direct app instance creationsChristoph Wurst2019-11-251-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use ::class statement instead of stringMorris Jobke2018-01-291-1/+3
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update license headersMorris Jobke2017-11-061-3/+2
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* move personal external storage settings to it's own sectionRobin Appelman2017-06-231-2/+0
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Add more hints to settingsJan-Christoph Borchardt2017-04-261-1/+1
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* use closure to properly defer l10n initialization (#27328)Jörn Friedrich Dreyer2017-03-131-9/+10
|
* Update with robinJoas Schilling2016-07-211-1/+1
|
* Fix apps/Joas Schilling2016-07-211-3/+4
|
* Update license headersLukas Reschke2016-05-261-1/+1
|
* Move stuff from outside lib/ to PSR-4Joas Schilling2016-05-241-1/+1
|
* Fix OCA\Files\External\Api namespaceRobin McCorkell2016-04-141-1/+0
|
* Fix storage backend class namespaces and move to subdirRobin McCorkell2016-04-141-9/+0
| | | | | All classes that were previously \OC\Files\Storage\FooBar are now \OCA\Files_External\Lib\Storage\FooBar
* 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
|