summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #23028 from ↵Morris Jobke2020-10-051-1/+1
|\ | | | | | | | | nextcloud/bugfix/noid/array-to-string-conversion-on-event-search Fix array to string conversion on event search
| * Fix array to string conversion on event searchJoas Schilling2020-09-241-1/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Merge pull request #23096 from nextcloud/bugfix/noid/mimetypes2Morris Jobke2020-10-051-0/+13
|\ \ | | | | | | Also check the path based mimetype for flow rule checks
| * | Make sure to check the mimetype on the path if a secure one could not be ↵Julius Härtl2020-09-291-0/+13
| |/ | | | | | | | | | | detemined though the content Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Merge pull request #22891 from ↵Morris Jobke2020-10-051-2/+13
|\ \ | | | | | | | | | | | | nextcloud/techdebt/18680/improve-ProvisioningApiMiddleware-service-logic Improve registerService logic for ProvisioningApiMiddleware for static code analysis
| * | Improve registerService logic for ProvisioningApiMiddleware for static code ↵Daniel Kesselberg2020-09-161-2/+13
| | | | | | | | | | | | | | | | | | | | | analysis Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | Merge pull request #23189 from nextcloud/enhancement/cs/binary_operator_spacesMorris Jobke2020-10-05163-791/+791
|\ \ \ | | | | | | | | Format code to a single space around binary operators
| * | | Format code to a single space around binary operatorsChristoph Wurst2020-10-05163-791/+791
| | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | Merge pull request #23182 from sharidas/fix-user-emailaddrMorris Jobke2020-10-052-13/+19
|\ \ \ \ | |/ / / |/| | | Fix the user email issue while creating a user
| * | | Fix the user email issue while creating a userSujith Haridasan2020-10-052-13/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the user is created, the provisioning api was not adding the email address of the user when provided if the `send email to new user` is not set. Signed-off-by: Sujith Haridasan <sujith.h@gmail.com>
* | | | Fix unit testsRoeland Jago Douma2020-10-051-0/+6
| | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | Merge pull request #23179 from nextcloud/bugfix/23163Roeland Jago Douma2020-10-053-3/+3
|\ \ \ \ | | | | | | | | | | Fix dashboard rendering if accessibility app is disabled
| * | | | Fix dashboard rendering if accessibility app is disabledJulius Härtl2020-10-053-3/+3
| |/ / / | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | Merge pull request #23109 from nextcloud/trash-move-no-transactionJoas Schilling2020-10-051-5/+7
|\ \ \ \ | | | | | | | | | | dont hold a transaction during the move to trash
| * | | | dont hold a transaction during the move to trashRobin Appelman2020-09-301-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | because moving to trash can take a long time, keeping a transaction active for the duration can lead to issues Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | Merge pull request #23175 from mrtnmtth/masterJoas Schilling2020-10-051-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | Fix legacy update notifications
| * | | | Fix legacy update notificationsmrtnmtth2020-10-041-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: mrtnmtth <mrtn.mtth@gmx.de>
* | | | | [tx-robot] updated from transifexNextcloud bot2020-10-0578-218/+276
|/ / / /
* | | | Merge pull request #22913 from nextcloud/group-folder-quota-warning-mountpointRoeland Jago Douma2020-10-042-7/+12
|\ \ \ \ | | | | | | | | | | add mount point to quota warning message
| * | | | add mount point to quota warning messageRobin Appelman2020-10-042-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | makes it more clear to the user what the quota applies to Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | Merge pull request #22969 from eleith/catch-no-instance-exceptionRoeland Jago Douma2020-10-042-1/+159
|\ \ \ \ \ | | | | | | | | | | | | broaden exception handling on webcal refresh
| * | | | | broaden exception handling on webcal refresheleith2020-09-292-1/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when iterating through a calendar, recurrance events can throw an exception if no instances of the recurrance are found. this exception is of class `Exception` but the try/catch clause in the webcal refresh loop only catches `BadRequest` exception. this leads to the exception bubbling up and thus other calendar events do not get processed by the event iterator. this PR broadens the exception to handle both BadRequest and NoInstanceFoundException so that the full webcal can be processed, even if minor hiccups are processing on vobject Signed-off-by: leith abdulla <online-nextcloud@eleith.com>
* | | | | | Move accessibility over to the new wayRoeland Jago Douma2020-10-042-14/+8
| |/ / / / |/| | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | [tx-robot] updated from transifexNextcloud bot2020-10-0416-2/+160
| | | | |
* | | | | Merge pull request #23152 from nextcloud/dependabot/npm_and_yarn/marked-1.2.0John Molakvoæ2020-10-034-3/+6
|\ \ \ \ \
| * \ \ \ \ Merge branch 'master' into dependabot/npm_and_yarn/marked-1.2.0John Molakvoæ2020-10-032-2/+2
| |\ \ \ \ \
| * | | | | | Bump marked from 1.1.1 to 1.2.0dependabot-preview[bot]2020-10-034-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [marked](https://github.com/markedjs/marked) from 1.1.1 to 1.2.0. - [Release notes](https://github.com/markedjs/marked/releases) - [Commits](https://github.com/markedjs/marked/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | | | | Merge pull request #22960 from nextcloud/Valdnet-patch-4Roeland Jago Douma2020-10-031-1/+1
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | l10n: HTTP in capital letters
| * | | | | | l10n: HTTP in capital lettersValdnet2020-09-191-1/+1
| | | | | | |
* | | | | | | Bump moment from 2.27.0 to 2.29.0dependabot-preview[bot]2020-10-032-2/+2
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [moment](https://github.com/moment/moment) from 2.27.0 to 2.29.0. - [Release notes](https://github.com/moment/moment/releases) - [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md) - [Commits](https://github.com/moment/moment/compare/2.27.0...2.29.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | | | Merge pull request #23150 from ↵Roeland Jago Douma2020-10-032-3/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/vue-router-3.4.5 Bump vue-router from 3.4.4 to 3.4.5
| * | | | | | Bump vue-router from 3.4.4 to 3.4.5dependabot-preview[bot]2020-10-032-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [vue-router](https://github.com/vuejs/vue-router) from 3.4.4 to 3.4.5. - [Release notes](https://github.com/vuejs/vue-router/releases) - [Changelog](https://github.com/vuejs/vue-router/blob/dev/CHANGELOG.md) - [Commits](https://github.com/vuejs/vue-router/compare/v3.4.4...v3.4.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | | | | Merge pull request #23142 from nextcloud/fix/23140/multiple-inline-translationsRoeland Jago Douma2020-10-033-3/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Split dashboard attributions in multiple lines
| * | | | | | | refs #23140 split dashboard attributions in multiple lines to allow ↵Julien Veyssier2020-10-023-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | translation parsing Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
* | | | | | | | [tx-robot] updated from transifexNextcloud bot2020-10-036-4/+12
| |/ / / / / / |/| | | | | |
* | | | | | | [tx-robot] updated from transifexNextcloud bot2020-10-0230-60/+82
| | | | | | |
* | | | | | | Show the full status and icon all the timeJoas Schilling2020-10-029-17/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | | Show icon only with dnd status in the messageJulius Härtl2020-10-021-1/+1
|/ / / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | Merge pull request #23135 from nextcloud/fix/user-statusRoeland Jago Douma2020-10-0238-48/+69
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix subline hint
| * | | | | | Bump @nextcloud/vue to v2.6.8John Molakvoæ (skjnldsv)2020-10-0234-36/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | | Fix subline hintJohn Molakvoæ (skjnldsv)2020-10-026-15/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | | | | [tx-robot] updated from transifexNextcloud bot2020-10-02216-1702/+668
|/ / / / / /
* | | | | | Show the sublineJoas Schilling2020-10-025-6/+11
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | Update @nextcloud/vue to 2.6.7Joas Schilling2020-10-0234-36/+45
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | Status: Add subline for Invisible to explain it properlyJan C. Borchardt2020-10-015-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
* | | | | | Enable scrollbar for too long content, same way as in Dashboard customizeJan C. Borchardt2020-10-015-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
* | | | | | Move online status into modalJohn Molakvoæ (skjnldsv)2020-10-0114-181/+348
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | | | Merge pull request #23112 from ↵Roeland Jago Douma2020-10-013-4/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/bugfix/noid/increase-timeout-of-statuses Increase the timeout of statuses
| * | | | | | Increase the timeout of statusesJoas Schilling2020-10-013-4/+4
| | |_|/ / / | |/| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | [tx-robot] updated from transifexNextcloud bot2020-10-0158-130/+228
| | | | | |