summaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-06-072-2/+6
|
* [tx-robot] updated from transifexNextcloud bot2018-06-062-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-06-044-8/+8
|
* [tx-robot] updated from transifexNextcloud bot2018-05-312-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-05-302-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-05-292-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-05-266-6/+8
|
* [tx-robot] updated from transifexNextcloud bot2018-05-2510-0/+10
|
* [tx-robot] updated from transifexNextcloud bot2018-05-2312-36/+204
|
* [tx-robot] updated from transifexNextcloud bot2018-05-222-12/+12
|
* [tx-robot] updated from transifexNextcloud bot2018-05-202-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-05-1812-12/+12
|
* [tx-robot] updated from transifexNextcloud bot2018-05-1712-80/+80
|
* Merge pull request #9454 from ↵Morris Jobke2018-05-141-1/+17
|\ | | | | | | | | nextcloud/stable13-9245-fix-race-condition-when-preparing-upload-folder [stable13] Fix race condition when preparing upload folder
| * Fix race condition when preparing upload folderDaniel Calviño Sánchez2018-05-101-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-05-122-18/+18
|/
* Merge pull request #9433 from ↵Roeland Jago Douma2018-05-103-8/+11
|\ | | | | | | | | nextcloud/backport/9224/accessibility-improvements-13 [stable13] Add labels for Contacts menu and Settings
| * Ensure proper color contrast according to WCAG AAJan-Christoph Borchardt2018-05-093-8/+11
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* | [tx-robot] updated from transifexNextcloud bot2018-05-102-6/+34
|/
* Fix jsunit testsJulius Härtl2018-05-091-1/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Add min-width to trick the table width calculation in safariJulius Härtl2018-04-301-11/+14
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Use flex based layout inside the filename table cellJulius Härtl2018-04-302-84/+24
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* [tx-robot] updated from transifexNextcloud bot2018-04-222-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-04-214-2/+12
|
* Fixed files copy/move when in favorites or recent sectionJohn Molakvoæ (skjnldsv)2018-04-182-6/+9
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* [tx-robot] updated from transifexNextcloud bot2018-04-164-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-04-112-70/+120
|
* Fix progress bar hidden before the upload endsDaniel Calviño Sánchez2018-04-091-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-092-2/+70
|
* [tx-robot] updated from transifexNextcloud bot2018-04-082-0/+10
|
* [tx-robot] updated from transifexNextcloud bot2018-04-072-2/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-04-052-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-04-042-2/+86
|
* [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
|
* [tx-robot] updated from transifexNextcloud bot2018-03-212-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-03-202-12/+36
|
* [tx-robot] updated from transifexNextcloud bot2018-03-144-0/+24
|
* [tx-robot] updated from transifexNextcloud bot2018-03-122-0/+12
|
* [tx-robot] updated from transifexNextcloud bot2018-03-098-4/+54
|
* Fix unit testJoas Schilling2018-03-061-0/+6
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Catch exception when the parent is deleted as wellJoas Schilling2018-03-061-2/+27
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Do a recursion instead of an endless loopJoas Schilling2018-03-061-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix problem with deleted filesJoas Schilling2018-03-061-5/+14
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix path handling for activitiesJoas Schilling2018-03-061-7/+20
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add special handling for e2e encryptionJoas Schilling2018-03-061-1/+108
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Extract duplicated logic into a methodJoas Schilling2018-03-061-80/+24
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* [tx-robot] updated from transifexNextcloud bot2018-03-066-10/+44
|