]> source.dussan.org Git - nextcloud-server.git/log
nextcloud-server.git
5 years agoRespect the setting if the lookup server is disabled 15021/head
Joas Schilling [Tue, 9 Apr 2019 11:20:22 +0000 (13:20 +0200)]
Respect the setting if the lookup server is disabled

Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 9 Apr 2019 00:13:09 +0000 (00:13 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #15003 from nextcloud/version/noid/15.0.7 v15.0.7
Morris Jobke [Mon, 8 Apr 2019 21:20:58 +0000 (23:20 +0200)]
Merge pull request #15003 from nextcloud/version/noid/15.0.7

15.0.7

5 years ago15.0.7 15003/head
Morris Jobke [Mon, 8 Apr 2019 14:41:32 +0000 (16:41 +0200)]
15.0.7

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoMerge pull request #15001 from nextcloud/backport/14985/stable15
Morris Jobke [Mon, 8 Apr 2019 20:06:53 +0000 (22:06 +0200)]
Merge pull request #15001 from nextcloud/backport/14985/stable15

[stable15] Check if OCA.Files.App is available before calling

5 years agoMerge pull request #15000 from nextcloud/backport/14989/stable15
Morris Jobke [Mon, 8 Apr 2019 20:03:01 +0000 (22:03 +0200)]
Merge pull request #15000 from nextcloud/backport/14989/stable15

[stable15] Harden appdata putcontent

5 years agoCheck if OCA.Files.App is available before calling 15001/head
Julius Härtl [Mon, 8 Apr 2019 09:13:08 +0000 (11:13 +0200)]
Check if OCA.Files.App is available before calling

Signed-off-by: Julius Härtl <jus@bitgrid.net>
5 years agoHarden appdata putcontent 15000/head
Roeland Jago Douma [Mon, 8 Apr 2019 11:21:46 +0000 (13:21 +0200)]
Harden appdata putcontent

If for whatever reason appdata got into a strange state this will at
least propegate up and not make it do boom the next run.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
5 years agoMerge pull request #14968 from nextcloud/backport/13790/stable15
Morris Jobke [Mon, 8 Apr 2019 14:22:43 +0000 (15:22 +0100)]
Merge pull request #14968 from nextcloud/backport/13790/stable15

[stable15] Fix for crashing occ files:scan

5 years agoFix unnecessary boolean cast 14968/head
Morris Jobke [Wed, 6 Mar 2019 09:12:58 +0000 (10:12 +0100)]
Fix unnecessary boolean cast

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoFix for crashing occ files:scan
fretn [Thu, 24 Jan 2019 10:37:46 +0000 (11:37 +0100)]
Fix for crashing occ files:scan

when $share === false then (int)$share['share_type'] will always be equal to (int)0

which results in following crash:

[root@server nextcloud] sudo -u apache php occ files:scan someuser
The current PHP memory limit is below the recommended value of 512MB.
Starting scan for user 1 out of 1 (someuser)
An unhandled exception has been thrown:
TypeError: Argument 1 passed to OC\OCS\DiscoveryService::discover() must be of the type string, null given, called in /var/www/html/nextcloud/apps/files_sharing/lib/External/Manager.php on line 382 and defined in /var/www/html/nextcloud/lib/private/OCS/DiscoveryService.php:65
Stack trace:
0 /var/www/html/nextcloud/apps/files_sharing/lib/External/Manager.php(382): OC\OCS\DiscoveryService->discover(NULL, 'FEDERATED_SHARI...')
1 /var/www/html/nextcloud/apps/files_sharing/lib/External/Manager.php(527): OCA\Files_Sharing\External\Manager->sendFeedbackToRemote(NULL, NULL, NULL, 'decline')
2 /var/www/html/nextcloud/apps/files_sharing/lib/External/Storage.php(216): OCA\Files_Sharing\External\Manager->removeShare('files/Someth...')
3 [internal function]: OCA\Files_Sharing\External\Storage->checkStorageAvailability()
4 /var/www/html/nextcloud/lib/private/Files/Storage/Wrapper/Wrapper.php(505): call_user_func_array(Array, Array)
5 [internal function]: OC\Files\Storage\Wrapper\Wrapper->__call('checkStorageAva...', Array)
6 /var/www/html/nextcloud/lib/private/Files/Storage/Wrapper/Wrapper.php(505): call_user_func_array(Array, Array)
7 /var/www/html/nextcloud/apps/files_sharing/lib/External/Scanner.php(89): OC\Files\Storage\Wrapper\Wrapper->__call('checkStorageAva...', Array)
8 /var/www/html/nextcloud/apps/files_sharing/lib/External/Scanner.php(44): OCA\Files_Sharing\External\Scanner->scanAll()
9 /var/www/html/nextcloud/lib/private/Files/Utils/Scanner.php(245): OCA\Files_Sharing\External\Scanner->scan('', true, 3)
10 /var/www/html/nextcloud/apps/files/lib/Command/Scan.php(172): OC\Files\Utils\Scanner->scan('/someuser', true, NULL)
11 /var/www/html/nextcloud/apps/files/lib/Command/Scan.php(249): OCA\Files\Command\Scan->scanFiles('someuser', '/someuser', false, Object(Symfony\Component\Console\Output\ConsoleOutput), false, true, false)
12 /var/www/html/nextcloud/3rdparty/symfony/console/Command/Command.php(251): OCA\Files\Command\Scan->execute(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
13 /var/www/html/nextcloud/core/Command/Base.php(162): Symfony\Component\Console\Command\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
14 /var/www/html/nextcloud/3rdparty/symfony/console/Application.php(946): OC\Core\Command\Base->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
15 /var/www/html/nextcloud/3rdparty/symfony/console/Application.php(248): Symfony\Component\Console\Application->doRunCommand(Object(OCA\Files\Command\Scan), Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
16 /var/www/html/nextcloud/3rdparty/symfony/console/Application.php(148): Symfony\Component\Console\Application->doRun(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
17 /var/www/html/nextcloud/lib/private/Console/Application.php(213): Symfony\Component\Console\Application->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
18 /var/www/html/nextcloud/console.php(96): OC\Console\Application->run()
19 /var/www/html/nextcloud/occ(11): require_once('/var/www/html/n...')
20 {main}[root@server nextcloud]

Signed-off-by: fretn <frederikdelaere+github@gmail.com>
5 years agoMerge pull request #14984 from nextcloud/fix/noid/drone-yml
Morris Jobke [Mon, 8 Apr 2019 13:38:50 +0000 (14:38 +0100)]
Merge pull request #14984 from nextcloud/fix/noid/drone-yml

[stable15] Fix .drone.yml syntax

5 years agoFix .drone.yml syntax 14984/head
Morris Jobke [Mon, 8 Apr 2019 08:38:52 +0000 (10:38 +0200)]
Fix .drone.yml syntax

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 8 Apr 2019 00:14:29 +0000 (00:14 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 7 Apr 2019 00:13:31 +0000 (00:13 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 6 Apr 2019 00:13:20 +0000 (00:13 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 5 Apr 2019 00:13:25 +0000 (00:13 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14950 from nextcloud/version/noid/15.0.6 v15.0.6
Roeland Jago Douma [Thu, 4 Apr 2019 08:19:13 +0000 (09:19 +0100)]
Merge pull request #14950 from nextcloud/version/noid/15.0.6

15.0.6

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 4 Apr 2019 00:13:32 +0000 (00:13 +0000)]
[tx-robot] updated from transifex

5 years ago15.0.6 14950/head
Morris Jobke [Wed, 3 Apr 2019 16:33:17 +0000 (17:33 +0100)]
15.0.6

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 3 Apr 2019 00:13:45 +0000 (00:13 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 2 Apr 2019 00:13:48 +0000 (00:13 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14924 from nextcloud/backport/14914/stable15
Morris Jobke [Mon, 1 Apr 2019 10:01:27 +0000 (12:01 +0200)]
Merge pull request #14924 from nextcloud/backport/14914/stable15

[stable15] Fix hidden file display in grid view

5 years agoFix hidden file display in grid view 14924/head
Julius Härtl [Sat, 30 Mar 2019 11:57:18 +0000 (12:57 +0100)]
Fix hidden file display in grid view

Signed-off-by: Julius Härtl <jus@bitgrid.net>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 1 Apr 2019 00:14:07 +0000 (00:14 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 31 Mar 2019 01:12:53 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 30 Mar 2019 01:13:44 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14909 from nextcloud/version/rc/15.0.6rc1 v15.0.6RC1
Roeland Jago Douma [Fri, 29 Mar 2019 14:53:07 +0000 (15:53 +0100)]
Merge pull request #14909 from nextcloud/version/rc/15.0.6rc1

15.0.6 RC 1

5 years ago15.0.6 RC 1 14909/head
Roeland Jago Douma [Fri, 29 Mar 2019 11:57:03 +0000 (12:57 +0100)]
15.0.6 RC 1

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
5 years agoMerge pull request #14891 from nextcloud/stable15-14886
Roeland Jago Douma [Fri, 29 Mar 2019 12:32:01 +0000 (13:32 +0100)]
Merge pull request #14891 from nextcloud/stable15-14886

[stable15] Fix opening folders from different file lists

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 29 Mar 2019 01:12:59 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoFix opening folders from different file lists 14891/head
Julius Härtl [Wed, 27 Mar 2019 16:44:54 +0000 (17:44 +0100)]
Fix opening folders from different file lists

Signed-off-by: Julius Härtl <jus@bitgrid.net>
5 years agoMerge pull request #14867 from nextcloud/backport/14628/stable15
Roeland Jago Douma [Thu, 28 Mar 2019 07:52:53 +0000 (08:52 +0100)]
Merge pull request #14867 from nextcloud/backport/14628/stable15

[stable15] Fix plural rule detection for languages

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 28 Mar 2019 01:13:33 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14865 from nextcloud/backport/14603/stable15
Roeland Jago Douma [Wed, 27 Mar 2019 18:50:40 +0000 (19:50 +0100)]
Merge pull request #14865 from nextcloud/backport/14603/stable15

[stable15] Show a setup warning in case S3 object storage is used as primary storage

5 years agoFix unneeded doc link to unrelated resource 14865/head
Morris Jobke [Mon, 11 Mar 2019 10:00:21 +0000 (11:00 +0100)]
Fix unneeded doc link to unrelated resource

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoShow a setup warning in case S3 object storage is used as primary storage
Morris Jobke [Fri, 8 Mar 2019 12:36:11 +0000 (13:36 +0100)]
Show a setup warning in case S3 object storage is used as primary storage

* checks for at least 50 GB of free space

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoFix behaviour of plural default rule 14867/head
Morris Jobke [Fri, 15 Mar 2019 00:19:39 +0000 (01:19 +0100)]
Fix behaviour of plural default rule

* undefined and empty string should trigger the default plural form

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoRename the variable aswell
Joas Schilling [Tue, 12 Mar 2019 12:42:57 +0000 (13:42 +0100)]
Rename the variable aswell

Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years agoFix plural rule detection for languages
Joas Schilling [Mon, 11 Mar 2019 14:14:57 +0000 (15:14 +0100)]
Fix plural rule detection for languages

Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 27 Mar 2019 12:06:38 +0000 (12:06 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14882 from nextcloud/backport/stable15/fix_translations
Roeland Jago Douma [Wed, 27 Mar 2019 11:52:42 +0000 (12:52 +0100)]
Merge pull request #14882 from nextcloud/backport/stable15/fix_translations

[stable15] Fix translations of settings

5 years ago[stable15] Fix translations of settings 14882/head
Roeland Jago Douma [Wed, 27 Mar 2019 11:48:58 +0000 (12:48 +0100)]
[stable15] Fix translations of settings

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
5 years agoMerge pull request #14859 from nextcloud/backport/14853/stable15
Morris Jobke [Tue, 26 Mar 2019 16:44:55 +0000 (17:44 +0100)]
Merge pull request #14859 from nextcloud/backport/14853/stable15

[stable15] Make regions translatable

5 years agoMerge pull request #14857 from nextcloud/backport/14398/stable15
Morris Jobke [Tue, 26 Mar 2019 16:20:38 +0000 (17:20 +0100)]
Merge pull request #14857 from nextcloud/backport/14398/stable15

[stable15] Add setup check for missing UTF8MB4 on mysql

5 years agoAdd setup check for missing UTF8MB4 on mysql 14857/head
Morris Jobke [Wed, 27 Feb 2019 09:47:57 +0000 (10:47 +0100)]
Add setup check for missing UTF8MB4 on mysql

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoMerge pull request #14855 from nextcloud/backport/14583/remove-g+-federation
Morris Jobke [Tue, 26 Mar 2019 13:16:11 +0000 (14:16 +0100)]
Merge pull request #14855 from nextcloud/backport/14583/remove-g+-federation

[stable15] Remove Google+ federation usersettings

5 years agoMerge pull request #14854 from nextcloud/backport/14790/fix-setup-checks-15
Morris Jobke [Tue, 26 Mar 2019 12:41:53 +0000 (13:41 +0100)]
Merge pull request #14854 from nextcloud/backport/14790/fix-setup-checks-15

[stable15] Fix setup checks for ocm/ocs-provider

5 years agoMake regions translatable 14859/head
Morris Jobke [Tue, 26 Mar 2019 10:24:51 +0000 (11:24 +0100)]
Make regions translatable

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoRemove G+ CSS rule (Feedback from Joas) 14855/head
Marius Blüm [Thu, 7 Mar 2019 13:28:36 +0000 (14:28 +0100)]
Remove G+ CSS rule (Feedback from Joas)

Signed-off-by: Marius Blüm <marius@lineone.io>
5 years agoRemove G+ code from Federated Files Sharing-usersettings
Marius Blüm [Thu, 7 Mar 2019 12:46:49 +0000 (13:46 +0100)]
Remove G+ code from Federated Files Sharing-usersettings

Signed-off-by: Marius Blüm <marius@lineone.io>
5 years agoRemove G+ icon from Federated Files Sharing-usersettings
Marius Blüm [Thu, 7 Mar 2019 12:45:23 +0000 (13:45 +0100)]
Remove G+ icon from Federated Files Sharing-usersettings

Signed-off-by: Marius Blüm <marius@lineone.io>
5 years agoFix setup checks for ocm/ocs-provider 14854/head
Morris Jobke [Thu, 21 Mar 2019 13:26:59 +0000 (14:26 +0100)]
Fix setup checks for ocm/ocs-provider

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 26 Mar 2019 10:41:42 +0000 (10:41 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14840 from nextcloud/backport/14838/stable15
Roeland Jago Douma [Tue, 26 Mar 2019 06:50:38 +0000 (07:50 +0100)]
Merge pull request #14840 from nextcloud/backport/14838/stable15

[stable15] Fix placeholder in disable message

5 years agoFix placeholder in disable message 14840/head
Joas Schilling [Mon, 25 Mar 2019 15:04:39 +0000 (16:04 +0100)]
Fix placeholder in disable message

Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years agoMerge pull request #14795 from nextcloud/backport/14058/stable15
Morris Jobke [Fri, 22 Mar 2019 00:26:16 +0000 (01:26 +0100)]
Merge pull request #14795 from nextcloud/backport/14058/stable15

[stable15] Avoid replacement by user object

5 years agoStore user object later in the code 14795/head
Vlastimil Pecinka [Wed, 6 Feb 2019 10:36:08 +0000 (11:36 +0100)]
Store user object later in the code

Signed-off-by: Vlastimil Pecinka <pecinka@email.cz>
5 years agoMerge pull request #14781 from nextcloud/backport/14778/stable15
Morris Jobke [Thu, 21 Mar 2019 12:53:55 +0000 (13:53 +0100)]
Merge pull request #14781 from nextcloud/backport/14778/stable15

[stable15] Fix user creation using LDAP Plugin

5 years agoLDAP plugin: force createUser to return new user's DN 14781/head
Vinicius Cubas Brand [Thu, 14 Mar 2019 14:59:27 +0000 (11:59 -0300)]
LDAP plugin: force createUser to return new user's DN

LDAP plugins must change the createUser method to return the DN, as we
need this to update the cache.

Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com>
5 years agoCache cleaning when subadmin adds user to group
Vinicius Cubas Brand [Mon, 4 Mar 2019 17:09:27 +0000 (14:09 -0300)]
Cache cleaning when subadmin adds user to group

This commit fix an error happening when the subadmin tries to create an
user, adding him/her to the group s/he is subadmin of, using a LDAP
User/Group plugin.

This just forces the cache to be reset after an user is added to a
group.

Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com>
5 years agofix user creation using LDAP Plugin
Vinicius Cubas Brand [Fri, 1 Mar 2019 15:12:19 +0000 (12:12 -0300)]
fix user creation using LDAP Plugin

Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 21 Mar 2019 01:14:06 +0000 (01:14 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14762 from nextcloud/backport/14674/stable15
Morris Jobke [Wed, 20 Mar 2019 21:30:38 +0000 (22:30 +0100)]
Merge pull request #14762 from nextcloud/backport/14674/stable15

[stable15] [app:files] Use current directory for hashing.

5 years agoMerge pull request #14759 from nextcloud/backport/14691/stable15
Morris Jobke [Wed, 20 Mar 2019 15:41:14 +0000 (16:41 +0100)]
Merge pull request #14759 from nextcloud/backport/14691/stable15

[stable15] always allow moving mountpoints inside the same mountpoint

5 years agoMerge pull request #14709 from HuemerGroup/groupname_like_username-allow_share_with_both
Morris Jobke [Wed, 20 Mar 2019 15:32:53 +0000 (16:32 +0100)]
Merge pull request #14709 from HuemerGroup/groupname_like_username-allow_share_with_both

groupname like username - allow share with both

5 years agoUpdate lib/private/Share20/Manager.php 14709/head
Morris Jobke [Wed, 20 Mar 2019 11:51:26 +0000 (12:51 +0100)]
Update lib/private/Share20/Manager.php

tabulator change

Co-Authored-By: aignerat <46312655+aignerat@users.noreply.github.com>
5 years agoUpdate lib/private/Share20/Manager.php
Morris Jobke [Wed, 20 Mar 2019 11:50:48 +0000 (12:50 +0100)]
Update lib/private/Share20/Manager.php

fixed tabulator

Co-Authored-By: aignerat <46312655+aignerat@users.noreply.github.com>
5 years ago[app:files] Use current directory for hashing. 14762/head
Evilham [Wed, 13 Mar 2019 21:06:05 +0000 (22:06 +0100)]
[app:files] Use current directory for hashing.

This fixes collisions that were causing uploads to break in a very
terrible way.

Kudos to @kesselb for finding the problematic place and to
@hottwister for the proposed solution.

Fixes #10527.

5 years agoalways allow moving mountpoints inside the same mountpoint 14759/head
Robin Appelman [Thu, 14 Mar 2019 14:52:38 +0000 (15:52 +0100)]
always allow moving mountpoints inside the same mountpoint

even if that mountpoint isn't normally a valid target for moving mounts into

Signed-off-by: Robin Appelman <robin@icewind.nl>
5 years agoMerge pull request #14749 from nextcloud/backport/14744/stable15
Roeland Jago Douma [Wed, 20 Mar 2019 09:05:45 +0000 (10:05 +0100)]
Merge pull request #14749 from nextcloud/backport/14744/stable15

[stable15] Always register the Notifier

5 years agoMerge pull request #14751 from nextcloud/backport/14747/stable15
Christoph Wurst [Wed, 20 Mar 2019 08:19:31 +0000 (09:19 +0100)]
Merge pull request #14751 from nextcloud/backport/14747/stable15

[stable15] Fix getting the access list on external storage

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 20 Mar 2019 01:12:57 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoFix getting the access list on external storage 14751/head
Roeland Jago Douma [Tue, 19 Mar 2019 14:38:52 +0000 (15:38 +0100)]
Fix getting the access list on external storage

If a file is on external storage there is no owner. WHich means we can't
check. So just return an empty array then.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
5 years agoAlways register the Notifier 14749/head
Joas Schilling [Tue, 19 Mar 2019 07:52:52 +0000 (08:52 +0100)]
Always register the Notifier

... so background jobs without a user can prepare push notifications

Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 19 Mar 2019 01:12:52 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14716 from Faldon/update_document_version
Morris Jobke [Mon, 18 Mar 2019 16:23:52 +0000 (17:23 +0100)]
Merge pull request #14716 from Faldon/update_document_version

Updated documentation go.php to 15 and adjusted copyright year.

5 years agoMerge pull request #14696 from nextcloud/backport/13401/stable15
Roeland Jago Douma [Mon, 18 Mar 2019 09:07:15 +0000 (10:07 +0100)]
Merge pull request #14696 from nextcloud/backport/13401/stable15

[stable15] improve lookup server behaviour

5 years agoFix missing $config dependency in RetryJob 14696/head
Morris Jobke [Tue, 5 Mar 2019 09:08:27 +0000 (10:08 +0100)]
Fix missing $config dependency in RetryJob

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoFix Undefined property: OCA\LookupServerConnector\UpdateLookupServer::$config
Daniel Kesselberg [Mon, 4 Mar 2019 18:12:46 +0000 (19:12 +0100)]
Fix Undefined property: OCA\LookupServerConnector\UpdateLookupServer::$config

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 18 Mar 2019 01:12:37 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoincrease timespan between each retry
Bjoern Schiessle [Wed, 20 Feb 2019 09:20:45 +0000 (10:20 +0100)]
increase timespan between each retry

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
5 years agoimprove lookup server behaviour
Bjoern Schiessle [Mon, 7 Jan 2019 11:15:11 +0000 (12:15 +0100)]
improve lookup server behaviour

Don't try to connect to the lookup server if the lookup server was disabled
by the admin or an empty lookup server URL was given

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 17 Mar 2019 01:13:33 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 16 Mar 2019 01:12:43 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoUpdated documentation go.php to 15 and adjusted copyright year. 14716/head
Thomas Pulzer [Fri, 15 Mar 2019 19:56:58 +0000 (20:56 +0100)]
Updated documentation go.php to 15 and adjusted copyright year.

Signed-off-by: Thomas Pulzer <t.pulzer@thesecretgamer.de>
5 years agoMerge pull request #14699 from nextcloud/backport/14693/stable15
Morris Jobke [Fri, 15 Mar 2019 09:56:31 +0000 (10:56 +0100)]
Merge pull request #14699 from nextcloud/backport/14693/stable15

[stable15] dont try to restore a trashbin item to a readonly target

5 years agoMerge pull request #14700 from nextcloud/backport/14690/stable15
Morris Jobke [Fri, 15 Mar 2019 09:53:40 +0000 (10:53 +0100)]
Merge pull request #14700 from nextcloud/backport/14690/stable15

[stable15] throw a proper error if rename fails in dav

5 years agoMerge pull request #14697 from nextcloud/backport/14687/stable15
Morris Jobke [Fri, 15 Mar 2019 09:49:20 +0000 (10:49 +0100)]
Merge pull request #14697 from nextcloud/backport/14687/stable15

[stable15] add an integration test that ensures deletion of LDAP users

5 years agogroupname like username - allow share with both
Christian Aigner [Fri, 15 Mar 2019 09:18:27 +0000 (10:18 +0100)]
groupname like username - allow share with both

Signed-off-by: Christian Aigner <christian.aigner@huemer-it.com>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 15 Mar 2019 01:15:29 +0000 (01:15 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14694 from nextcloud/backport/14684/stable15
Roeland Jago Douma [Fri, 15 Mar 2019 00:29:57 +0000 (01:29 +0100)]
Merge pull request #14694 from nextcloud/backport/14684/stable15

[stable15] handle long etags from dav external storage

5 years agoMerge pull request #14672 from nextcloud/backport/14640/disable-failing-tests
Morris Jobke [Thu, 14 Mar 2019 23:25:06 +0000 (00:25 +0100)]
Merge pull request #14672 from nextcloud/backport/14640/disable-failing-tests

[stable15] Disable fragile tests

5 years agothrow a proper error if rename fails in dav 14700/head
Robin Appelman [Thu, 14 Mar 2019 14:40:21 +0000 (15:40 +0100)]
throw a proper error if rename fails in dav

Signed-off-by: Robin Appelman <robin@icewind.nl>
5 years agodont try to restore a trashbin item to a readonly target 14699/head
Robin Appelman [Thu, 14 Mar 2019 15:18:43 +0000 (16:18 +0100)]
dont try to restore a trashbin item to a readonly target

Signed-off-by: Robin Appelman <robin@icewind.nl>
5 years agoadd an integration test that ensures deletion of LDAP users 14697/head
Arthur Schiwon [Thu, 14 Mar 2019 14:21:52 +0000 (15:21 +0100)]
add an integration test that ensures deletion of LDAP users

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
5 years agohandle long etags from dav external storage 14694/head
Robin Appelman [Thu, 14 Mar 2019 13:46:39 +0000 (14:46 +0100)]
handle long etags from dav external storage

we can only store etags up to 40 characters long in the database, so when we get an etag that's longer we simply hash it to bring down the length

Signed-off-by: Robin Appelman <robin@icewind.nl>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 14 Mar 2019 16:08:44 +0000 (16:08 +0000)]
[tx-robot] updated from transifex

5 years agoAdd time between SMB test runs and properly log full changeset 14672/head
Morris Jobke [Thu, 14 Mar 2019 12:34:17 +0000 (13:34 +0100)]
Add time between SMB test runs and properly log full changeset

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoDisable failing files app test - act 4
Morris Jobke [Thu, 14 Mar 2019 15:30:38 +0000 (16:30 +0100)]
Disable failing files app test - act 4

Signed-off-by: Morris Jobke <hey@morrisjobke.de>