summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2020-03-0620-14/+90
|
* Merge pull request #19721 from nextcloud/bug/19695/workflow-regex-officeRoeland Jago Douma2020-03-053-5/+5
|\ | | | | Fix regex for office documents
| * Fix regex for office documentsDaniel Kesselberg2020-03-023-5/+5
| | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | Merge pull request #19671 from nextcloud/fix-loading-icons-on-replaced-elementsRoeland Jago Douma2020-03-051-5/+5
|\ \ | | | | | | Fix loading icons on replaced elements
| * | Adjust list of replaced elements to the specDaniel Calviño Sánchez2020-02-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "button, textarea, select, div[contenteditable='true']" were removed and "audio, canvas, embed, iframe" were added. Note that this is a coarse-grained list; according to the spec some of the elements, like canvas or input, might be treated as a replaced element in some cases and as ordinary elements in others: https://html.spec.whatwg.org/multipage/rendering.html#replaced-elements For now all the elements that might be replaced elements use the loading image by default, so apps will need to override that when the elements are treated as ordinary elements. Of course that can be flipped in the future to instead make an element to use the "::after" approach by default if it is found that the element requires the override often. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Set loading image on replaced elements instead of on their descendantsDaniel Calviño Sánchez2020-02-271-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced elements do not have "::after" nor "::before" pseudo-elements, so the regular loading icon needs to be shown using a background image instead of the default "::after" pseudo-element approach. However, the CSS rules were not applied on the replaced elements themselves, but on their descendants. As the descendants might have support for pseudo-elements the rules were fixed to be applied on the replaced elements, and only on the replaced elements. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #19769 from nextcloud/bugfix/noid/share-owner-avatarRoeland Jago Douma2020-03-053-23/+22
|\ \ \ | | | | | | | | Fix avatar in file list for users with an @ in the uid
| * | | Bump bundlesJulius Härtl2020-03-032-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | Fix regex to not take email uids as federated idsJulius Härtl2020-03-031-21/+20
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | Merge pull request #19787 from nextcloud/bugfix/noid/fix-js-regexRoeland Jago Douma2020-03-053-3/+3
|\ \ \ \ | | | | | | | | | | Fix JS regex
| * | | | Fix JS regexJoas Schilling2020-03-053-3/+3
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | Merge pull request #19743 from nextcloud/cache-updater-storage-mtime-falseRoeland Jago Douma2020-03-051-6/+9
|\ \ \ \ \ | |/ / / / |/| | | | dont try to update storage mtime if we can't get the mtime
| * | | | dont try to update storage mtime if we can't get the mtimeRobin Appelman2020-03-021-6/+9
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | [tx-robot] updated from transifexNextcloud bot2020-03-0536-40/+76
| | | | |
* | | | | [tx-robot] updated from transifexNextcloud bot2020-03-0412-20/+56
| | | | |
* | | | | Merge pull request #19739 from nextcloud/bugfix/noid/groupid-spacesRoeland Jago Douma2020-03-035-9/+8
|\ \ \ \ \ | | | | | | | | | | | | Do not use replace on the group id
| * | | | | Do not use replace on the group idJulius Härtl2020-03-025-9/+8
| | |_|_|/ | |/| | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | Merge pull request #19764 from nextcloud/fix/transfer-ownerhip-owner-checkRoeland Jago Douma2020-03-034-4/+12
|\ \ \ \ \ | | | | | | | | | | | | Do not allow transfer ownership when the user isn't the owner
| * | | | | Do not allow transfer ownership when the user isn't the ownerChristoph Wurst2020-03-034-4/+12
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | | Merge pull request #19766 from ↵Christoph Wurst2020-03-031-0/+0
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | | | | | | | nextcloud/dependabot/composer/phpseclib/phpseclib-2.0.25 Bump phpseclib/phpseclib from 2.0.23 to 2.0.25
| * | | | | Bump phpseclib/phpseclib from 2.0.23 to 2.0.25Christoph Wurst2020-03-031-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | | Merge pull request #19723 from nextcloud/bug/18603/avatar-responseRoeland Jago Douma2020-03-032-3/+7
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Always use status 200 for avatar response
| * | | | | Always use status 200 for avatar responseDaniel Kesselberg2020-03-012-3/+7
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | As discussed in #18603 caching a 201 response is hard. It's now possible to distinguish between generated and uploaded avatars by reading the X-NC-IsCustomAvatar (0 = generated, 1 = uploaded) header. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | | Merge pull request #19741 from ↵Christoph Wurst2020-03-031-0/+0
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/composer/pear/archive_tar-1.4.9 Bump pear/archive_tar from 1.4.8 to 1.4.9
| * | | | | Bump pear/archive_tar from 1.4.8 to 1.4.9Christoph Wurst2020-03-031-0/+0
| | |/ / / | |/| | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | Merge pull request #19755 from nextcloud/bug/19754/translate-tagsRoeland Jago Douma2020-03-033-5/+5
|\ \ \ \ \ | |/ / / / |/| | | | Fetch translate for Tags from files app
| * | | | Fetch translate for Tags from files appDaniel Kesselberg2020-03-033-5/+5
|/ / / / | | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | [tx-robot] updated from transifexNextcloud bot2020-03-036-6/+6
| | | |
* | | | Merge pull request #19742 from nextcloud/bug/19740/add-msg-for-exceptionblizzz2020-03-022-2/+19
|\ \ \ \ | |_|_|/ |/| | | Add message for DoesNotExistException
| * | | Add message for DoesNotExistExceptionDaniel Kesselberg2020-03-022-2/+19
| |/ / | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | Merge pull request #19731 from nextcloud/fix/15455/dont_hanlde_deleted_sharesRoeland Jago Douma2020-03-021-0/+10
|\ \ \ | | | | | | | | Don't try to format deleted shares
| * | | Don't try to format deleted sharesRoeland Jago Douma2020-03-021-0/+10
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #15455 The issue is that we have a fallback for shares to use the target. So when the target exists again we happily format it (not that the shares are still invalid). This just tries to get the node. If we can't then boom. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | Merge pull request #19697 from ↵Christoph Wurst2020-03-021-0/+0
|\ \ \ | |/ / |/| | | | | | | | nextcloud/dependabot/composer/aws/aws-sdk-php-3.133.23 Bump aws/aws-sdk-php from 3.93.9 to 3.133.23
| * | Bump aws/aws-sdk-php from 3.93.9 to 3.133.23Christoph Wurst2020-03-021-0/+0
|/ / | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Merge pull request #19713 from nextcloud/dependabot/npm_and_yarn/sinon-9.0.0Roeland Jago Douma2020-03-022-35/+35
|\ \ | | | | | | Bump sinon from 8.1.1 to 9.0.0
| * | Bump sinon from 8.1.1 to 9.0.0dependabot-preview[bot]2020-02-292-35/+35
| | | | | | | | | | | | | | | | | | | | | | | | Bumps [sinon](https://github.com/sinonjs/sinon) from 8.1.1 to 9.0.0. - [Release notes](https://github.com/sinonjs/sinon/releases) - [Changelog](https://github.com/sinonjs/sinon/blob/master/CHANGELOG.md) - [Commits](https://github.com/sinonjs/sinon/compare/v8.1.1...v9.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | | Merge pull request #19699 from ↵Roeland Jago Douma2020-03-021-8/+10
|\ \ \ | | | | | | | | | | | | | | | | nextcloud/bugfix/19349/allow-single-file-downloads Allow single file downloads so the video player works again
| * | | Allow single file downloads so the video player works againJoas Schilling2020-02-281-8/+10
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #19722 from nextcloud/bug/18727/dont-resize-svgRoeland Jago Douma2020-03-021-2/+1
|\ \ \ \ | | | | | | | | | | Don't try to resize a svg uploaded as background image
| * | | | Don't try to resize a svg uploaded as background image.Daniel Kesselberg2020-03-011-2/+1
| | |_|/ | |/| | | | | | | | | | | | | | | | | | image* are gd functions without support for svg hence we are not able to resize svg. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | [tx-robot] updated from transifexNextcloud bot2020-03-0212-8/+28
| | | |
* | | | Merge pull request #19714 from ↵Roeland Jago Douma2020-03-0110-230/+21
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/babel/core-7.8.6 Bump @babel/core from 7.8.4 to 7.8.6
| * | | | Bump @babel/core from 7.8.4 to 7.8.6dependabot-preview[bot]2020-03-0110-230/+21
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [@babel/core](https://github.com/babel/babel) from 7.8.4 to 7.8.6. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.8.4...v7.8.6) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | Merge pull request #19712 from ↵Roeland Jago Douma2020-03-014-7/+7
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/vue-router-3.1.6 Bump vue-router from 3.1.5 to 3.1.6
| * | | | Bump vue-router from 3.1.5 to 3.1.6dependabot-preview[bot]2020-03-014-7/+7
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [vue-router](https://github.com/vuejs/vue-router) from 3.1.5 to 3.1.6. - [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.1.5...v3.1.6) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | Merge pull request #19710 from ↵Roeland Jago Douma2020-03-012-59/+87
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/babel-eslint-10.1.0 Bump babel-eslint from 10.0.3 to 10.1.0
| * | | | Bump babel-eslint from 10.0.3 to 10.1.0dependabot-preview[bot]2020-02-292-59/+87
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | Bumps [babel-eslint](https://github.com/babel/babel-eslint) from 10.0.3 to 10.1.0. - [Release notes](https://github.com/babel/babel-eslint/releases) - [Commits](https://github.com/babel/babel-eslint/compare/v10.0.3...v10.1.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | | | Merge pull request #19709 from ↵Roeland Jago Douma2020-03-0122-332/+406
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/babel/preset-env-7.8.6 Bump @babel/preset-env from 7.8.3 to 7.8.6
| * | | | Bump @babel/preset-env from 7.8.3 to 7.8.6dependabot-preview[bot]2020-02-2922-332/+406
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [@babel/preset-env](https://github.com/babel/babel) from 7.8.3 to 7.8.6. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.8.3...v7.8.6) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* | | | [tx-robot] updated from transifexNextcloud bot2020-03-016-14/+14
| | | |