summaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-05-1712-80/+80
|
* [tx-robot] updated from transifexNextcloud bot2018-05-122-18/+18
|
* [tx-robot] updated from transifexNextcloud bot2018-05-102-6/+34
|
* Merge pull request #9029 from nextcloud/settings-restructureMorris Jobke2018-05-072-2/+2
|\ | | | | Restructure server settings
| * Fix settings testsJulius Härtl2018-05-031-1/+1
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * Move files settings to main server settingsJulius Härtl2018-05-031-1/+1
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Fix jsunit testsJulius Härtl2018-05-071-1/+1
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Move quota icon to coreJulius Härtl2018-05-033-5/+1
|/ | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Merge pull request #9248 from nextcloud/fix-files-ellipsisRoeland Jago Douma2018-04-242-84/+27
|\ | | | | Fix ellipsis in filename column
| * Add min-width to trick the table width calculation in safariJulius Härtl2018-04-221-11/+14
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * Use flex based layout inside the filename table cellJulius Härtl2018-04-192-84/+24
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Fix race condition when preparing upload folderDaniel Calviño Sánchez2018-04-221-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before any upload is submitted the upload is registered in a list of known uploads; this is needed to retrieve the upload object at several points of the upload process. When a chunked upload is submitted first a directory to upload all the chunks is created and, once that is done, the chunks are sent; in order to send a chunk the upload object needs to be retrieved from the list of known uploads. When all the active uploads were finished the list of known uploads was cleared. However, an upload is not active until it actually starts sending the data, so while waiting for the upload directory to be created the upload is already in the list of known uploads yet not active. Due to all this, if the active uploads finished while another pending upload was waiting for the upload directory to be created that pending upload would be removed from the list of known uploads too, and once the directory was created and thus the chunks were sent a field of a null upload object would be accessed thus causing a failure. Instead of removing all the known uploads at once when the active uploads finish now each upload is explicitly removed when it finishes. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | [tx-robot] updated from transifexNextcloud bot2018-04-222-4/+4
| |
* | [tx-robot] updated from transifexNextcloud bot2018-04-214-2/+12
|/
* Ensure proper color contrast according to WCAG AAJan-Christoph Borchardt2018-04-183-9/+12
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* [tx-robot] updated from transifexNextcloud bot2018-04-164-4/+4
|
* Merge pull request #8452 from sagorika1996/folderMorris Jobke2018-04-111-0/+2
|\ | | | | Descend into newly created folder by clicking enter again
| * updated jsSagorika Das2018-03-011-5/+1
| | | | | | | | Signed-off-by: Sagorika Das <sagorika1996@gmail.com>
| * New folder creation flowSagorika Das2018-03-011-0/+6
| | | | | | | | | | Descend into newly created folder by clicking enter again. Signed-off-by: Sagorika Das <sagorika1996@gmail.com>
* | [tx-robot] updated from transifexNextcloud bot2018-04-112-70/+120
| |
* | [tx-robot] updated from transifexNextcloud bot2018-04-092-2/+70
| |
* | [tx-robot] updated from transifexNextcloud bot2018-04-082-0/+10
| |
* | [tx-robot] updated from transifexNextcloud bot2018-04-072-2/+4
| |
* | Merge pull request #9082 from nextcloud/feature/8795/new_webdav_url_in_webRoeland Jago Douma2018-04-053-1/+8
|\ \ | | | | | | Show the new dav url in the web UI
| * | Show the new dav url in the web UIRoeland Jago Douma2018-04-053-1/+8
| | | | | | | | | | | | | | | | | | Fixes #8795 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | Merge pull request #9085 from ↵Morris Jobke2018-04-051-7/+1
|\ \ \ | |/ / |/| | | | | | | | nextcloud/fix-progress-bar-hidden-before-the-upload-ends Fix progress bar hidden before the upload ends
| * | Fix progress bar hidden before the upload endsDaniel Calviño Sánchez2018-04-051-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The jQuery File Upload plugin triggers the "stop" event once there are no more files being uploaded (even if some of them were added when another upload was already in progress). Therefore, the progress bar should be hidden in the "fileuploadstop" callback. In some cases the "stop" event is not triggered and thus the progress bar is not hidden once no more files are being uploaded. This is caused by a race condition and it will be fixed in another commit; except in buggy cases like that one (that need to be fixed anyway) it is safe to hide the progress bar in the "fileuploadstop" callback. In any case, note that the callbacks in "fileuploaddone" may be called after the "stop" event was triggered and handled when using chunked uploads. In that case once all the chunks are uploaded the assembled file is moved to its final destination, so its promise could be resolved after the "stop" event was triggered. Therefore a different approach would be needed to keep the progress bar visible until the chunked upload is truly finished, but for the time being the current one is good enough. Before this commit the progress bar was being hidden when the first upload finished, either successfully or with an error, no matter if there were other files being uploaded too. The progress bar was being explicitly hidden also when the upload was cancelled. When an upload is cancelled all the single uploads are aborted, which triggers a "fail" event for each of them. However, the "stop" event is always triggered when no more files are being uploaded, so it is triggered too once all the single uploads were aborted. As all the single uploads are immediately aborted in a loop when the general upload is cancelled it makes no difference to hide the progress bar when the first single upload is aborted or when all the single uploads were aborted, so the progress bar is no longer explicitly hidden in the former case. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | [tx-robot] updated from transifexNextcloud bot2018-04-052-0/+2
|/ /
* | [tx-robot] updated from transifexNextcloud bot2018-04-042-2/+86
| |
* | Merge pull request #8945 from nextcloud/fix-files-copy-in-recent-favoritesMorris Jobke2018-04-032-6/+9
|\ \ | | | | | | Fixed files copy/move when in favorites or recent section
| * | Fixed files copy/move when in favorites or recent sectionJohn Molakvoæ (skjnldsv)2018-03-222-6/+9
| | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | [tx-robot] updated from transifexNextcloud bot2018-04-022-2/+30
| | |
* | | [tx-robot] updated from transifexNextcloud bot2018-04-012-2/+2
| | |
* | | [tx-robot] updated from transifexNextcloud bot2018-03-314-0/+16
| | |
* | | [tx-robot] updated from transifexNextcloud bot2018-03-282-0/+212
| | |
* | | Move calls to \OCP\JSON to private \OC_JSONRoeland Jago Douma2018-03-221-5/+5
|/ / | | | | | | | | | | They should be properly fixed at some point. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | [tx-robot] updated from transifexNextcloud bot2018-03-212-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2018-03-202-12/+36
| |
* | Remove unused download.phpRoeland Jago Douma2018-03-192-55/+0
| | | | | | | | | | | | | | There were two routes apps/files/ajax/download.php but apparently also apps/files/download.php I could not find any use of it. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #8811 from nextcloud/remove_dep_util_linkRoeland Jago Douma2018-03-141-1/+1
|\ \ | | | | | | Remove deprecated URL functions for OCP\Util
| * | Remove deprecated URL functions for OCP\UtilRoeland Jago Douma2018-03-131-1/+1
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | [tx-robot] updated from transifexNextcloud bot2018-03-144-0/+24
|/ /
* | Move storagestats endpoint to proper controllerRoeland Jago Douma2018-03-135-60/+82
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Use proper method to log exceptionsMorris Jobke2018-03-121-3/+3
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | [tx-robot] updated from transifexNextcloud bot2018-03-122-0/+12
| |
* | [tx-robot] updated from transifexNextcloud bot2018-03-098-4/+54
| |
* | Fixed jsunitJohn Molakvoæ (skjnldsv)2018-03-081-1/+2
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Fixed event propagation on safariJohn Molakvoæ (skjnldsv)2018-03-071-1/+3
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Fixed ext share style and use varable for popover heightJohn Molakvoæ (skjnldsv)2018-03-071-1/+0
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Fixed tooltip positionning & error displayJohn Molakvoæ (skjnldsv)2018-03-072-3/+4
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>