summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #29327 from ↵John Molakvoæ2021-10-271-1/+1
|\ | | | | | | nextcloud/bugfix/noid/do-not-make-actionbuttons-spans-too-transparent
| * Do notr make action icons too transparentmarco2021-10-191-1/+1
| | | | | | | | Signed-off-by: marco <marcoambrosini@pm.me>
* | [tx-robot] updated from transifexNextcloud bot2021-10-274-2/+10
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-10-2612-0/+44
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #27949 from CarlSchwan/work/carl/password-reset-autocompleteLouis2021-10-254-4/+10
|\ \ | | | | | | Add autocompletion for password reset
| * | Add autocompletion for password resetCarl Schwan2021-10-224-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using autocomplete="current-password" and autocomplete="new-password" will help browser with integrated password managers to generate safe password for the users. See https://developer.apple.com/documentation/security/password_autofill/enabling_password_autofill_on_an_html_input_element and https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/password#allowing_autocomplete. Also unify autocapitalize="none" autocorrect="off" behavior in a few other places for password input fields. Close #27885 Signed-off-by: Carl Schwan <carl@carlschwan.eu> Co-Authored-By: Julien Veyssier <eneiluj@posteo.net> Co-Authored-By: Pytal <24800714+Pytal@users.noreply.github.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-10-2510-0/+22
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-10-242-432/+0
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #29363 from nextcloud/fair-use-pushJohn Molakvoæ2021-10-233-1/+42
|\ \ \
| * | | Show warning on admin settings pageVitor Mattos2021-10-232-0/+25
| | | | | | | | | | | | | | | | Signed-off-by: Vitor Mattos <vitor@php.rio>
| * | | add check isFairUseOfFreePushService on loginVitor Mattos2021-10-231-1/+17
| |/ / | | | | | | | | | Signed-off-by: Vitor Mattos <vitor@php.rio>
* / / [tx-robot] updated from transifexNextcloud bot2021-10-236-10/+18
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-10-224-0/+24
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix login button alignmentCarl Schwan2021-10-211-1/+0
| | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | [tx-robot] updated from transifexNextcloud bot2021-10-2116-0/+104
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Add an OCS endpoint for the hovercard contact actionsJoas Schilling2021-10-202-0/+86
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | [tx-robot] updated from transifexNextcloud bot2021-10-2094-94/+140
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #28541 from nextcloud/path-prefix-index2Robin Appelman2021-10-193-0/+17
|\ \ | |/ |/| add a prefix index to filecache.path, attempt 2
| * disable path prefix index on postgresql for nowRobin Appelman2021-10-083-3/+8
| | | | | | | | | | | | | | having the index work properly for the queries we need it for requires some additional options which dbal does not support at the momement. to prevent making it harder to add the correct index later on we don't create the index for now on postgresql Signed-off-by: Robin Appelman <robin@icewind.nl>
| * add a prefix index to filecache.pathRobin Appelman2021-10-083-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | The reason that `filecache.path` hasn't had an index added is the mysql limitation of ~1kb for indexeded fields, which is to small for the `path`, however mysql supports indexing only the first N bytes of a column instead of the entire column, allowing us to add an index even if the column is to long. Because the index doesn't cover the entire column it can't be used in all situations where a normal index would be used, but it does cover the `path like 'folder/path/%'` queries that are used in various places. Sqlite and Postgresql don't support prefix indexes, but they also don't have the 1kb limit and DBAL handles the differences in index creation. Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #29295 from nextcloud/fix/button-clipJulius Härtl2021-10-191-1/+2
|\ \
| * | Fix cliping issues in alternative logging buttonsCarl Schwan2021-10-181-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | The issues was caused because the button with its margins was bigger than the parent. Instead of setting the margin of the button, add padding to the parent. This is more reliable. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | Merge pull request #28751 from nextcloud/feat/28139/profile-pagePytal2021-10-1840-167/+1828
|\ \ \
| * | | Profile frontendChristopher Ng2021-10-1928-164/+1270
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * | | Profile backendChristopher Ng2021-10-1910-3/+526
| | | | | | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
| * | | Add profile templatesChristopher Ng2021-10-182-0/+32
| | | | | | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | | [tx-robot] updated from transifexNextcloud bot2021-10-1976-76/+76
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Deprecate PHP7.3 for Nextcloud 23Christoph Wurst2021-10-181-2/+2
|/ / / | | | | | | | | | | | | | | | | | | * 7.3 reaches EOL shortly after the release of 23.0.0 * Nextcloud 24 will require PHP7.4 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* / / Bump core-js from 3.18.2 to 3.18.3dependabot[bot]2021-10-1715-39/+39
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [core-js](https://github.com/zloirock/core-js) from 3.18.2 to 3.18.3. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/compare/v3.18.2...v3.18.3) --- updated-dependencies: - dependency-name: core-js dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | Merge pull request #29210 from nextcloud/work/status-navbar-vueCarl Schwan2021-10-151-8/+33
|\ \ | | | | | | Add current status in navbar
| * | Add current status in navbarCarl Schwan2021-10-151-8/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This ports the code to vue and if the user_status app is disabled this goes back to the previous behavior. The Avatar vue components detects changes of the status automatically. Signed-off-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Merge pull request #27217 from ↵John Molakvoæ2021-10-152-0/+157
|\ \ \ | | | | | | | | | | | | nextcloud/techdebt/noid/make-debugging-a-cron-job-easier
| * | | Adjust namespace and print a message when the job was skippedJoas Schilling2021-10-141-5/+14
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | Move queries to the joblistJoas Schilling2021-10-142-24/+3
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | Add a command to show info about a background job and force-execute itJoas Schilling2021-10-142-0/+169
| |/ / | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-10-152-2/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Switch to the "new" jcropChristoph Wurst2021-10-143-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | The old one didn't work with recent versions of node. The patched one does. This also replaces the github dep with a real npm registry one. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | Merge pull request #29157 from nextcloud/enh/opendocumentJulius Härtl2021-10-142-0/+8
|\ \ \ | |/ / |/| |
| * | Add OpenDocument flat mimetypes and x-office/drawing aliasJulius Härtl2021-10-122-0/+8
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Revert "Merge pull request #28817 from ↵Christopher Ng2021-10-1118-150/+152
| | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/bootstrap-5.1.1" This reverts commit 6b2711f4c317713c638af2b70caec40bfda3694b, reversing changes made to d0a1d99c89f83b4b71a6d8e89d7674f77e4654ed. Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | Bump core-js from 3.18.1 to 3.18.2dependabot[bot]2021-10-1020-89/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [core-js](https://github.com/zloirock/core-js) from 3.18.1 to 3.18.2. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/compare/v3.18.1...v3.18.2) --- updated-dependencies: - dependency-name: core-js dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | Bump jquery-ui from 1.12.1 to 1.13.0dependabot[bot]2021-10-1018-57/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [jquery-ui](https://github.com/jquery/jquery-ui) from 1.12.1 to 1.13.0. - [Release notes](https://github.com/jquery/jquery-ui/releases) - [Commits](https://github.com/jquery/jquery-ui/compare/1.12.1...1.13.0) --- updated-dependencies: - dependency-name: jquery-ui dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | Merge pull request #29145 from ↵dependabot[bot]2021-10-1018-71/+71
|\ \ \ | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/nextcloud/files-2.1.0
| * | | Bump @nextcloud/files from 2.0.0 to 2.1.0dependabot[bot]2021-10-1018-71/+71
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps @nextcloud/files from 2.0.0 to 2.1.0. --- updated-dependencies: - dependency-name: "@nextcloud/files" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* / | [tx-robot] updated from transifexNextcloud bot2021-10-102-0/+58
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* / add better index for finding unindexed pathsRobin Appelman2021-10-073-0/+12
|/ | | | | | | | | | for the following query 'SELECT "path" FROM "oc_filecache" WHERE ("storage" = $storage) AND ("size" < 0) ORDER BY "fileid" DESC LIMIT 1;' currently the database will in some cases decide to priorize the sort by fileid over the filter when picking what index to use, resulting in a much slower query. by creating an index that allows first sorting by fileid and also filter by storage and size this case will be greatly sped up Signed-off-by: Robin Appelman <robin@icewind.nl>
* [tx-robot] updated from transifexNextcloud bot2021-10-072-0/+34
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #25774 from nextcloud/add-ripple-color-variablesPytal2021-10-063-8/+30
|\
| * Add new variables for buttonsmarco2021-09-302-0/+22
| | | | | | | | Signed-off-by: marco <marcoambrosini@pm.me>
| * Do not target vue buttons with server rulesMarco Ambrosini2021-09-301-8/+8
| | | | | | | | Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>