]> source.dussan.org Git - nextcloud-server.git/log
nextcloud-server.git
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 12 Mar 2018 01:13:11 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years agoMerge pull request #8772 from nextcloud/stable12-8594-add-acceptance-tests-for-permis...
Morris Jobke [Sun, 11 Mar 2018 18:34:38 +0000 (19:34 +0100)]
Merge pull request #8772 from nextcloud/stable12-8594-add-acceptance-tests-for-permissions-on-public-shared-folders

[stable12] Add acceptance tests for permissions on public shared folders

6 years agoAdd acceptance tests for creation of subfolders in public shared folders 8772/head
Daniel Calviño Sánchez [Mon, 19 Feb 2018 17:46:49 +0000 (18:46 +0100)]
Add acceptance tests for creation of subfolders in public shared folders

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years agoExtract common "wait for" functions to a helper class
Daniel Calviño Sánchez [Mon, 19 Feb 2018 16:38:19 +0000 (17:38 +0100)]
Extract common "wait for" functions to a helper class

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years agoGeneralize file list steps so a specific ancestor can be used
Daniel Calviño Sánchez [Mon, 19 Feb 2018 15:58:57 +0000 (16:58 +0100)]
Generalize file list steps so a specific ancestor can be used

The "FileListContext" provides steps to interact with and check the
behaviour of a file list. However, the "FileListContext" does not know
the right file list ancestor that has to be used by the file list steps,
so until now the file list steps were explicitly wired to the Files app
and they could be used only in that case.

Instead of duplicating the steps with a slightly different name (for
example, "I rename :fileName1 to :fileName2 in the public shared folder"
instead of "I rename :fileName1 to :fileName2") the steps were
generalized; now contexts that "know" that certain file list ancestor
has to be used by the FileListContext steps performed by certain actor
from that point on (until changed again) set it explicitly. For example,
when the current page is the Files app then the ancestor of the file
list is the main view of the current section of the Files app, but when
the current page is a shared link then the ancestor is set to null
(because there will be just one file list, and thus its ancestor is not
relevant to differentiate between instances)

A helper trait, "FileListAncestorSetter", was introduced to reduce the
boilerplate needed to set the file list ancestor from other contexts.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years agoGeneralize file list locators so a specific ancestor can be used
Daniel Calviño Sánchez [Mon, 19 Feb 2018 13:24:01 +0000 (14:24 +0100)]
Generalize file list locators so a specific ancestor can be used

The file list is used in other places besides the Files app (for
example, the File sharing app); in those cases the locators for the file
list elements are the same, but not for the ancestor of the file list.
To make possible to reuse the file list locators in those cases too now
they receive the ancestor to use.

Note that the locators for the file actions menu were not using an
ancestor locator because it is expected that there is only one file
actions menu at a time in the whole page; that may change in the future,
but for the time being it is a valid assumption and thus the ancestor
was not added to those locators in this commit.

Although the locators were generalized the steps themselves still use
the "FilesAppContext::currentSectionMainView" locator as ancestor; the
steps will be generalized in a following commit.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years agoStore the name of the actor in the Actor object
Daniel Calviño Sánchez [Mon, 19 Feb 2018 09:32:11 +0000 (10:32 +0100)]
Store the name of the actor in the Actor object

This is needed to be able to easily use the actor as a key in an array.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years agoExtract file list locators and steps to its own class
Daniel Calviño Sánchez [Sun, 18 Feb 2018 22:52:44 +0000 (23:52 +0100)]
Extract file list locators and steps to its own class

Besides the extraction some minor adjustments (moving parametrized
locators like "fileActionsMenuItemFor" above the locators that use them
and placing "descendantOf" calls always in a new line) were made too.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 11 Mar 2018 01:13:01 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 10 Mar 2018 01:12:46 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

6 years agoMerge pull request #8750 from nextcloud/12.0.6-rc1 v12.0.6RC1
Morris Jobke [Fri, 9 Mar 2018 20:10:07 +0000 (21:10 +0100)]
Merge pull request #8750 from nextcloud/12.0.6-rc1

12.0.6 RC 1

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 9 Mar 2018 13:32:21 +0000 (13:32 +0000)]
[tx-robot] updated from transifex

6 years ago12.0.6 RC 1 8750/head
Morris Jobke [Fri, 9 Mar 2018 09:17:26 +0000 (10:17 +0100)]
12.0.6 RC 1

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
6 years agoMerge pull request #8726 from nextcloud/objectstore-no-part-files-12
Morris Jobke [Fri, 9 Mar 2018 13:06:52 +0000 (14:06 +0100)]
Merge pull request #8726 from nextcloud/objectstore-no-part-files-12

[12]  disable part files for object stores

6 years agoMerge pull request #8739 from nextcloud/stable12-8728-better-handling-of-invisible...
Roeland Jago Douma [Fri, 9 Mar 2018 07:32:03 +0000 (08:32 +0100)]
Merge pull request #8739 from nextcloud/stable12-8728-better-handling-of-invisible-elements-in-acceptance-tests

[stable12] Better handling of invisible elements in acceptance tests

6 years agoAdd automatic handling of NoSuchElement exceptions 8739/head
Daniel Calviño Sánchez [Thu, 8 Mar 2018 13:54:01 +0000 (14:54 +0100)]
Add automatic handling of NoSuchElement exceptions

NoSuchElement exceptions are sometimes thrown instead of
StaleElementReference exceptions. This can happen when the Selenium2
driver for Mink performs an action on an element through the WebDriver
session instead of directly through the WebDriver element. In that case,
if the element with the given ID does not exist, a NoSuchElement
exception would be thrown instead of a StaleElementReference exception,
so those cases are handled like StaleElementReference exceptions.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years agoAdd automatic handling of MoveTargetOutOfBounds exceptions
Daniel Calviño Sánchez [Thu, 8 Mar 2018 13:07:49 +0000 (14:07 +0100)]
Add automatic handling of MoveTargetOutOfBounds exceptions

MoveTargetOutOfBounds exceptions are sometimes thrown instead of
ElementNotVisible exceptions. This can happen when the Selenium2 driver
for Mink moves the cursor on an element using the "moveto" method of the
Webdriver session, for example, before clicking on an element. In that
case, if the element is not visible, "moveto" would throw a
MoveTargetOutOfBounds exception instead of an ElementNotVisible
exception, so those cases are handled like ElementNotVisible exceptions.

Note that MoveTargetOutOfBounds exceptions could be thrown too if the
element was visible but "out of reach"; there is no problem in handling
those cases as if the element was not visible, as the exception will be
thrown again anyway once it is verified that the element is indeed
visible.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 9 Mar 2018 01:13:00 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years agoemit pre-hooks earlier when not using part files 8726/head
Robin Appelman [Thu, 8 Mar 2018 12:02:35 +0000 (13:02 +0100)]
emit pre-hooks earlier when not using part files

Signed-off-by: Robin Appelman <robin@icewind.nl>
6 years agodisable part files for object stores
Robin Appelman [Wed, 7 Mar 2018 12:33:35 +0000 (13:33 +0100)]
disable part files for object stores

Signed-off-by: Robin Appelman <robin@icewind.nl>
6 years agoMerge pull request #8692 from nextcloud/stable12-add-missing-import
Morris Jobke [Tue, 6 Mar 2018 17:35:52 +0000 (18:35 +0100)]
Merge pull request #8692 from nextcloud/stable12-add-missing-import

[stable12] Add missing import

6 years agoMerge pull request #8689 from nextcloud/12-7449
Morris Jobke [Tue, 6 Mar 2018 17:00:40 +0000 (18:00 +0100)]
Merge pull request #8689 from nextcloud/12-7449

[stable12] Fix 500 on setup page

6 years agoAdd missing import 8692/head
Daniel Calviño Sánchez [Tue, 6 Mar 2018 16:20:11 +0000 (17:20 +0100)]
Add missing import

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years agoMerge pull request #8679 from nextcloud/7707_12
Morris Jobke [Tue, 6 Mar 2018 12:38:10 +0000 (13:38 +0100)]
Merge pull request #8679 from nextcloud/7707_12

[stable12] generate different UIDs for Birthday, Anniversary and Death event

6 years agoMerge pull request #8682 from nextcloud/8474_12
Morris Jobke [Tue, 6 Mar 2018 12:36:38 +0000 (13:36 +0100)]
Merge pull request #8682 from nextcloud/8474_12

[stable12] Log exceptions that happen when writing the app store reply to storage

6 years agoFix 500 on setup page 8689/head
Morris Jobke [Mon, 11 Dec 2017 14:03:55 +0000 (15:03 +0100)]
Fix 500 on setup page

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
6 years agoMerge pull request #8681 from nextcloud/8391_12
Morris Jobke [Tue, 6 Mar 2018 12:19:18 +0000 (13:19 +0100)]
Merge pull request #8681 from nextcloud/8391_12

[stable12] Don't use double quotes in MySQL queries

6 years agoMerge pull request #8677 from nextcloud/8297_12
Morris Jobke [Tue, 6 Mar 2018 11:14:56 +0000 (12:14 +0100)]
Merge pull request #8677 from nextcloud/8297_12

[stable12] Fix example regex for user agent matching

6 years agoMerge pull request #8674 from nextcloud/stable12-8634
Morris Jobke [Tue, 6 Mar 2018 11:03:27 +0000 (12:03 +0100)]
Merge pull request #8674 from nextcloud/stable12-8634

[stable12] do not create empty userid when attribute does not have allowed chars

6 years agoLog exceptions that happen when writing the app store reply to storage 8682/head
Joas Schilling [Wed, 21 Feb 2018 13:14:33 +0000 (14:14 +0100)]
Log exceptions that happen when writing the app store reply to storage

Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years agoDon't use double quotes in MySQL queries 8681/head
Robin Müller [Fri, 16 Feb 2018 08:27:16 +0000 (09:27 +0100)]
Don't use double quotes in MySQL queries

MySQL databases with the ANSI_QUOTES mode enabled treat " as an identifier
quote (see https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#sqlmode_ansi_quotes).
So for such databases the 'occ upgrade' fails with an error message like this:
... unknown column 'oc_*' in where clause.

This fix replaces the doulbe quotes with single quotes that should be always
used in MySQL queries to quote literal strings.

Signed-off-by: Robin Müller <robin.mueller@1und1.de>
6 years agogenerate different UIDs for Birthday, Anniversary and Death event 8679/head
Georg Ehrke [Thu, 4 Jan 2018 19:15:24 +0000 (20:15 +0100)]
generate different UIDs for Birthday, Anniversary and Death event

Signed-off-by: Georg Ehrke <developer@georgehrke.com>
6 years agoFix example regex for user agent matching 8677/head
Joas Schilling [Sat, 10 Feb 2018 15:39:53 +0000 (16:39 +0100)]
Fix example regex for user agent matching

Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 6 Mar 2018 01:13:03 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years agodo not create empty userid when attribute does not have allowed chars 8674/head
Arthur Schiwon [Fri, 2 Mar 2018 16:44:06 +0000 (17:44 +0100)]
do not create empty userid when attribute does not have allowed chars

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
6 years agoMerge pull request #8611 from nextcloud/css-file-suffix-with-apps-versions-backport
Morris Jobke [Mon, 5 Mar 2018 14:05:14 +0000 (15:05 +0100)]
Merge pull request #8611 from nextcloud/css-file-suffix-with-apps-versions-backport

[stable12] Use apps versions to generate suffix when possible

6 years agoMerge pull request #8655 from nextcloud/stable12-8630
Roeland Jago Douma [Mon, 5 Mar 2018 14:02:02 +0000 (15:02 +0100)]
Merge pull request #8655 from nextcloud/stable12-8630

[stable12] use hash algo that's robust against collisions

6 years agouse hash algo that's robust against collisions 8655/head
Arthur Schiwon [Fri, 2 Mar 2018 15:26:36 +0000 (16:26 +0100)]
use hash algo that's robust against collisions

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
6 years agoMerge pull request #8632 from nextcloud/stable12-8372
Joas Schilling [Mon, 5 Mar 2018 11:35:38 +0000 (12:35 +0100)]
Merge pull request #8632 from nextcloud/stable12-8372

[12] Properly encapsulate require_once for app.php

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 5 Mar 2018 01:12:58 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 4 Mar 2018 01:13:33 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 3 Mar 2018 01:13:05 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years agoAdd throws annotation 8632/head
Julius Härtl [Thu, 15 Feb 2018 11:23:49 +0000 (12:23 +0100)]
Add throws annotation

Signed-off-by: Julius Härtl <jus@bitgrid.net>
6 years agoProperly encapsulate require_once for app.php
Julius Härtl [Thu, 15 Feb 2018 10:20:22 +0000 (11:20 +0100)]
Properly encapsulate require_once for app.php

Signed-off-by: Julius Härtl <jus@bitgrid.net>
6 years agoMerge pull request #8622 from nextcloud/12-8612
Joas Schilling [Fri, 2 Mar 2018 10:24:07 +0000 (11:24 +0100)]
Merge pull request #8622 from nextcloud/12-8612

[stable12] Update commentstabview.js

6 years agoUpdate commentstabview.js 8622/head
rakekniven [Thu, 1 Mar 2018 19:53:50 +0000 (20:53 +0100)]
Update commentstabview.js

Changed typo reported at GitHub.
See https://www.transifex.com/nextcloud/nextcloud/translate/#de_DE/$/91002505?issue=yes

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
6 years agoMerge pull request #8616 from nextcloud/stable12-8355
Morris Jobke [Fri, 2 Mar 2018 09:35:18 +0000 (10:35 +0100)]
Merge pull request #8616 from nextcloud/stable12-8355

[stable12] Fix comments (and systemtags) when involving users with numerical ids

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 2 Mar 2018 01:13:08 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years agobackport of #8355 to stable12 8616/head
Arthur Schiwon [Wed, 14 Feb 2018 13:39:10 +0000 (14:39 +0100)]
backport of #8355 to stable12

test creating comments with numeric user ids

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
fix creating comments when file is accessible to users with numeric ids

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
tests for systemtags related to numeric user ids

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
fix systemtags event with numeric user ids

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
6 years agoUse apps versions to generate suffix when possible 8611/head
John Molakvoæ (skjnldsv) [Thu, 1 Mar 2018 19:43:12 +0000 (20:43 +0100)]
Use apps versions to generate suffix when possible

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 1 Mar 2018 01:13:01 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 28 Feb 2018 01:13:25 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years agoMerge pull request #8130 from nextcloud/fix-own-avatar-not-updated-when-display-name...
Morris Jobke [Tue, 27 Feb 2018 17:40:42 +0000 (18:40 +0100)]
Merge pull request #8130 from nextcloud/fix-own-avatar-not-updated-when-display-name-is-changed

[stable12] Fix own avatar not updated when display name is changed

6 years agoMerge pull request #8549 from kyrofa/backport_12/8462/theming_app_outside_root
Julius Härtl [Tue, 27 Feb 2018 10:59:49 +0000 (11:59 +0100)]
Merge pull request #8549 from kyrofa/backport_12/8462/theming_app_outside_root

[stable12] theming: handle not being in the serverroot

6 years agoMerge pull request #8544 from nextcloud/allow-oc-upgrading
Morris Jobke [Tue, 27 Feb 2018 08:07:20 +0000 (09:07 +0100)]
Merge pull request #8544 from nextcloud/allow-oc-upgrading

[stable12] Allow upgrading from OC 10.0.6 & 10.0.7

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 27 Feb 2018 01:15:16 +0000 (01:15 +0000)]
[tx-robot] updated from transifex

6 years agotheming: handle not being in the serverroot 8549/head
Kyle Fazzari [Wed, 21 Feb 2018 06:44:37 +0000 (22:44 -0800)]
theming: handle not being in the serverroot

Currently, the theming app assumes it's in the serverroot. However, with
Nextcloud's flexibility regarding configurable app paths, this is not a
safe assumption to make. If it happens to be an incorrect assumption,
the theming app fails to work.

Instead of relying on the serverroot, just use the path from the
AppManager and utilize relative paths for assets from there.

Fix #8462

Signed-off-by: Kyle Fazzari <kyrofa@ubuntu.com>
6 years agoAllow upgrading from OC 10.0.6 & 10.0.7 8544/head
Morris Jobke [Mon, 26 Feb 2018 15:43:33 +0000 (16:43 +0100)]
Allow upgrading from OC 10.0.6 & 10.0.7

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
6 years agoMerge pull request #8537 from nextcloud/8522-stable12
Morris Jobke [Mon, 26 Feb 2018 14:09:54 +0000 (15:09 +0100)]
Merge pull request #8537 from nextcloud/8522-stable12

[stable12] Fix retrieval of group members with numerical uids from LDAP

6 years agofix retrieving group members with numerical uids from LDAP 8537/head
Arthur Schiwon [Fri, 23 Feb 2018 11:05:50 +0000 (12:05 +0100)]
fix retrieving group members with numerical uids from LDAP

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
6 years agotests for retrieving group members with numerical uids
Arthur Schiwon [Fri, 23 Feb 2018 11:04:48 +0000 (12:04 +0100)]
tests for retrieving group members with numerical uids

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
6 years agoMerge pull request #8533 from nextcloud/8499-stable12
Morris Jobke [Mon, 26 Feb 2018 11:28:01 +0000 (12:28 +0100)]
Merge pull request #8533 from nextcloud/8499-stable12

[stable12] don't try login with the same name that just failed

6 years agodon't try login with the same name that just failed 8533/head
Arthur Schiwon [Thu, 22 Feb 2018 11:46:06 +0000 (12:46 +0100)]
don't try login with the same name that just failed

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
6 years agoMerge pull request #8520 from nextcloud/stable12-8507
Roeland Jago Douma [Sat, 24 Feb 2018 15:26:06 +0000 (16:26 +0100)]
Merge pull request #8520 from nextcloud/stable12-8507

Add some whitespace around change.svg icon (stable12)

6 years agoMerge pull request #8516 from nextcloud/12-8502
Roeland Jago Douma [Sat, 24 Feb 2018 15:25:17 +0000 (16:25 +0100)]
Merge pull request #8516 from nextcloud/12-8502

[stable12] Show hint in OCS API for user creation

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 24 Feb 2018 01:13:07 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years agoAdd some whitespace around change.svg icon (stable12) 8520/head
Marin Treselj [Fri, 23 Feb 2018 10:19:08 +0000 (11:19 +0100)]
Add some whitespace around change.svg icon (stable12)

Signed-off-by: Marin Treselj <marin@pixelipo.com>
6 years agoShow hint in OCS API for user creation 8516/head
Morris Jobke [Thu, 22 Feb 2018 13:16:49 +0000 (14:16 +0100)]
Show hint in OCS API for user creation

* adds a 107 error code together with the hint of the exception
* logs the exception as warning
* fixes #7946

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 23 Feb 2018 01:13:07 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 22 Feb 2018 01:13:16 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

6 years agoMerge pull request #8205 from nextcloud/bugfix/noid/fix-result-size-when-searching...
Morris Jobke [Wed, 21 Feb 2018 14:44:41 +0000 (15:44 +0100)]
Merge pull request #8205 from nextcloud/bugfix/noid/fix-result-size-when-searching-for-sharees

[stable12] Better result handling of email search

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 21 Feb 2018 01:12:58 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 20 Feb 2018 01:12:44 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 19 Feb 2018 01:12:43 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 18 Feb 2018 01:12:53 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

6 years agoMerge pull request #8408 from nextcloud/stable12-8376-devgals
Morris Jobke [Sat, 17 Feb 2018 14:38:27 +0000 (15:38 +0100)]
Merge pull request #8408 from nextcloud/stable12-8376-devgals

[stable12] Fix edit tag textbox size

6 years agoFix edit tag textbox size 8408/head
Aastha Gupta [Thu, 15 Feb 2018 12:04:42 +0000 (17:34 +0530)]
Fix edit tag textbox size

Fixes #7586

Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com>
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 17 Feb 2018 01:12:55 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 16 Feb 2018 01:12:53 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 14 Feb 2018 21:38:20 +0000 (21:38 +0000)]
[tx-robot] updated from transifex

6 years agoLimit the number of results when searching for remotes and emails 8205/head
Joas Schilling [Tue, 6 Feb 2018 17:00:42 +0000 (18:00 +0100)]
Limit the number of results when searching for remotes and emails

Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 14 Feb 2018 01:12:43 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 13 Feb 2018 10:49:21 +0000 (10:49 +0000)]
[tx-robot] updated from transifex

6 years agoMerge pull request #8262 from nextcloud/s3-folder-delete-12
Roeland Jago Douma [Tue, 13 Feb 2018 06:45:14 +0000 (07:45 +0100)]
Merge pull request #8262 from nextcloud/s3-folder-delete-12

[12] Fix deleting folders when using s3 external storage

6 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 12 Feb 2018 21:34:26 +0000 (21:34 +0000)]
[tx-robot] updated from transifex

6 years agofix invalidating folder cache for s3 8262/head
Robin Appelman [Mon, 29 Jan 2018 14:09:15 +0000 (15:09 +0100)]
fix invalidating folder cache for s3

Signed-off-by: Robin Appelman <robin@icewind.nl>
6 years agoadjust s3 bulk delete to new sdk syntax
Robin Appelman [Mon, 29 Jan 2018 14:06:10 +0000 (15:06 +0100)]
adjust s3 bulk delete to new sdk syntax

Signed-off-by: Robin Appelman <robin@icewind.nl>
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 9 Feb 2018 15:29:41 +0000 (15:29 +0000)]
[tx-robot] updated from transifex

6 years agoMerge pull request #8146 from nextcloud/12-unperl-l10n
Morris Jobke [Fri, 9 Feb 2018 08:58:35 +0000 (09:58 +0100)]
Merge pull request #8146 from nextcloud/12-unperl-l10n

[stable12] Remove old perl script to update l10n files

6 years agoMerge pull request #8272 from nextcloud/12-8270
Morris Jobke [Fri, 9 Feb 2018 08:57:45 +0000 (09:57 +0100)]
Merge pull request #8272 from nextcloud/12-8270

[stable12] Update CRL to revoke files_rightclick

6 years agoUpdate CRL to revoke files_rightclick 8272/head
Morris Jobke [Fri, 9 Feb 2018 08:42:57 +0000 (09:42 +0100)]
Update CRL to revoke files_rightclick

See https://github.com/nextcloud/app-certificate-requests/pull/134

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
6 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 9 Feb 2018 01:11:18 +0000 (01:11 +0000)]
[tx-robot] updated from transifex

6 years agoRemove old perl script to update l10n files 8146/head
Morris Jobke [Fri, 25 Aug 2017 15:48:04 +0000 (17:48 +0200)]
Remove old perl script to update l10n files

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
6 years agoMerge pull request #8101 from nextcloud/s3-uploader-12
Morris Jobke [Thu, 8 Feb 2018 13:31:36 +0000 (14:31 +0100)]
Merge pull request #8101 from nextcloud/s3-uploader-12

[12] Use S3Client::upload instead of splitting single/multipart upload ourselves

6 years agoMerge pull request #8184 from robert-scheck/pki-validation-stable12
Morris Jobke [Thu, 8 Feb 2018 10:02:56 +0000 (11:02 +0100)]
Merge pull request #8184 from robert-scheck/pki-validation-stable12

[stable12] Handle SSL certificate verifications for others than Let's Encrypt

6 years agoMerge pull request #8254 from nextcloud/12-8252
Joas Schilling [Thu, 8 Feb 2018 09:20:56 +0000 (10:20 +0100)]
Merge pull request #8254 from nextcloud/12-8252

[stable12] Remove invalid link to documentation

6 years agoMerge pull request #8216 from nextcloud/6830_12
Morris Jobke [Thu, 8 Feb 2018 08:17:56 +0000 (09:17 +0100)]
Merge pull request #8216 from nextcloud/6830_12

Nextcloud 12 is not compatible with newer than php 7.1

6 years agoMerge pull request #8251 from nextcloud/8233_12
Roeland Jago Douma [Thu, 8 Feb 2018 08:10:59 +0000 (09:10 +0100)]
Merge pull request #8251 from nextcloud/8233_12

[stable12] actually return stream from swift

6 years agoRemove invalid link to documentation 8254/head
Morris Jobke [Thu, 8 Feb 2018 07:44:39 +0000 (08:44 +0100)]
Remove invalid link to documentation

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
6 years agoactually return stream from swift 8251/head
Robin Appelman [Wed, 7 Feb 2018 16:10:59 +0000 (17:10 +0100)]
actually return stream from swift

Signed-off-by: Robin Appelman <robin@icewind.nl>