Commit Graph

17957 Commits

Author SHA1 Message Date
Roeland Jago Douma fc49fa1620
A folder should get a folder mimetype
If doing achunked upload the mimetype of the folder would otherwise be
guessed from the path. Which always returned application/octet-stream.

If an access control rule to block that is in place this means that all
chunked uploads fail hard in directories as the isCreatable on the
directory always fails.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-11-06 08:02:48 +01:00
Nextcloud bot 450b9e2a20
[tx-robot] updated from transifex 2018-11-06 01:12:56 +00:00
Nextcloud bot 30666be2f0
[tx-robot] updated from transifex 2018-11-05 01:12:55 +00:00
Nextcloud bot 374bfbeaca
[tx-robot] updated from transifex 2018-11-04 01:14:21 +00:00
Nextcloud bot 0e125b810a
[tx-robot] updated from transifex 2018-11-03 01:12:58 +00:00
Roeland Jago Douma 04617a28d4
Move ExpiredTokenException to the correct namespace
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-11-02 11:39:42 +01:00
Roeland Jago Douma 3aaeaf1316
Merge pull request #12208 from nextcloud/backport/12130/stable13
[13] Reset bruteforce on token refresh OAuth
2018-11-02 11:38:13 +01:00
Roeland Jago Douma 6971ecef9d
Reset bruteforce on token refresh OAuth
When using atoken obtained via OAuth the token expires. Resulting in
brute force attempts hitting the requesting IP.

This resets the brute force attempts for that UID on a valid refresh of
the token.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-11-02 10:54:50 +01:00
Nextcloud bot 4708a2529e
[tx-robot] updated from transifex 2018-11-02 01:13:56 +00:00
Nextcloud bot 68c17136dd
[tx-robot] updated from transifex 2018-11-01 01:13:22 +00:00
Arthur Schiwon 82bb002eaa
adjust tests to 13 codebase
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-10-30 14:10:35 +01:00
Arthur Schiwon 908e6be07e
Backport of #12054 to stable13
only write when the displayname differs, but then announce it

refs #5212 and fixes #9112

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>

do not run into UniqueConstraintViolationException

… when an unmapped user logs in for the first time when background job
mode is ajax and no memcache was configured.

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-10-30 14:10:21 +01:00
Nextcloud bot d90385caf6
[tx-robot] updated from transifex 2018-10-30 01:13:14 +00:00
Arthur Schiwon c4df29afb0
remove unneeded empty search attribute values, fixes #12086
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-10-29 17:29:32 +01:00
Morris Jobke 061846c7d0
Merge pull request #12112 from nextcloud/backport/12038/stable13
[13] Implement the size of an assembly stream
2018-10-29 17:22:03 +01:00
Roeland Jago Douma 8dcc7fc0f5
Implement the size of an assembly stream
This will make it possible to act propely on moves of future files if we
need to know the size (like for max size virus scanning).

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-10-29 15:19:55 +01:00
Roeland Jago Douma f903a7637b
Double check for failed cache with a shared storage
When obtaining the SourceRootInfo we can call init. If this fails the
cache is set to a failed cache and the storage to a failed storage.
However we did not check for this. Which means that if the storage was
invalid it would fail later on.

Now we will properly error out.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-10-29 15:13:21 +01:00
Nextcloud bot 7686c03111
[tx-robot] updated from transifex 2018-10-29 01:13:27 +00:00
Nextcloud bot aa021a9407
[tx-robot] updated from transifex 2018-10-28 00:13:07 +00:00
Nextcloud bot 4e148133c9
[tx-robot] updated from transifex 2018-10-27 00:12:54 +00:00
Nextcloud bot ae061c69f1
[tx-robot] updated from transifex 2018-10-26 00:13:08 +00:00
Nextcloud bot 3d54e261ee
[tx-robot] updated from transifex 2018-10-25 00:13:24 +00:00
Nextcloud bot ae17e55f42
[tx-robot] updated from transifex 2018-10-24 00:12:50 +00:00
Roeland Jago Douma c5b0efed3b
Merge pull request #11982 from nextcloud/bugfix-stable13/noid/forbid_freebusy_but_allow_local_delivery
[stable13] allow local delivery of schedule message while prohibiting FreeBusy requests
2018-10-23 21:15:08 +02:00
Roeland Jago Douma f4efa550c3
Merge pull request #11996 from nextcloud/stable13-11967-fix-opening-a-section-again-in-the-files-app
[stable13] Fix opening a section again in the Files app
2018-10-23 20:21:35 +02:00
Morris Jobke c3919b844b
Merge pull request #11997 from nextcloud/assemblly-stream-lazy-13
lazy open first source stream in assemblystream
2018-10-23 19:19:51 +02:00
Morris Jobke 56812b0ae5
Merge pull request #11962 from nextcloud/backport/11931/stable13
[13] Do not emit preHooks twice on non-part-storage
2018-10-23 18:16:04 +02:00
Robin Appelman 13317da19a
lazy open first source stream in assemblystream
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-10-23 17:46:09 +02:00
Daniel Calviño Sánchez bc7e8cb362 Remove event handler no longer needed
The custom handler for "URL changed" events were added to reload the
file list whenever the sections for favorites and shares were opened;
this was used to fix the problem of not reloading the file lists when
opening them for a second time. However, besides that the handlers were
not really necessary, and as the root of the bug was fixed in the
previous commit those handlers are now removed.

The file list for tags uses the handler for a different purpose, though,
so that one was kept.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-10-23 17:03:37 +02:00
Daniel Calviño Sánchez 4f5b072c74 Fix opening a section again in the Files app
When a section is open in the Files app a "show" event is triggered.
File list objects handle that event by reloading themselves, but only
if the file list was shown at least once. However, the file list objects
of plugins are created when the "show" event is triggered for the first
time for their section; as the file list objects register their handler
for the "show" event when they are created they never handle the first
triggered "show" event, as the handler is set while that event is being
already handled. Therefore, from the point of view of the handler, the
second time that a "show" event was triggered it was seen as if the file
list was shown for the first time, and thus it was not reloaded. Now the
"shown" property is explicitly set for those file lists that are created
while handling a "show" event, which causes them to be reloaded as
expected when opening their section again.

Note that it is not possible to just reload the file list whenever it is
shown; the file list is reloaded also when the directory changes, and
this can happen when the web page is initially loaded and the URL is
parsed. In that case, if file lists were reloaded when shown for the
first time then it could be reloaded twice, one with the default
parameters due to the "show" event and another one with the proper
parameters once the URL was parsed, and the files that appeard in the
list would depend on which response from the server was received the
last.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-10-23 17:02:54 +02:00
Nextcloud bot 5de5db0280
[tx-robot] updated from transifex 2018-10-23 14:54:51 +00:00
Georg Ehrke aa94064cf5
move disableFreeBusy check from User principal backend to Scheduling Outbox collection. This allows to keep local delivery of scheduling messages while prohibiting FreeBusy requests
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
2018-10-23 10:07:31 +02:00
Roeland Jago Douma 998b646f97
Do not emit preHooks twice on non-part-storage
The old code would emit the hooks twice. Thus having the version written
twice. Which is not very performant as it is first read twice as well.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-10-21 13:59:00 +02:00
Nextcloud bot 97b6b53d5c
[tx-robot] updated from transifex 2018-10-10 00:13:36 +00:00
Nextcloud bot 9ec76ba603
[tx-robot] updated from transifex 2018-10-09 00:12:46 +00:00
Nextcloud bot d632ddce04
[tx-robot] updated from transifex 2018-10-08 00:13:13 +00:00
Nextcloud bot 8d96b3790d
[tx-robot] updated from transifex 2018-10-07 00:12:38 +00:00
Nextcloud bot 642a19c2b5
[tx-robot] updated from transifex 2018-10-06 00:12:31 +00:00
Nextcloud bot fbab9d66d6
[tx-robot] updated from transifex 2018-10-05 00:13:21 +00:00
Nextcloud bot 99c5005114
[tx-robot] updated from transifex 2018-10-04 00:12:27 +00:00
Nextcloud bot 8ef7d31599
[tx-robot] updated from transifex 2018-10-03 16:59:11 +00:00
Morris Jobke bd3d991ab6
Merge pull request #10804 from nextcloud/smb-dir-instead-of-allinfo-13
[13] prefer using dir instead of allinfo for getting smb file info
2018-10-02 19:04:15 +02:00
Roeland Jago Douma f9c14af9c2
Merge pull request #11524 from nextcloud/fix/11315/filepicker-buttons-nc13
[13] Fixes the move/copy picker buttons
2018-10-02 08:07:20 +02:00
Nextcloud bot e07611ef09
[tx-robot] updated from transifex 2018-10-02 00:13:06 +00:00
Michael Weimann 6b1663ef2d
Fixes file/folder move/copy buttons
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-10-01 23:10:14 +02:00
Jan-Christoph Borchardt 905097eca9
Fix buttons wrapping on long folder names
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
2018-10-01 23:00:44 +02:00
Nextcloud bot 052469e5e4
[tx-robot] updated from transifex 2018-10-01 00:12:49 +00:00
Nextcloud bot 0201f011c1
[tx-robot] updated from transifex 2018-09-30 00:12:16 +00:00
Nextcloud bot 7695f02852
[tx-robot] updated from transifex 2018-09-29 00:12:26 +00:00
Morris Jobke 48d359ccb6
Merge pull request #11437 from nextcloud/assemblystream-eof-13
[13] AssemblyStream is also eof if we have no more source stream
2018-09-28 17:31:42 +02:00
Robin Appelman eae523eb56
AssemblyStream is also eof if we have no more source stream
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-09-28 15:41:53 +02:00
Nextcloud bot 82a5732a13
[tx-robot] updated from transifex 2018-09-28 11:14:21 +00:00
Morris Jobke 065ec74173
Merge pull request #10884 from nextcloud/large-share-count-performance-13
[13] Improve performance when dealing with large numbers of shares
2018-09-27 17:20:13 +02:00
Roeland Jago Douma 9c0a9a4d46
Merge pull request #11400 from nextcloud/stable13-11112-do-not-hide-the-progress-bar-while-the-chunked-upload-is-being-assembled
[stable13] Do not hide the progress bar while the chunked upload is being assembled
2018-09-27 15:40:30 +02:00
Nextcloud bot 9fa50f48f1
[tx-robot] updated from transifex 2018-09-27 00:12:37 +00:00
Daniel Calviño Sánchez 1ee3c31f85 Do not hide the progress bar while the chunked upload is being assembled
Large files are not uploaded in a single operation, but uploaded in
several chunks; once all the chunks are uploaded then the server needs
to assemble them to get the final file.

Before, once the chunks were uploaded the progress bar was hidden.
However, this was confusing for the users, as the file could still need
some time to appear in the file list due to the assembling. Now once all
the chunks are uploaded the text in the progress bar changes to inform
the user that there are still some pending operations, and only when the
file is finally assembled the progress bar is hidden.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-09-26 17:46:43 +02:00
Nextcloud bot f678794470
[tx-robot] updated from transifex 2018-09-26 00:12:33 +00:00
Nextcloud bot 8a0ced9d7e
[tx-robot] updated from transifex 2018-09-25 00:12:22 +00:00
Nextcloud bot cfc711b278
[tx-robot] updated from transifex 2018-09-23 00:12:41 +00:00
Nextcloud bot ad102f4942
[tx-robot] updated from transifex 2018-09-22 00:12:19 +00:00
Nextcloud bot f2b6e38949
[tx-robot] updated from transifex 2018-09-21 00:12:22 +00:00
Nextcloud bot c3412b2f10
[tx-robot] updated from transifex 2018-09-20 00:13:09 +00:00
Nextcloud bot 94b13c605d
[tx-robot] updated from transifex 2018-09-19 00:12:34 +00:00
Nextcloud bot 1d24a509d9
[tx-robot] updated from transifex 2018-09-18 00:12:41 +00:00
Nextcloud bot ba97e60ffc
[tx-robot] updated from transifex 2018-09-17 00:12:40 +00:00
Nextcloud bot f085101422
[tx-robot] updated from transifex 2018-09-16 00:12:39 +00:00
Nextcloud bot 665db6ba80
[tx-robot] updated from transifex 2018-09-15 00:12:20 +00:00
Nextcloud bot 2d9a488cf3
[tx-robot] updated from transifex 2018-09-14 00:12:43 +00:00
blizzz acce19f2a5
Merge pull request #10824 from nextcloud/backport/10820/stable13
[stable13] [LDAP] The WebUI Wizard also should not assign empty config IDs
2018-09-13 13:11:46 +02:00
blizzz 9c68ce1556
Merge pull request #10829 from nextcloud/backport/10828/mimetype-detection-broken-for-junked-uploads
[stable13] Fix mimetype detection for junked uploads
2018-09-13 10:51:06 +02:00
Nextcloud bot 8e668729b1
[tx-robot] updated from transifex 2018-09-13 00:12:22 +00:00
Nextcloud bot 95e2d5f170
[tx-robot] updated from transifex 2018-09-12 00:12:24 +00:00
Nextcloud bot f6fbd6ee21
[tx-robot] updated from transifex 2018-09-10 00:13:47 +00:00
Nextcloud bot ef3789e16b
[tx-robot] updated from transifex 2018-09-09 00:13:18 +00:00
Nextcloud bot dfa6da5a03
[tx-robot] updated from transifex 2018-09-08 00:12:42 +00:00
Nextcloud bot 7c55f20d1d
[tx-robot] updated from transifex 2018-09-07 00:12:46 +00:00
Nextcloud bot 972e8c3399
[tx-robot] updated from transifex 2018-09-06 00:13:04 +00:00
Nextcloud bot a1a578114f
[tx-robot] updated from transifex 2018-09-05 00:13:00 +00:00
Nextcloud bot a08fdd8750
[tx-robot] updated from transifex 2018-09-04 00:12:26 +00:00
Roeland Jago Douma 0d8c0215d0
Merge pull request #10911 from nextcloud/customproperties-ignored-list-13
[13] use the same ignored properties list for both CustomerPropertiesBackends
2018-09-03 09:04:55 +02:00
Nextcloud bot f73724b5ec
[tx-robot] updated from transifex 2018-09-03 00:12:27 +00:00
Nextcloud bot 891d923a53
[tx-robot] updated from transifex 2018-09-02 00:12:45 +00:00
Nextcloud bot 90ab77d8bb
[tx-robot] updated from transifex 2018-09-01 00:12:27 +00:00
Morris Jobke 2f024dcd02
Merge pull request #10902 from nextcloud/cast-timestamp-13
[13] cast timestamps older than unix epoch to 0
2018-08-31 09:09:12 +02:00
Nextcloud bot 9bde06aab3
[tx-robot] updated from transifex 2018-08-31 00:12:18 +00:00
Nextcloud bot 9db4afce72
[tx-robot] updated from transifex 2018-08-30 00:12:18 +00:00
Nextcloud bot 2ffcba3814
[tx-robot] updated from transifex 2018-08-29 00:12:17 +00:00
Robin Appelman 8a3f6a816b
use the same ignored properties list for both CustomerPropertiesBackends
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-28 18:34:04 +02:00
Christian ed5224cd46
cast timestamps older than unix epoch to 0
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-28 16:57:42 +02:00
Nextcloud bot a4daa91b42
[tx-robot] updated from transifex 2018-08-28 00:13:18 +00:00
Robin Appelman 6dae2b9250
cache parent exists status during share setup
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-27 16:25:51 +02:00
Robin Appelman 110650ff58
only determine is sharing is disabled for a user once
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-27 16:25:47 +02:00
Robin Appelman 237e4b7521
don't check if target dir exists when using the default share target directory
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-27 16:25:45 +02:00
Robin Appelman a396c37693
re-use view instances for shared storages
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-27 16:25:44 +02:00
Robin Appelman c897e2af8e
more efficient way to detect added and removed mounts
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-27 16:25:42 +02:00
Robin Appelman f2152ecda9
more efficient unique share target generation
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-27 16:25:39 +02:00
Nextcloud bot 1769029910
[tx-robot] updated from transifex 2018-08-27 00:12:24 +00:00
Nextcloud bot 1aae409cc8
[tx-robot] updated from transifex 2018-08-26 00:12:42 +00:00
Nextcloud bot 8ec2c933de
[tx-robot] updated from transifex 2018-08-25 00:12:43 +00:00
Roeland Jago Douma 1a016f21e6
Merge pull request #10837 from nextcloud/dav-search-no-negative-mtime-13
[13] disallow negative mtime in dav search
2018-08-24 17:46:52 +02:00
Robin Appelman d69234e339
disallow negative mtime in dav search
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-24 16:25:35 +02:00
Joas Schilling 1eeea993a8
Fix mimetype detection for junked uploads
Signed-off-by: Joas Schilling <coding@schilljs.com>
2018-08-24 10:49:08 +02:00
Nextcloud bot 12a3f776a1
[tx-robot] updated from transifex 2018-08-24 00:12:32 +00:00
Morris Jobke 3940790e79
Merge pull request #10591 from nextcloud/smb-stat-retry-13
[13] retry smb stat on timeout
2018-08-23 18:14:40 +02:00
Arthur Schiwon 7c3339521c
[LDAP] The WebUI Wizard also should not assign empty config IDs
With 689df9a843 the behaviour to assign only
non-empty config IDs was introduced. Only, this was only effective for CLI
and OCS API.

Related to #3270.

The web UI creates now also a full configuration on first load. This fixes
#5094.

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-08-23 18:02:55 +02:00
Robin Appelman 5d18d142a6 assume the same timezone when using local domain names for smb
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-23 16:10:42 +02:00
Robin Appelman 05131490a7 improved fallback of timezone detection
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-23 16:10:42 +02:00
Morris Jobke 389b981aa5
Merge pull request #10285 from nextcloud/anonymous-options-13
[13] Add sabre plugin to allow anonymous options requests to the dav root
2018-08-23 16:05:56 +02:00
Morris Jobke 893cccba68
Merge pull request #10816 from nextcloud/backport/10700+10815/stable13
[stable13] remove unexecutable code
2018-08-23 14:58:29 +02:00
Nextcloud bot 112719f457
[tx-robot] updated from transifex 2018-08-23 00:13:11 +00:00
Arthur Schiwon f404695602
returning of $tr is expected, otherwise ending up in a JS error
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-08-23 00:31:32 +02:00
Arthur Schiwon e1e35b42de
remove unexecutable code
OCA.Sharing.SharedFileInfo was never defined and that stopped execution.
Interestingly, FF never showed me an error.

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-08-23 00:31:10 +02:00
Robin Appelman 48f39628d0 use dir instead of allinfo where possible 2018-08-22 14:28:56 +02:00
Morris Jobke 5bc7af2510
Merge pull request #10783 from nextcloud/backport/10775/stable13
[stable13] Resolve all group memberships properly
2018-08-22 10:51:02 +02:00
Roeland Jago Douma a4e989bb75
Merge pull request #10763 from nextcloud/backport/10687/stable13
[stable13] don't blame randome people for background email updates
2018-08-22 08:50:34 +02:00
Nextcloud bot ff3b132382
[tx-robot] updated from transifex 2018-08-22 00:12:24 +00:00
Morris Jobke 4f6f3b261a
Resolve all group memberships properly
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-08-21 17:08:22 +02:00
Nextcloud bot d3ab244b40
[tx-robot] updated from transifex 2018-08-21 00:12:31 +00:00
Arthur Schiwon bd31fe7c9b
fix unit tests
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>

# Conflicts:
#	apps/user_ldap/tests/User_LDAPTest.php
2018-08-20 15:16:33 +02:00
Arthur Schiwon 0f958bf595
don't force LDAP updates on userExists anymore
and remove some deprecated code

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-08-20 15:05:09 +02:00
Arthur Schiwon 7dfb837766
don't blame email address changers
the information is being collected with admin_audit

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-08-20 15:05:04 +02:00
Morris Jobke aef428733b
Merge pull request #10552 from nextcloud/backport/10523/stable13
[stable13] Adding test for table schedulingobjects and fixing postgres LOB
2018-08-20 14:56:37 +02:00
blizzz ace570d723
Merge pull request #10698 from nextcloud/smb-log-removed-entries-13
[13] log entries that are hidden during file listing
2018-08-20 14:53:08 +02:00
Morris Jobke eea151fcec
Merge pull request #10565 from nextcloud/stable13-10348-fix-transfering-ownership-of-a-share-to-user-with-same-id-as-receiver
[stable13] Fix transfering ownership of a share to user with same id as receiver
2018-08-20 14:52:15 +02:00
Daniel Kesselberg ee52136772
Fix call to OC.generateUrl for caldav birthday calendar on/off
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2018-08-20 14:20:52 +02:00
Nextcloud bot f2f723c7c8
[tx-robot] updated from transifex 2018-08-20 00:12:36 +00:00
Nextcloud bot ff8626f46e
[tx-robot] updated from transifex 2018-08-18 00:12:45 +00:00
Nextcloud bot 47ea2c17fd
[tx-robot] updated from transifex 2018-08-16 00:12:35 +00:00
Robin Appelman b2685eb4ee
log entries that are hidden during file listing
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-16 01:16:53 +02:00
Nextcloud bot 294baf8e5d
[tx-robot] updated from transifex 2018-08-15 00:13:48 +00:00
Nextcloud bot 015c66b94f
[tx-robot] updated from transifex 2018-08-14 00:12:15 +00:00
Nextcloud bot 5327e3b4ce
[tx-robot] updated from transifex 2018-08-13 00:12:18 +00:00
Nextcloud bot 7ed7c8e37a
[tx-robot] updated from transifex 2018-08-11 00:12:39 +00:00
Roeland Jago Douma abef061686
Merge pull request #10581 from nextcloud/encryption-s3-fix-stable13
make file cache updates more robust
2018-08-10 08:10:03 +02:00
Nextcloud bot 93df97f1bf
[tx-robot] updated from transifex 2018-08-10 00:12:36 +00:00
Robin Appelman 0450406c50
retry stat on timeout
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-08-08 16:15:31 +02:00
Bjoern Schiessle be172cc6f2
make file cache updates more robust
only update the encrypted version after the write operation is finished and the stream is closed

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
2018-08-08 10:46:14 +02:00
Nextcloud bot a5985ad0f4
[tx-robot] updated from transifex 2018-08-08 00:13:28 +00:00
Daniel Calviño Sánchez 5da4e4dc53 Fix transfering ownership of a share to user with same id as receiver
When the ownership of a user share is transfered to the receiver the
share is removed, as the receiver now owns the original file. However,
due to a missing condition, any share with a group, link or remote with
the same id as the user was removed, not only the user shares.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-08-07 09:09:01 +02:00
Nextcloud bot f6c8668a7e
[tx-robot] updated from transifex 2018-08-07 00:12:15 +00:00
Thomas Müller 32701e261b
Adding test for table schedulingobjects and fixing postgres LOB
(cherry picked from commit afd4ebf0404e8bcd7cba0bec2dce177e97632f8a)

Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de>
2018-08-06 17:20:49 +02:00
Nextcloud bot 8e0e5a6b28
[tx-robot] updated from transifex 2018-08-06 00:12:30 +00:00
Nextcloud bot 66d74f6e56
[tx-robot] updated from transifex 2018-08-05 00:12:38 +00:00
Nextcloud bot 69af30b883
[tx-robot] updated from transifex 2018-08-04 00:12:47 +00:00
Nextcloud bot b02d1c8358
[tx-robot] updated from transifex 2018-08-03 00:12:32 +00:00
Nextcloud bot ddd6c72b1f
[tx-robot] updated from transifex 2018-08-02 00:12:46 +00:00
Nextcloud bot 6e449f13cd
[tx-robot] updated from transifex 2018-08-01 00:12:09 +00:00
Nextcloud bot ab6741427b
[tx-robot] updated from transifex 2018-07-31 00:12:21 +00:00
Nextcloud bot f4b4fcf8e4
[tx-robot] updated from transifex 2018-07-30 00:12:17 +00:00
Nextcloud bot 9ba794c067
[tx-robot] updated from transifex 2018-07-28 00:12:17 +00:00