aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* | | Allow to serve static webm directlyRoeland Jago Douma2020-02-121-1/+1
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | [tx-robot] updated from transifexNextcloud bot2020-02-116-0/+6
| | |
* | | Merge pull request #18904 from nextcloud/enh/noid/flow-loggingRoeland Jago Douma2020-02-105-1/+79
|\ \ \ | | | | | | | | Log Flow activity
| * | | always require a message paramter for data loggingArthur Schiwon2020-01-283-4/+15
| | | | | | | | | | | | | | | | | | | | | | | | also ensure it plays well with current log reader Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | log Flow activityArthur Schiwon2020-01-284-1/+68
| | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | Merge pull request #19307 from nextcloud/enh/argon2idRoeland Jago Douma2020-02-101-21/+13
|\ \ \ \ | |_|/ / |/| | | Add Argon2id support
| * | | Add Argon2id supportRoeland Jago Douma2020-02-071-21/+13
| | | | | | | | | | | | | | | | | | | | | | | | When available we should use argon2id for hashing. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | [tx-robot] updated from transifexNextcloud bot2020-02-104-0/+4
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2020-02-092-2/+114
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2020-02-0816-4/+16
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2020-02-0710-0/+10
|/ / /