]>
source.dussan.org Git - nextcloud-server.git/log
Joas Schilling [Wed, 30 Sep 2020 14:17:18 +0000 (16:17 +0200)]
Increase the timeout of statuses
Signed-off-by: Joas Schilling <coding@schilljs.com>
Roeland Jago Douma [Thu, 1 Oct 2020 06:29:27 +0000 (08:29 +0200)]
Merge pull request #23116 from nextcloud/backport/23113/stable20
[stable20] Change wording from 'custom status' to 'status message'
Jan C. Borchardt [Wed, 30 Sep 2020 14:15:29 +0000 (16:15 +0200)]
Change wording from 'custom status' to 'status message'
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Signed-off-by: Gary Kim <gary@garykim.dev>
Roeland Jago Douma [Wed, 30 Sep 2020 11:48:05 +0000 (13:48 +0200)]
Merge pull request #23098 from nextcloud/backport/22999/stable20
[stable20] Adjust scroll container height to make it a proper boundary element for actions
Roeland Jago Douma [Tue, 29 Sep 2020 19:35:17 +0000 (21:35 +0200)]
Merge pull request #23095 from nextcloud/backport/23043/stable20
[stable20] Avoid crash when unauthenticated users make weather-related requests
Julius Härtl [Tue, 22 Sep 2020 10:23:53 +0000 (12:23 +0200)]
Adjust scroll container height to make it a proper boundary element for actions
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Roeland Jago Douma [Tue, 29 Sep 2020 14:38:56 +0000 (16:38 +0200)]
Merge pull request #23092 from nextcloud/backport/23083/stable20
[stable20] Generate exception to log on php errors
Julien Veyssier [Fri, 25 Sep 2020 08:42:30 +0000 (10:42 +0200)]
avoid crash when unauthenticated users make weather-related requests, mention it in UI
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
Roeland Jago Douma [Tue, 29 Sep 2020 10:16:00 +0000 (12:16 +0200)]
Merge pull request #23085 from nextcloud/backport/23013/stable20
[stable20] Show federation and email results also with exact user match unless c…
Roeland Jago Douma [Tue, 29 Sep 2020 09:52:15 +0000 (11:52 +0200)]
Merge pull request #23084 from nextcloud/backport/22983/stable20
[stable20] Sync all users to the system addresssbook
Julius Härtl [Tue, 29 Sep 2020 06:54:53 +0000 (08:54 +0200)]
Generate exception to log on php errors
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Joas Schilling [Wed, 23 Sep 2020 08:21:55 +0000 (10:21 +0200)]
Show federation and email results also with exact user match unless containing @
Before when you have a user "smith" and a federated user "smith@example.com"
you could see the federation result with "smit" but not with "smith" anymore.
With most LDAP configurations and local backend setups this is disturbing and
causes issues.
The idea of not showing the email and federation on a matching user was with:
Local user registered with "smith@example.com" user id and having that same
email / cloud id in your contacts addressbook. So we now only hide those
"side results" when the search does contain an @
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Mon, 21 Sep 2020 07:01:39 +0000 (09:01 +0200)]
Sync all users to the system addresssbook
Signed-off-by: Joas Schilling <coding@schilljs.com>
Roeland Jago Douma [Mon, 28 Sep 2020 10:40:18 +0000 (12:40 +0200)]
Merge pull request #23072 from nextcloud/backport/23051/stable20
[stable20] Fix app text going too far down on hover/focus
Roeland Jago Douma [Mon, 28 Sep 2020 10:24:23 +0000 (12:24 +0200)]
Merge pull request #23029 from nextcloud/backport/23024/stable20
[stable20] Add occ command to set theming values
Jan C. Borchardt [Fri, 25 Sep 2020 15:17:26 +0000 (17:17 +0200)]
Fix app text going too far down on hover/focus
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Roeland Jago Douma [Mon, 28 Sep 2020 07:33:56 +0000 (09:33 +0200)]
Merge pull request #23032 from nextcloud/backport/23015/stable20
[stable20] Log slow dashboard widgets
Roeland Jago Douma [Mon, 28 Sep 2020 07:32:40 +0000 (09:32 +0200)]
Merge pull request #23048 from nextcloud/backport/23034/stable20
[stable20] Fix numeric folders throwing on markDirty
Joas Schilling [Thu, 24 Sep 2020 12:58:44 +0000 (14:58 +0200)]
Fix numeric folders throwing on markDirty
TypeError: strpos() expects parameter 1 to be string, int given
The problem is that in cacheNode() we strip of any slashes, so
a folder "0/" will be trimmed to "0" and be used as an array key.
Since PHP automatically casts numeric array keys to integers,
you afterwards get $nodePath as int(0). Since it's now a number,
the strpos() function does not accept it anymore. Simply casting
$nodePath to a string again in the foreach solves the issue
Signed-off-by: Joas Schilling <coding@schilljs.com>
Roeland Jago Douma [Thu, 24 Sep 2020 19:32:28 +0000 (21:32 +0200)]
Merge pull request #23030 from nextcloud/backport/22948/stable20
[stable20] Add more integration tests for "files:transfer-ownership" command
Roeland Jago Douma [Thu, 24 Sep 2020 19:30:23 +0000 (21:30 +0200)]
Merge pull request #23038 from nextcloud/fix-running-video-verification-integration-tests-in-drone-in-stable20
[stable20] Fix running video verification integration tests in Drone
Daniel Calviño Sánchez [Thu, 24 Sep 2020 14:52:04 +0000 (16:52 +0200)]
Fix running video verification integration tests in Drone in stable20
In order to run the video verification integration tests the Talk app
needs to be cloned in a branch compatible with the server.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Joas Schilling [Wed, 23 Sep 2020 10:14:31 +0000 (12:14 +0200)]
Log a warning if a "lazy" initial state loads longer than 1 second
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Wed, 23 Sep 2020 10:14:01 +0000 (12:14 +0200)]
Log an error if a dashboard widget loads longer than 1 second
Signed-off-by: Joas Schilling <coding@schilljs.com>
Daniel Calviño Sánchez [Fri, 18 Sep 2020 16:35:06 +0000 (18:35 +0200)]
Add integration tests to check that only the given path is transferred
Until recently (it was fixed in
ac2999a26a ) when a path was transferred
other shares with the target user were removed, so a test was added to
ensure that it does not happen again.
Besides that a test to ensure that other files with the target user are
not transferred was added too (it did not fail before, but seemed
convenient to have that covered too :-) ).
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez [Fri, 18 Sep 2020 16:32:59 +0000 (18:32 +0200)]
Add integration tests for transferring files of a user with a risky name
The files:transfer-ownership performs a sanitization of users with
"risky" display names (including characters like "\" or "/").
In order to allow (escaped) double quotes in the display name the
regular expression used in the "user XXX with displayname YYY exists"
step had to be adjusted.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez [Fri, 18 Sep 2020 16:32:23 +0000 (18:32 +0200)]
Add integration test for transferring the path of a single file
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Julius Härtl [Thu, 24 Sep 2020 06:20:03 +0000 (08:20 +0200)]
Fix tests
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Julius Härtl [Wed, 23 Sep 2020 15:48:48 +0000 (17:48 +0200)]
Add occ command to set theming values
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Roeland Jago Douma [Thu, 24 Sep 2020 11:41:12 +0000 (13:41 +0200)]
Merge pull request #23000 from nextcloud/version/20.0.0/RC2
20 RC2
Roeland Jago Douma [Thu, 24 Sep 2020 09:31:39 +0000 (11:31 +0200)]
Merge pull request #23026 from nextcloud/backport/23014/stable20
[stable20] Make 'Reasons to use Nextcloud' button translatable, fix #22977
Roeland Jago Douma [Thu, 24 Sep 2020 07:37:22 +0000 (09:37 +0200)]
Merge pull request #23001 from nextcloud/backport/22940/stable20
[stable20] Never copy the share link when the password is forced
Jan C. Borchardt [Wed, 23 Sep 2020 08:27:42 +0000 (10:27 +0200)]
Make 'Reasons to use Nextcloud' button translatable, fix #22977
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Roeland Jago Douma [Thu, 24 Sep 2020 07:24:42 +0000 (09:24 +0200)]
Merge pull request #23018 from nextcloud/backport/23016/stable20
[stable20] Don't log a known shared section
Joas Schilling [Wed, 23 Sep 2020 10:23:06 +0000 (12:23 +0200)]
Don't log "duplicate section" for the shared "connected-accounts" section
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Wed, 23 Sep 2020 08:46:50 +0000 (10:46 +0200)]
Merge pull request #23009 from nextcloud/backport/23008/stable20
[stable20] Add padding to the empty content and center it
Joas Schilling [Tue, 22 Sep 2020 17:37:42 +0000 (19:37 +0200)]
Add padding to the empty content and center it
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Fri, 18 Sep 2020 12:06:01 +0000 (14:06 +0200)]
Never copy the share link when the password is forced
Signed-off-by: Joas Schilling <coding@schilljs.com>
Roeland Jago Douma [Tue, 22 Sep 2020 11:08:21 +0000 (13:08 +0200)]
Merge pull request #22928 from nextcloud/backport/22915/stable20
[stable20] improve handling of out of space errors for smb
Roeland Jago Douma [Tue, 22 Sep 2020 11:05:52 +0000 (13:05 +0200)]
20 RC2
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
John Molakvoæ [Fri, 18 Sep 2020 22:02:01 +0000 (00:02 +0200)]
Merge pull request #22946 from nextcloud/backport/22924/stable20
[stable20] Make sure most app names don’t ellipsize, fix #22845, fix #22219
Morris Jobke [Fri, 18 Sep 2020 18:47:30 +0000 (20:47 +0200)]
Fix transifex name of dashboard app
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke [Fri, 18 Sep 2020 18:43:29 +0000 (20:43 +0200)]
Merge pull request #22950 from nextcloud/backport/22949/stable20
[stable20] Add transifex config for all new apps
Morris Jobke [Fri, 18 Sep 2020 18:38:35 +0000 (20:38 +0200)]
Add transifex config for all new apps
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Jan C. Borchardt [Thu, 17 Sep 2020 17:56:53 +0000 (19:56 +0200)]
Make sure most app names don’t ellipsize, fix #22845, fix #22219
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Morris Jobke [Fri, 18 Sep 2020 16:14:29 +0000 (18:14 +0200)]
Merge pull request #22938 from nextcloud/backport/22911/stable20
[stable20] Allow to run occ preview:repair in parallel
Morris Jobke [Fri, 18 Sep 2020 16:14:17 +0000 (18:14 +0200)]
Merge pull request #22935 from nextcloud/backport/22868/stable20
[stable20] Fix/unified search papercuts
Morris Jobke [Thu, 17 Sep 2020 14:30:33 +0000 (16:30 +0200)]
Migrate verbose messages to inline syntax of writeln()
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke [Thu, 17 Sep 2020 14:30:11 +0000 (16:30 +0200)]
Show lock messages only in verbose mode
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke [Thu, 17 Sep 2020 14:03:34 +0000 (16:03 +0200)]
Allow to run occ preview:repair in parallel
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
John Molakvoæ (skjnldsv) [Fri, 18 Sep 2020 08:00:09 +0000 (10:00 +0200)]
Prevent empty search placeholder
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
John Molakvoæ (skjnldsv) [Tue, 15 Sep 2020 15:47:30 +0000 (17:47 +0200)]
Build assets and fix unified search event syntax
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
John Molakvoæ (skjnldsv) [Tue, 15 Sep 2020 15:16:34 +0000 (17:16 +0200)]
Properly show loading state if there are still pending requests
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
John Molakvoæ (skjnldsv) [Tue, 15 Sep 2020 15:10:44 +0000 (17:10 +0200)]
Properly use form role=search and unify reset button
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
John Molakvoæ (skjnldsv) [Tue, 15 Sep 2020 13:01:50 +0000 (15:01 +0200)]
Fix loading error catch
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Roeland Jago Douma [Fri, 18 Sep 2020 09:32:38 +0000 (11:32 +0200)]
Merge pull request #22932 from nextcloud/backport/22925/stable20
[stable20] Dashboard: Fix accessibility skip links
Jan C. Borchardt [Thu, 17 Sep 2020 18:31:21 +0000 (20:31 +0200)]
Dashboard: Fix accessibility skip links
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Robin Appelman [Thu, 17 Sep 2020 15:23:33 +0000 (17:23 +0200)]
improve handling of out of space errors for smb
Signed-off-by: Robin Appelman <robin@icewind.nl>
Morris Jobke [Thu, 17 Sep 2020 17:56:31 +0000 (19:56 +0200)]
Merge pull request #22794 from nextcloud/version/20.0.0/rc1
20 RC1
Morris Jobke [Thu, 17 Sep 2020 17:50:44 +0000 (19:50 +0200)]
Provide correct PHPDoc tags for public namespace
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke [Thu, 17 Sep 2020 16:19:54 +0000 (18:19 +0200)]
Merge pull request #22919 from J0WI/https-stackoverflow.com
Update urls to stackoverflow.com to "HTTPS"
Roeland Jago Douma [Fri, 11 Sep 2020 06:56:14 +0000 (08:56 +0200)]
20 RC1
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Morris Jobke [Thu, 17 Sep 2020 16:14:10 +0000 (18:14 +0200)]
Merge pull request #22910 from nextcloud/user-quota-event
add event to allow apps to overwrite user quota
Morris Jobke [Thu, 17 Sep 2020 16:13:56 +0000 (18:13 +0200)]
Autoloader update
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke [Thu, 17 Sep 2020 16:10:53 +0000 (18:10 +0200)]
Merge pull request #22917 from nextcloud/Valdnet-patch-4
l10n: Add parentheses for unification
Morris Jobke [Thu, 17 Sep 2020 16:10:40 +0000 (18:10 +0200)]
Merge pull request #22920 from nextcloud/Valdnet-patch-5
l10n: Add a dot
Valdnet [Thu, 17 Sep 2020 15:40:18 +0000 (17:40 +0200)]
l10n: Add a dot
J0WI [Thu, 17 Sep 2020 15:37:30 +0000 (17:37 +0200)]
Update urls to stackoverflow.com to "HTTPS"
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Valdnet [Thu, 17 Sep 2020 15:32:25 +0000 (17:32 +0200)]
l10n: Add parentheses for unification
Robin Appelman [Thu, 17 Sep 2020 13:06:50 +0000 (15:06 +0200)]
add event to allow apps to overwrite user quota
Signed-off-by: Robin Appelman <robin@icewind.nl>
Morris Jobke [Thu, 17 Sep 2020 10:22:42 +0000 (12:22 +0200)]
Merge pull request #22844 from nextcloud/enh/richdocumentscode-arm
Support architecture limitations for apps and allow richdocumentscode_arm64 though htaccess
Morris Jobke [Thu, 17 Sep 2020 09:55:07 +0000 (11:55 +0200)]
Merge pull request #22898 from nextcloud/fix/16696/add-spaces-and-fix-variable-name
Fix variable name and add spaces around path in info log line
Morris Jobke [Thu, 17 Sep 2020 09:54:47 +0000 (11:54 +0200)]
Merge pull request #22903 from nextcloud/techdebt/16696/no-need-to-get-full-path-again
Do not fetch the normalized full path again if it is already available
Morris Jobke [Thu, 17 Sep 2020 09:53:28 +0000 (11:53 +0200)]
Merge pull request #22902 from nextcloud/fix/16696/proper-target-path-for-share-event
Create proper target path for shared storage fopen event
Morris Jobke [Thu, 17 Sep 2020 07:56:45 +0000 (09:56 +0200)]
Do not fetch the normalized full path again if it is already available
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke [Thu, 17 Sep 2020 07:52:31 +0000 (09:52 +0200)]
Create proper target path for shared storage fopen event
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke [Thu, 17 Sep 2020 06:58:10 +0000 (08:58 +0200)]
Fix variable name and add spaces around path in info log line
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Roeland Jago Douma [Thu, 17 Sep 2020 06:55:35 +0000 (08:55 +0200)]
Merge pull request #22867 from nextcloud/shared-storage-init-less
Shared storage optimizations
Julius Härtl [Mon, 14 Sep 2020 08:47:38 +0000 (10:47 +0200)]
Allow to specify supported architectures in appinfo.xml
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Julius Härtl [Mon, 14 Sep 2020 08:30:12 +0000 (10:30 +0200)]
Add htaccess exception for richdocumentscode_arm64
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Julius Härtl [Mon, 14 Sep 2020 08:29:52 +0000 (10:29 +0200)]
Install richdocumentscode depending on the architecture
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Roeland Jago Douma [Thu, 17 Sep 2020 06:51:20 +0000 (08:51 +0200)]
Merge pull request #22890 from nextcloud/techdebt/18680/help-static-code-analysis-understand-code
Help static code analysis to understand code
Roeland Jago Douma [Thu, 17 Sep 2020 06:39:48 +0000 (08:39 +0200)]
Merge pull request #22874 from nextcloud/Valdnet-patch-4
l10n: Add parentheses
Morris Jobke [Thu, 17 Sep 2020 05:47:21 +0000 (07:47 +0200)]
Merge pull request #22885 from nextcloud/bugfix/noid/show-group-displayname-in-workflows
Show group display name in workflows
Nextcloud bot [Thu, 17 Sep 2020 02:27:04 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Valdnet [Wed, 16 Sep 2020 19:04:15 +0000 (21:04 +0200)]
l10n: Change the size of the letter
Morris Jobke [Wed, 16 Sep 2020 18:44:46 +0000 (20:44 +0200)]
Merge pull request #22888 from nextcloud/techdebt/18680/remove-unused-code
Remove not needed semicolon and PHPDoc hint
Roeland Jago Douma [Wed, 16 Sep 2020 17:33:00 +0000 (19:33 +0200)]
Merge pull request #22880 from nextcloud/crl/noid/revoke-secsignid
Revoke secsignid
Morris Jobke [Wed, 16 Sep 2020 14:54:10 +0000 (16:54 +0200)]
Update baseline
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Daniel Kesselberg [Wed, 8 Jul 2020 11:49:11 +0000 (13:49 +0200)]
Help static code analysis to understand code.
It adds proper type hints to private namespace to allow private namespace methods.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Morris Jobke [Wed, 16 Sep 2020 14:25:11 +0000 (16:25 +0200)]
Merge pull request #22884 from nextcloud/phpdoc/21873/define-deprecated-version
Specific version for @deprecated PHPDoc
Morris Jobke [Wed, 16 Sep 2020 14:18:43 +0000 (16:18 +0200)]
Remove not needed semicolon and PHPDoc hint
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke [Wed, 16 Sep 2020 14:00:58 +0000 (16:00 +0200)]
Merge pull request #22883 from nextcloud/techdebt/noid/remove-phan
Remove phan config - was replaced by Psalm
Morris Jobke [Wed, 16 Sep 2020 13:53:51 +0000 (15:53 +0200)]
Remove @suppress SqlInjectionChecker
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Joas Schilling [Wed, 16 Sep 2020 13:34:10 +0000 (15:34 +0200)]
Show group display name in workflows
Signed-off-by: Joas Schilling <coding@schilljs.com>
Morris Jobke [Wed, 16 Sep 2020 13:09:00 +0000 (15:09 +0200)]
Specific version for @deprecated PHPDoc
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke [Wed, 16 Sep 2020 12:46:29 +0000 (14:46 +0200)]
Remove phan config - was replaced by Psalm
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Robin Appelman [Tue, 15 Sep 2020 15:01:33 +0000 (17:01 +0200)]
optimize View::getPath if we already know the storage id
Signed-off-by: Robin Appelman <robin@icewind.nl>
Morris Jobke [Wed, 16 Sep 2020 11:45:56 +0000 (13:45 +0200)]
Merge pull request #22865 from nextcloud/dashboard/design-fixing
Dashboard design detail fixing
Morris Jobke [Wed, 16 Sep 2020 11:41:53 +0000 (13:41 +0200)]
Merge pull request #22866 from nextcloud/fix/recommendations-alt
Fix recommendation design details