summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Get correct mimetype on objectstoresRoeland Jago Douma2020-03-111-6/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #19867 from Jose123456/error-loggingRoeland Jago Douma2020-03-101-1/+5
|\ | | | | Set error_logging correctly. Fixes #19847
| * E_ALL already sets E_DEPRECATEDJose Quinteiro2020-03-091-1/+1
| | | | | | | | Signed-off-by: Jose Quinteiro <github@quinteiro.org>
| * Set error_logging correctly. Fixes #19847Jose Quinteiro2020-03-091-1/+5
| | | | | | | | | | | | | | Don't override the error_logging setting from php.ini unless we're debugging. Signed-off-by: Jose Quinteiro <github@quinteiro.org>
* | Merge pull request #19812 from nextcloud/enh/noid/subscription-configRoeland Jago Douma2020-03-101-0/+13
|\ \ | | | | | | Add config flag for subscription and hide server development notice
| * | Add system config flag to manually set that a subscription is availableJulius Härtl2020-03-101-0/+13
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Merge pull request #19746 from nextcloud/locked-exception-forward-existingRoeland Jago Douma2020-03-092-4/+19
|\ \ \ | |_|/ |/| | pass the existing locks info when making locked exception with absolu…
| * | pass the existing locks info when making locked exception with absolute pathsRobin Appelman2020-03-022-4/+19
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | Merge pull request #19820 from nextcloud/fix/mismatching-docblock-return-typeChristoph Wurst2020-03-094-6/+13
|\ \ \ | | | | | | | | Fix mismatching docblock return types
| * | | Fix mismatching docblock return typesChristoph Wurst2020-03-064-6/+13
| | |/ | |/| | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* / | Fix mismatching doc block parameter typesChristoph Wurst2020-03-066-6/+7
|/ / | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Merge pull request #19743 from nextcloud/cache-updater-storage-mtime-falseRoeland Jago Douma2020-03-051-6/+9
|\ \ | | | | | | dont try to update storage mtime if we can't get the mtime
| * | dont try to update storage mtime if we can't get the mtimeRobin Appelman2020-03-021-6/+9
| |/ | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2020-03-054-4/+6
| |
* | [tx-robot] updated from transifexNextcloud bot2020-03-042-2/+24
| |
* | Merge pull request #19742 from nextcloud/bug/19740/add-msg-for-exceptionblizzz2020-03-021-2/+2
|\ \ | |/ |/| Add message for DoesNotExistException
| * Add message for DoesNotExistExceptionDaniel Kesselberg2020-03-021-2/+2
| | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | [tx-robot] updated from transifexNextcloud bot2020-03-022-0/+4
| |
* | Merge pull request #19493 from nextcloud/simplefile-new-lazyRoeland Jago Douma2020-02-289-10/+245
|\ \ | | | | | | Create SimpleFile only when writing the content
| * | Bump autoloaderRoeland Jago Douma2020-02-282-0/+2
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | allow writing content directly when creating new SimpleFileRobin Appelman2020-02-284-6/+12
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | Create SimpleFile only when writing the contentRobin Appelman2020-02-286-8/+235
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instead of first creating an empty file and then writing the content. This solves the overhead of creating an empty file with the common pattern: ```php $file = $simpleFilder->newFile('foo.txt'); $file->putContent('bar.txt'); ``` roughly halving the number of storage and database operations that need to be done when creating a `SimpleFile`. This is not automatically done with `File` because that has a more complex api which I'm more hesitant to touch. Instead the `Folder::newFile` api has been extended to accept the content for the new file. In my local testing, the overhead of first creating an empty file took about 20% of the time for preview generation Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | Merge pull request #19321 from ↵Joas Schilling2020-02-283-0/+85
|\ \ \ | |/ / |/| | | | | | | | nextcloud/enh/allow-to-overwrite-share-target-mountpoints Allow to overwrite share target mountpoints
| * | Allow to overwrite share target mountpointsJoas Schilling2020-02-173-0/+85
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Merge pull request #19613 from nextcloud/enh/19537/undefined-index-passwordRoeland Jago Douma2020-02-281-4/+6
|\ \ \ | | | | | | | | Check that username and password are present.
| * | | Check that username and password are present.Daniel Kesselberg2020-02-231-4/+6
| | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | [tx-robot] updated from transifexNextcloud bot2020-02-282-2/+2
| | | |
* | | | Merge pull request #19670 from nextcloud/techdebt/noid/allow-to-remove-listenersChristoph Wurst2020-02-272-0/+13
|\ \ \ \ | |_|_|/ |/| | | Allow to remove listeners
| * | | Allow to remove listenersJoas Schilling2020-02-272-0/+13
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #19659 from ↵Roeland Jago Douma2020-02-271-2/+7
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/techdebt/17486/allow-non-integer-ids-in-entity-mapper Allow non integer ids in Entity Mapper
| * | | | Allow non integer ids in Entity MapperJoas Schilling2020-02-261-2/+7
| |/ / / | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #19433 from nextcloud/bugfix/noid/fix-installing-talkblizzz2020-02-261-2/+13
|\ \ \ \ | |/ / / |/| | | Fix installing Talk due to hardcoded route
| * | | Hardcode Talk namespace to fix install due to global routeJoas Schilling2020-02-141-2/+13
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | [tx-robot] updated from transifexNextcloud bot2020-02-252-0/+2
| | | |
* | | | Merge pull request #19478 from ↵Roeland Jago Douma2020-02-231-3/+8
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | Tim-Obert/bug/19475/fix-routes-generation-authpublicsharecontroller Change the route generation of AuthPublicShareController.php
| * | | Fix requested changesTimObert2020-02-141-10/+5
| | | | | | | | | | | | | | | | Signed-off-by: Tim Obert <tobert@w-commerce.de>
| * | | Change the route generation of AuthPublicShareController.php and adjust the ↵Tim Obert2020-02-141-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | routes for file sharing Signed-off-by: Tim Obert <tobert@w-commerce.de>
* | | | Merge pull request #19528 from ↵Roeland Jago Douma2020-02-221-2/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/bugfix/noid/remove-user-root-from-error-message Strip of users home path from share api message
| * | | | Strip of users home path from share api messageJoas Schilling2020-02-201-2/+4
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #18227 from ↵Christoph Wurst2020-02-215-2/+49
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/bug/17947/set-transaction-isolation-connect Add event subscriber for transaction isolation level
| * | | | Add event subscriber for transaction isolation levelDaniel Kesselberg2020-02-215-2/+49
| |/ / / | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | Merge pull request #19412 from nextcloud/fix/19404/make-favorite-publicChristoph Wurst2020-02-212-10/+13
|\ \ \ \ | |/ / / |/| | | Make TAG_FAVORITE public
| * | | Make TAG_FAVORITE publicDaniel Kesselberg2020-02-122-10/+13
| | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | [tx-robot] updated from transifexNextcloud bot2020-02-152-0/+4
| |/ / |/| |
* | | when we receive intentional empty whats new info, do not try to show itArthur Schiwon2020-02-131-1/+5
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | Allow to overwrite the path on the cache eventJoas Schilling2020-02-132-0/+14
| |/ |/| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Merge pull request #19424 from nextcloud/bugfix/noid/dont-create-invalid-usersRoeland Jago Douma2020-02-121-1/+1
|\ \ | | | | | | Don't create invalid users
| * | Don't create invalid usersJoas Schilling2020-02-121-1/+1
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | disable timeout on app install via cliArthur Schiwon2020-02-122-7/+15
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | Allow to serve static mp4 directlyJulius Härtl2020-02-121-1/+1
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>