aboutsummaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2019-07-30128-382/+382
|
* Merge pull request #16563 from nextcloud/enh/lostcontroller/better_exceptionsMorris Jobke2019-07-292-18/+42
|\ | | | | Use proper exception in lostController
| * Use proper exception in lostControllerRoeland Jago Douma2019-07-272-18/+42
| | | | | | | | | | | | | | | | | | | | There is no need to log the expcetion of most of the stuff here. We should properly log them but an exception is excessive. This moves it to a proper exception which we can catch and then log. The other exceptions will still be fully logged. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #16571 from nextcloud/enh/update_preview_controllerMorris Jobke2019-07-291-6/+1
|\ \ | | | | | | Update PreviewController
| * | Update PreviewControllerRoeland Jago Douma2019-07-261-6/+1
| |/ | | | | | | | | | | | | | | | | | | | | | | | | The constructor is called with the userId. However if a user is not logged in this is null. Which means that we get an exception instead of this being handled gracefully in the middleware. There are cleaner solutions. But this is the solution that is the easiest to apply without lots of work and risk of breaking things (handling the logged in middleware before initializing the controller etc). Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | [tx-robot] updated from transifexNextcloud bot2019-07-292-0/+2
| |
* | Merge pull request #16573 from nextcloud/fix-default-timeouts-in-oc-notificationRoeland Jago Douma2019-07-288-16/+118
|\ \ | | | | | | Fix default timeouts in OC.Notification
| * | Add unit tests for "OC.Notification.hide()"Daniel Calviño Sánchez2019-07-261-0/+56
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Fix default timeouts in OC.NotificationDaniel Calviño Sánchez2019-07-268-11/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When no timeout was given "show()" used the default timeout of "OCP.Toast", which is 7 seconds instead of indefinitely as stated in the documentation of "show()". "showHtml()" should also indefinitely show the notification if no timeout is given, but due to the strict comparison the notification was indefinitely shown only when a timeout of 0 was explicitly given. Now both methods show the notification indefinitely (or until it is explicitly hidden) when no timeout is given. The unit tests did not catch this error because "showHtml()" had no tests (as before the move to Toastify it was called from "show()" and thus implicitly tested), and because "show()" verified that "hide()" was not called after some time; "hide()" is no longer called from "show()" since "OCP.Toast" is used internally, so the test always passed even if the notification was indeed hidden. Now the test is based on whether the element is found or not, and explicit tests were added too for "showHtml()". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Fix mixed test for "show" and "showTemporary"Daniel Calviño Sánchez2019-07-261-1/+19
| | | | | | | | | | | | | | | | | | | | | | | | "showTemporary()" when a timeout was given was being tested along with the "show()" tests; now there are two separate tests when a timeout is given, one for "showTemporary()" and one for "show()". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Check number of elements instead of if the jQuery object is definedDaniel Calviño Sánchez2019-07-261-4/+4
| |/ | | | | | | | | | | | | | | Tje jQuery object created through "$('#testArea .toastify')" will be always defined even if no elements were found, so the check does not really work; instead, it should be checked the number of elements found. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* / [tx-robot] updated from transifexNextcloud bot2019-07-282-6/+6
|/
* [tx-robot] updated from transifexNextcloud bot2019-07-262-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2019-07-252-0/+6
|
* Remove files_texteditor from shipped appsJulius Härtl2019-07-241-1/+0
| | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* [tx-robot] updated from transifexNextcloud bot2019-07-232-0/+8
|
* Merge pull request #16487 from ↵Roeland Jago Douma2019-07-221-1/+1
|\ | | | | | | | | nextcloud/dependabot/npm_and_yarn/blueimp-md5-2.11.0 Bump blueimp-md5 from 2.10.0 to 2.11.0
| * Bump blueimp-md5 from 2.10.0 to 2.11.0dependabot-preview[bot]2019-07-211-1/+1
| | | | | | | | | | | | | | | | | | Bumps [blueimp-md5](https://github.com/blueimp/JavaScript-MD5) from 2.10.0 to 2.11.0. - [Release notes](https://github.com/blueimp/JavaScript-MD5/releases) - [Commits](https://github.com/blueimp/JavaScript-MD5/compare/v2.10.0...v2.11.0) 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 bot2019-07-224-10/+14
|/
* [tx-robot] updated from transifexNextcloud bot2019-07-2110-28/+108
|
* Merge pull request #16470 from ↵Morris Jobke2019-07-201-1/+2
|\ | | | | | | | | nextcloud/bugfix/noid/settings-menu-border-top_new Add border-top to settings menu when its open
| * Add border-top to settings menu when its openGreta Doci2019-07-191-1/+2
| | | | | | | | Signed-off-by: Greta Doci <gretadoci@gmail.com>
* | [tx-robot] updated from transifexNextcloud bot2019-07-206-4/+6
| |
* | [tx-robot] updated from transifexNextcloud bot2019-07-1916-0/+16
| |
* | Merge pull request #16420 from nextcloud/bugfix/noid/settings-menu-border-topMorris Jobke2019-07-181-2/+4
|\| | | | | Add border-top to settings menu when its open ref #16076
| * Add border-top to settings menu when its open ref #16076Greta Doci2019-07-171-2/+4
| | | | | | | | Signed-off-by: Greta Doci <gretadoci@gmail.com>
* | [tx-robot] updated from transifexNextcloud bot2019-07-182-0/+2
| |
* | Merge pull request #15040 from ↵Morris Jobke2019-07-172-20/+23
|\ \ | | | | | | | | | | | | nextcloud/feature/13980/push-for-deleted-notifications Notifications overhaul
| * | Keep the old method as a fallback and adjust the testsJoas Schilling2019-07-161-2/+2
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | Fix new core notifierJoas Schilling2019-07-152-20/+23
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | [tx-robot] updated from transifexNextcloud bot2019-07-172-2/+2
| | |
* | | Merge pull request #14228 from nextcloud/feature/noid/add-metadata-etagMorris Jobke2019-07-151-0/+73
|\ \ \ | | | | | | | | Add DB table to extend filecache with metadata etag, creation and upload time
| * | | Add DB table to extend filecache with metadata etag, creation time and ↵Morris Jobke2019-07-151-0/+73
| |/ / | | | | | | | | | | | | | | | upload time Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | Merge pull request #16334 from nextcloud/feature/noid/enterprise-logoRoeland Jago Douma2019-07-152-0/+1
|\ \ \ | |/ / |/| | Add enterprise logo
| * | Add enterprise logoMorris Jobke2019-07-152-0/+1
| | | | | | | | | | | | | | | | | | Also set it as theming logo if the subscription is valid. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | Merge pull request #16369 from ↵Morris Jobke2019-07-159-16/+21
|\ \ \ | | | | | | | | | | | | | | | | nextcloud/rename-parameter-in-ocp-toast-for-consistency-with-oc-notification Rename parameter in OCP.Toast for consistency with OC.Notification
| * | | Rename parameter in OCP.Toast for consistency with OC.NotificationDaniel Calviño Sánchez2019-07-129-16/+21
| | |/ | |/| | | | | | | | | | | | | | | | | | | This fixes HTML messages in "OC.Notification.showTemporary" (as "showHtml" was not set based on "isHTML"), and also makes OCP.Toast to keep the old OC.Notification API when used directly. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | [tx-robot] updated from transifexNextcloud bot2019-07-144-4/+4
| | |
* | | [tx-robot] updated from transifexNextcloud bot2019-07-132-2/+2
|/ /
* / [tx-robot] updated from transifexNextcloud bot2019-07-1210-10/+24
|/
* [tx-robot] updated from transifexNextcloud bot2019-07-1110-8/+18
|
* Merge pull request #16308 from nextcloud/fix/undefined-offset-0Morris Jobke2019-07-101-3/+6
|\ | | | | Prevent undefined offset 0 in findByUserIdOrMail
| * Return first value from $usersDaniel Kesselberg2019-07-091-3/+6
| | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | [tx-robot] updated from transifexNextcloud bot2019-07-106-0/+6
| |
* | Merge pull request #16310 from nextcloud/enh/drop-execution-contextRoeland Jago Douma2019-07-091-1/+1
|\ \ | | | | | | Don't send executionContexts for Clear-Site-Data
| * | Don't send executionContexts for Clear-Site-DataDaniel Kesselberg2019-07-091-1/+1
| |/ | | | | | | | | | | | | | | | | | | There are plans to remove executionContexts from the spec: https://github.com/w3c/webappsec-clear-site-data/issues/59 Firefox already removed it https://bugzilla.mozilla.org/show_bug.cgi?id=1548034 Chromium implementation is not finish: https://bugs.chromium.org/p/chromium/issues/detail?id=898503&q=clear-site-data&sort=-modified&colspec=ID%20Pri%20M%20Stars%20ReleaseBlock%20Component%20Status%20Owner%20Summary%20OS%20Modified Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | Merge pull request #15881 from PhieF/toggle-password-loginRoeland Jago Douma2019-07-094-3/+25
|\ \ | | | | | | adding toggle password to be able to see it when login
| * | adding toggle password to be able to see itPhie2019-07-094-3/+25
| | | | | | | | | | | | Signed-off-by: Phie <phie@phie.ovh>
* | | Bump marked to 0.7.0Roeland Jago Douma2019-07-092-2/+2
|/ / | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | [tx-robot] updated from transifexNextcloud bot2019-07-0934-34/+0
| |