summaryrefslogtreecommitdiffstats
path: root/apps/files_external
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2020-04-2416-2/+28
|
* add tooltip to optionRobin Appelman2020-04-221-1/+2
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Add option to check share ACL's when listing directoriesRobin Appelman2020-04-212-0/+37
| | | | | | | | | | | | | | If a file or folder in a directory doesn't have read permissions they will not be shown Note that enabling this option incurs a performance penalty additional requests need to be made to get all the acl. Additionally the acl resolving logic is fairly primitive at the moment and might not work correctly in all setups (it should error to showing the entry) Signed-off-by: Robin Appelman <robin@icewind.nl>
* Merge pull request #20114 from ↵Roeland Jago Douma2020-04-211-3/+3
|\ | | | | | | | | nextcloud/techdebt/noid/allow-some-apps-to-have-root-urls Allow some apps to have root URLs in their own routing file
| * Fix legacy routesJoas Schilling2020-04-181-3/+3
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | [tx-robot] updated from transifexNextcloud bot2020-04-212-6/+6
| |
* | Add method to storage backends to get directory content with metadataRobin Appelman2020-04-201-8/+57
|/ | | | | | | | | | | | | | | | | Currently you need to use `opendir` and then call `getMetadata` for every file, which adds overhead because most storage backends already get the metadata when doing the `opendir`. While storagebackends can (and do) use caching to relief this problem, this adds cache invalidation dificulties and only a limited number of items are generally cached (to prevent memory usage exploding when scanning large storages) With this new methods storage backends can use the child metadata they got from listing the folder to return metadata without having to keep seperate caches. Signed-off-by: Robin Appelman <robin@icewind.nl>
* [tx-robot] updated from transifexNextcloud bot2020-04-162-0/+2
|
* Fix issues with Keystone auth v3 in files_external appJulien Lutran2020-04-152-2/+2
| | | | Signed-off-by: Julien Lutran <julien.lutran@corp.ovh.com>
* [tx-robot] updated from transifexNextcloud bot2020-04-152-6/+6
|
* [tx-robot] updated from transifexNextcloud bot2020-04-132-2/+2
|
* Add visibility to all constantsChristoph Wurst2020-04-1014-42/+42
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add visibility to all methods and position of static keywordChristoph Wurst2020-04-1015-18/+18
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-1085-162/+63
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use elseif instead of else ifChristoph Wurst2020-04-1010-19/+19
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* [tx-robot] updated from transifexNextcloud bot2020-04-102-2/+2
|
* Merge pull request #20391 from nextcloud/refactor/spaces-cleanupChristoph Wurst2020-04-0910-14/+13
|\ | | | | Remove all extra whitespace PSR2 does not like
| * Make sure there is exactly one newline after importsChristoph Wurst2020-04-091-4/+4
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
| * Make sure every file ends with an empty newlineChristoph Wurst2020-04-091-1/+0
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
| * Remove trailing whitespaces from commentsChristoph Wurst2020-04-091-1/+1
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
| * Remove trailing and in between spacesChristoph Wurst2020-04-098-8/+8
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Merge pull request #20384 from nextcloud/techdebt/lowercase-keywordsChristoph Wurst2020-04-091-2/+2
|\ \ | |/ |/| Use php keywords in lowercase
| * Use php keywords in lowercaseChristoph Wurst2020-04-091-2/+2
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Unify function spacing to PSR2 recommendationChristoph Wurst2020-04-0911-16/+16
|/ | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use exactly one empty line after the namespace declarationChristoph Wurst2020-04-0910-8/+2
| | | | | | For PSR2 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Fix (array) indent style to always use one tabChristoph Wurst2020-04-095-18/+18
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #20363 from nextcloud/smb-3.2.3John Molakvoæ2020-04-0912-27/+70
|\ | | | | update icewind/smb to 3.2.3
| * update icewind/smb to 3.2.3Robin Appelman2020-04-0812-27/+70
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Fix multiline commentsChristoph Wurst2020-04-082-6/+6
|/ | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* [tx-robot] updated from transifexNextcloud bot2020-04-082-2/+2
|
* Merge pull request #20276 from nextcloud/files-external-param-tooltopRoeland Jago Douma2020-04-063-5/+34
|\ | | | | allow setting tooltips for external storage config options
| * allow setting tooltips for external storage config optionsRobin Appelman2020-04-033-5/+34
| | | | | | | | | | | | allows explaining non-obvious config options a bit more Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2020-04-052-22/+116
| |
* | [tx-robot] updated from transifexNextcloud bot2020-04-032-0/+8
|/
* Update the license headers for Nextcloud 19Christoph Wurst2020-03-3130-5/+43
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #20208 from nextcloud/smb-folder-contents-normalize-pathJohn Molakvoæ2020-03-301-1/+1
|\ | | | | normalize smb path while listing folder contents
| * normalize smb path while listing folder contentsRobin Appelman2020-03-271-1/+1
| | | | | | | | | | | | | | currently when listing `'/'`, it will include a double slash in the paths used for the listing logic this causes unneeeded cache misses in the statCache Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #20207 from nextcloud/smb-3.2.1John Molakvoæ2020-03-3021-93/+300
|\ \ | | | | | | update icewind/smb to 3.2.1
| * | update icewind/smb to 3.2.1Robin Appelman2020-03-2721-93/+300
| |/ | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2020-03-292-2/+2
| |
* | Merge pull request #20170 from nextcloud/techdebt/remove-unused-importsChristoph Wurst2020-03-276-9/+0
|\ \ | | | | | | Remove unused imports
| * | Remove unused importsChristoph Wurst2020-03-256-9/+0
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | [tx-robot] updated from transifexNextcloud bot2020-03-272-0/+10
| | |
* | | Use the short array syntax, everywhereChristoph Wurst2020-03-2619-116/+116
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | Use the shorter phpunit syntax for mocked return valuesChristoph Wurst2020-03-2511-53/+53
|/ / | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* / [tx-robot] updated from transifexNextcloud bot2020-03-252-0/+8
|/
* [tx-robot] updated from transifexNextcloud bot2020-03-232-2/+4
|
* Do not use the deprecated service nameChristoph Wurst2020-03-191-4/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #19932 from nextcloud/remove-placeholder-checkRoeland Jago Douma2020-03-172-77/+0
|\ | | | | remove the requirement that everything that looks like a placeholder …
| * remove the requirement that everything that looks like a placeholder is ↵Robin Appelman2020-03-132-77/+0
| | | | | | | | | | | | | | | | substituted While maybe not common, `$` is a valid option in config fields Signed-off-by: Robin Appelman <robin@icewind.nl>