aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/App.php
Commit message (Collapse)AuthorAgeFilesLines
* perf(files): Adjust default chunk size for chunked upload to 100MiBperf/files/chunked-upload-default-100-mibprovokateurin2024-09-301-1/+1
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* feat(NavigationManager): Add default entries handlingprovokateurin2024-09-091-1/+3
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* chore: Add SPDX headerAndy Scherzinger2024-05-291-22/+4
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* Add a public replacement for OC::$server->getCarl Schwan2022-05-101-16/+22
| | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-041-1/+0
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Update all license headers for Nextcloud 21Christoph Wurst2020-12-161-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-051-2/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Some php-cs fixesRoeland Jago Douma2019-11-221-1/+0
| | | | | | | | | | | * Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Remove unneeded semicolon and parenthesesMorris Jobke2018-01-261-1/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #7056 from ↵blizzz2017-11-101-0/+10
|\ | | | | | | | | nextcloud/oc-28415-enable-chunking-in-authenticated-web-upload [oc] Enable chunking for bigger files in authenticated web upload
| * Enable chunking for bigger files in authenticated web uploadVincent Petry2017-11-031-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds chunked uploads in the Web UI (for authenticated users, but not for public uploads). To do that the server endpoint used by the uploader is changed from WebDAV v1 to WebDAV v2. The chunking itself is done automatically by the jQuery-File-Upload plugin when the "maxChunkSize" parameter is set; in "fileuploadchunksend" the request is adjusted to adapt the behaviour of the plugin to the one expected by "uploads/" in WebDAV v2. The chunk size to be used by the Web UI can be set in the "max_chunk_size" parameter of the Files app configuration. By default it is set to 10MiB. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Update license headersMorris Jobke2017-11-061-0/+1
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Allow multiple navigation links from info.xmlJoas Schilling2017-03-261-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Manage the right side menu via the navigation manager as wellJoas Schilling2017-03-261-1/+9
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix apps/Joas Schilling2016-07-211-1/+2
|
* Move Files app to PSR-4 (#24569)Joas Schilling2016-05-121-0/+47
* Move lib/ of Files app to PSR-4 * Move tests to PSR-4