summaryrefslogtreecommitdiffstats
path: root/apps/files_external
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #23363 from owncloud/smb-1.0.8-82Vincent Petry2016-04-2019-58/+236
|\ | | | | [8.2] update icewind/smb to 1.0.8
| * update icewind/smb to 1.0.8Robin Appelman2016-03-1719-58/+236
| |
* | handle forbidden exceptions in smb backendRobin Appelman2016-03-221-1/+18
| |
* | Synchronise files_external and objectstore Docker tests with masterRobin McCorkell2016-03-0110-23/+230
|/ | | | Checkout files from 4d69e562a065a79461343444a842ada025f3643c
* Merge pull request #21666 from owncloud/smb-statcache-cap-82Vincent Petry2016-01-131-1/+8
|\ | | | | [8.2] cap the number of entries we cache in smb's statcache
| * cap the number of entries we cache in smb's statcacheRobin Appelman2016-01-121-1/+8
| |
* | Check libsmbclient-php as well as smbclient binaryRobin McCorkell2016-01-091-2/+4
|/
* Add testsRobin Appelman2015-12-091-0/+50
|
* Dont set the string storage id to the numeric storage id for personal mountsRobin Appelman2015-12-091-4/+4
|
* Force approval in GDrive oauth to get refresh_tokenVincent Petry2015-11-061-0/+1
| | | | | | | | Forcing the approval of app permissions makes sure that the GDrive API will always return a refresh_token. In the case of apps that were already authorized for the current user/domain, the API doesn't return the refresh_token which causes expiration issues.
* Backport translations for 8.2Joas Schilling2015-11-056-6/+20
|
* [files_external] fix empty user mounts settingMorris Jobke2015-11-051-0/+5
| | | | | * fixes #19858 * if no backend is allowed to be mounted also the user mount setting should be disabled
* Remove Dropbox metadata from cache after uploadVincent Petry2015-10-261-0/+1
| | | | | This will make sure that the next calls that read the mtime will get the correct value.
* Increase the 2nd digit of shipped apps for 8.2Joas Schilling2015-10-172-2/+2
|
* apply new checkbox style to admin settingsHendrik Leppelsack2015-10-141-3/+3
|
* Fix testDeleteStorage signature to match the one from the base classVincent Petry2015-10-131-2/+3
| | | | Prevents Strict warning when running autotest-external.sh
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-136-2/+16
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-122-2/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-104-2/+6
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-092-0/+6
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-084-0/+24
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-074-0/+264
|
* Remove oc_storages entries after removing ext storagesVincent Petry2015-10-063-4/+94
| | | | | | | | | When removing external storages, either system-wide or user-wide, automatically remove the matching oc_storages and oc_filecache entries. This can only work if the backend configuration doesn't contain any substitution variable $user in which case the storage id cannot be computed, so this case is ignored for now.
* Merge pull request #19597 from owncloud/update-license-headersThomas Müller2015-10-0676-57/+77
|\ | | | | update licence headers via script
| * deduplicate @xenopathicMorris Jobke2015-10-0682-82/+76
| |
| * update licence headers via scriptMorris Jobke2015-10-0539-19/+45
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-066-8/+54
|/
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-046-0/+52
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-036-0/+64
|
* if mountpoint is applicable to all users the old API expects a array with 'all'Bjoern Schiessle2015-10-021-0/+5
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-022-0/+4
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-012-0/+20
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-09-292-0/+6
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-09-2874-30/+236
|
* Use a universal shebangOlivier Paroz2015-09-2712-12/+12
| | | | Fixes #15037
* Unit tests for storage validation in serviceRobin McCorkell2015-09-232-0/+56
|
* Perform visibility checks on storagesRobin McCorkell2015-09-2314-40/+87
| | | | | | | | StoragesService::getStorages() will check the visibility of the backend and auth mechanism for the storage, and if either are not visible to the user (aka disabled by admin) then the storage will be filtered out. The original method StoragesService::getAllStorages() still exists in case such storages need to be detected, but its use is discouraged.
* Mark SMB_OC and SFTP_Key as deprecated backendsRobin McCorkell2015-09-232-4/+8
|
* Hide deprecated backends in external storage GUIRobin McCorkell2015-09-232-3/+19
| | | | | | Selecting/deselecting the deprecate-to backends in the user mountable storages selection will also change the corresponding deprecated backend.
* Add deprecation mechanic to IdentifierTraitRobin McCorkell2015-09-233-0/+37
| | | | | Deprecation allows a backend/auth mechanism to designate an object that it deprecates to, allowing clean transitions to updated codebases.
* Revert "Implement more fine-grained external storage permissions model"Robin McCorkell2015-09-2317-237/+190
| | | | | | This reverts commit 0b97a05e7bd631d66de1c2aee115113ada8a5f63. This reverts commit d2e3c17c0000bc0020f1ff641190452f370434de. This reverts commit cc88c5f4b84da57c425cbdb7dc8b391b1942b503.
* Replaces if ($file === '.' || $file === '..') by ↵Martin2015-09-222-3/+3
| | | | if(\OC\Files\Filesystem::isIgnoredDir($file)). Eases to find where this operation is used.
* Merge pull request #19176 from owncloud/fix-19118Thomas Müller2015-09-212-11/+12
|\ | | | | Fix checkboxes in files_external
| * fix checkboxes in files_externalHendrik Leppelsack2015-09-192-11/+12
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-09-204-0/+4
|/
* [tx-robot] updated from transifexJenkins for ownCloud2015-09-192-0/+2
|
* Merge pull request #19069 from owncloud/ext-s3-cephThomas Müller2015-09-184-4/+124
|\ | | | | AmazonS3 automatic tests
| * Make AmazonS3 path style actually workRobin McCorkell2015-09-161-1/+4
| |
| * AmazonS3 Ceph testsRobin McCorkell2015-09-163-3/+120
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-09-1810-0/+12
| |