Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2016-03-17Merge pull request #23309 from owncloud/backport-23164-stable9Thomas Müller
[stable9] Prevent certain DBs throwing exceptions on same-value updates
2016-03-16Require at least libxml 2.7.0Lukas Reschke
Fixes https://github.com/owncloud/core/issues/23168
2016-03-16Prevent certain DBs throwing exceptions on same-value updatesRobin McCorkell
A PreconditionNotMetException must only be thrown if explicit preconditions are specified for setValues(), not if the value is merely the same as was already in the DB.
2016-03-15Add support for custom values in integrity checkerLukas Reschke
2016-03-15Replace all required valuesLukas Reschke
2016-03-15Merge pull request #23237 from owncloud/backport-22901Thomas Müller
[stable9] Add DAV authenticated also to other scopes
2016-03-15move failedstorage to coreRobin Appelman
2016-03-15Merge pull request #23022 from owncloud/stable9_backport_22602Thomas Müller
[stable 9] Do not check all chunks of a chunked upload if we do not need to
2016-03-15Merge pull request #23075 from owncloud/backport-23074-oracle-ext-storageThomas Müller
[9.0] Correctly escape join statements and use selectAlias
2016-03-15Merge pull request #23229 from ↵Thomas Müller
owncloud/backport-23218-memcached-exceptions-on-success [9.0] Fix errors in memcached implementation
2016-03-15Merge pull request #23230 from owncloud/backport-23191Thomas Müller
[stable9] Verify the getResponse returns a ResponseInterface
2016-03-15Merge pull request #23231 from owncloud/backport-23190Thomas Müller
[stable9] Use proper URLs for search results
2016-03-15Merge pull request #23240 from owncloud/backport-23222Thomas Müller
backport of #23222
2016-03-15Generate a valid URL for link notificationRoeland Jago Douma
fixes #23197 * Updated unit test
2016-03-14backport of #23222 (#23225)Phiber2000
2016-03-14Add DAV authenticated also to other scopesLukas Reschke
Fixes https://github.com/owncloud/core/issues/22893
2016-03-14Use proper URLs for search resultsLukas Reschke
Fixes https://github.com/owncloud/core/issues/23136
2016-03-14Merge pull request #22943 from owncloud/backport-22800-stable9Thomas Müller
[9.0] don't hide server not available exception, fixes #20536
2016-03-14Verify the getResponse returns a ResponseInterfaceLukas Reschke
Can also return `null` as per PHPDoc. Regression added by https://github.com/owncloud/core/commit/97f5c095f4018119e15d7c612a685da1dc91a340 Fixes https://github.com/owncloud/core/issues/23145
2016-03-14Merge pull request #23065 from owncloud/stable9-add-rewrite-rules-after-setupThomas Müller
[stable9] Add base rewrite rule only when RewriteBase is defined
2016-03-14Fix errors in memcached implementationJoas Schilling
2016-03-14Shorter cache key for URL entriesJoas Schilling
2016-03-11Explicitly check for portLukas Reschke
The setup uses `\OCP\IRequest::getInsecureServerHost` which in some cases can also include a port. This makes the trusted domain check fail thus. I've decided to add this here that way because adjusting the setup would require parsing the host properly. This is not something that can be done very good in PHP. Check the following example for why `parse_url` is not our friend: https://3v4l.org/k501Z
2016-03-11Improved rewrite ruleLukas Reschke
As per https://github.com/owncloud/core/issues/23098 and https://github.com/owncloud/core/issues/23117
2016-03-10Merge pull request #22912 from owncloud/stable9-diskfreespace-filesworkaroundThomas Müller
[stable9] Fix call to disk_free_space when a file is provided
2016-03-10Merge pull request #23071 from owncloud/backport-23032-no-response-on-cliThomas Müller
[9.0] Do not set response status in CLI in case of error
2016-03-10Correctly escape join statements and use selectAliasJoas Schilling
2016-03-10Merge pull request #23016 from owncloud/stable9_backport_23008Thomas Müller
[stable 9] Select queries in the default share provider should query for file/folder
2016-03-10Do not set response status in CLI in case of errorVincent Petry
2016-03-10Add base rewrite rule only when RewriteBase is definedLukas Reschke
In case Apache is configured with an `Alias` such as with the ownCloud packages the rewrite rules will fail when no valid RewriteBase is configured.
2016-03-09Fix call to disk_free_space when a file is providedVincent Petry
In the case of shared files, we have to call free_space() on the file name. This has the side-effect that when uploading to a local storage without quota set, it will call disk_free_space with the file name, which fails. This fix uses the parent folder in case the given path is a file.
2016-03-09Add XMLReader as requirementLukas Reschke
The SabreDAV release in 9.0 requires XMLReader, while this is usually compiled in by default some distributions like Gentoo don't. Without this ownCloud gives a fatal 500 error instead of telling people to enable XMLReader. Fixes https://github.com/owncloud/core/issues/23003
2016-03-09Do not check all chunks of a chunked upload if we do not need toRoeland Jago Douma
Fixes #22601 Before we did a full test on all chunks to verify if a chunked upload was completed. This is unneeded since if we are missing one chunk we can already fail. Also we look from back to front since it is much more likely that we find a missing chunk thus can error out early.
2016-03-09Select queries in the default share provider should query for file/folderRoeland Jago Douma
There can be leftover calendar and contacts shares in the oc_share table. We need to filter those out properly.
2016-03-09Merge pull request #22908 from ↵Thomas Müller
owncloud/backport-22904-group-manager-wrong-return [9.0] Make sure that the return value is an array
2016-03-09Merge pull request #22919 from owncloud/backport-double-url-encodingThomas Müller
[stable9] Remove double URL encoding
2016-03-08Fix share mounting recursionVincent Petry
2016-03-08don't hide server not available exception, fixes #20536Arthur Schiwon
2016-03-07Remove double URL encodingLukas Reschke
ZipStreamer as bundled with 9.0 will properly encode the filename already. Fixes https://github.com/owncloud/core/issues/22836#issuecomment-193336245
2016-03-07Make sure that the return value is an arrayJoas Schilling
2016-03-04Run cleanup of expired DB file locks to background jobMorris Jobke
* fixes #22819 The old way fired a DELETE statement on each destruction of the DBLockingProvider. Which could cause a lot of queries. It's enough to run this every 5 minutes in a background job, which in the end could result in file locks that exists 5 minutes longer - in the worst case and for not properly released locks. This makes the DB based locking a lot more performant and could result in a similar performance to the Redis based locking provider.
2016-03-04Merge pull request #22832 from owncloud/external-unavailable-recheck9Thomas Müller
[9.0] allow availability recheck for external storages
2016-03-04ucwords does not support delimiter on 5.4Joas Schilling
2016-03-04Merge pull request #22822 from owncloud/stable9-exclude-assetsThomas Müller
[stable9] Exclude the assets folder from integrity check
2016-03-03allow availability recheck for external storagesRobin Appelman
2016-03-03Revert "No longer evaluate appinfo/version"Vincent Petry
2016-03-03Exclude the assets folder from integrity checkLukas Reschke
We should not scan the assets folder as this can contain user specific content. Partially addresses https://github.com/owncloud/core/issues/22803
2016-03-03Keep "encryptedVersion" when calling `\OC\Files\View::copy`Lukas Reschke
When calling `\OC\Files\View::copy` we should also keep the version to ensure that the file will always have the correct version attached and can be successfully decrypted. To test this the following steps are necessary (from https://github.com/owncloud/core/issues/22781#issuecomment-191328982): 1. setup a new ownCloud 9.0 beta2 2. enable encryption 2. upload a docx (5.7MB large) 3. upload the same file again and overwrite the existing file 4. I can download the original file and the first version 5. I restore the first version 6. restored version can no longer be downloaded with the error described above The manual cache operation in `\OCA\Files_Versions\Storage` is unfortunately necessary since `\OCA\Files_Versions\Storage::copyFileContents` is not using `\OCP\Files\Storage::moveFromStorage` in the case when an object storage is used. Due to the workaround added in https://github.com/owncloud/core/commit/54cea05271b887f1c8062c034741df869bc0f055 the stream is directly copied and thus bypassing the FS.
2016-03-01Merge pull request #22757 from owncloud/apply-licenseC. Montero Luque
Update copyright information and author file
2016-03-01Remove Scrutinizer Auto FixerLukas Reschke