summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2020-04-082-0/+4
|
* Move legacy classes from PSR0 to PSR4Christoph Wurst2020-04-0720-35/+35
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* [tx-robot] updated from transifexNextcloud bot2020-04-072-0/+4
|
* Merge pull request #20033 from nextcloud/s3-seekable-streamRoeland Jago Douma2020-04-064-21/+208
|\ | | | | Enable fseek for files in S3 storage
| * update autoloaderRobin Appelman2020-04-033-9/+9
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * add basic tests for s3 seeking and add some error handling if reopen return ↵Robin Appelman2020-04-011-8/+18
| | | | | | | | | | | | the wrong range Signed-off-by: Robin Appelman <robin@icewind.nl>
| * make seekable s3 stream genericRobin Appelman2020-04-012-57/+106
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * Enable fseek for files in S3 storageLukas Stabe2020-04-012-19/+147
| | | | | | | | Signed-off-by: Lukas Stabe <lukas@stabe.de>
* | [tx-robot] updated from transifexNextcloud bot2020-04-064-0/+8
| |
* | [tx-robot] updated from transifexNextcloud bot2020-04-056-0/+12
| |
* | Merge pull request #20139 from ↵Roeland Jago Douma2020-04-041-1/+1
|\ \ | | | | | | | | | | | | nextcloud/unify-default-value-for-restricting-user-enumeration-with-settings Unify default value for restricting user enumeration with settings
| * | Unify default value for restricting user enumeration with settingsDaniel Calviño Sánchez2020-03-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the value was never enabled or disabled, the settings show "Restrict username enumeration to groups" as disabled. However, in some components it was enabled by default, which caused an inconsistency in the behaviour with respect to the settings, for example in the contacts menu. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #20284 from nextcloud/bugfix/noid/catch-no-user-in-cronRoeland Jago Douma2020-04-042-2/+8
|\ \ \ | | | | | | | | Properly catch NoUserException during upload cleanup
| * | | Properly hint exceptions thrown by getUserFolderJulius Härtl2020-04-032-2/+8
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | [tx-robot] updated from transifexNextcloud bot2020-04-046-0/+12
|/ / /
* | | fixes the return type of BeforeUserLoggedInEventArthur Schiwon2020-04-031-2/+4
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | [tx-robot] updated from transifexNextcloud bot2020-04-03110-362/+372
| | |
* | | Merge pull request #19486 from nextcloud/scanner-performanceRoeland Jago Douma2020-04-023-15/+73
|\ \ \ | | | | | | | | Improve performance of file scanner
| * | | restart transaction when cache insert fails due to duplicateRobin Appelman2020-04-011-3/+7
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | call cache->insert directly instead of going trough cache->put first when ↵Robin Appelman2020-04-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | scanning Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | dont try to get existing cache data during scanning if we already know its a ↵Robin Appelman2020-04-011-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | new file Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | reuse known parentId when inserting cache entries in scannerRobin Appelman2020-04-012-1/+4
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | optimize getMetaData for local storageRobin Appelman2020-04-011-6/+57
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #19890 from nextcloud/enh/comments-reference-idJoas Schilling2020-04-027-22/+159
|\ \ \ \ | |_|_|/ |/| | | Add optional comments reference_id
| * | | Update autoloaderJoas Schilling2020-04-022-0/+4
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | Optionally write the reference id into the databaseJoas Schilling2020-03-311-22/+61
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | Allow to set and get the reference idJoas Schilling2020-03-313-0/+49
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | Add optional column oc_comments.reference_idJoas Schilling2020-03-312-0/+45
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #19781 from ↵Robin Appelman2020-04-012-17/+11
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | nextcloud/quota-include-external-dont-use-current-user Dont always use the current users quota when calculating storage info
| * | | Dont always use the current users quota when calculating storage infoRobin Appelman2020-03-042-17/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instead pass the quota as parameter. Without this fix, when 'quota_include_external_storage' is enabled, the webui will show the quota configured for the admin for every user instead of the users quota Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #20241 from nextcloud/fix/license-headers-19Roeland Jago Douma2020-04-01179-30/+199
|\ \ \ \ | | | | | | | | | | Update the license headers for Nextcloud 19
| * | | | Update the license headers for Nextcloud 19Christoph Wurst2020-03-31179-30/+199
| | |/ / | |/| | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | Merge pull request #19858 from nextcloud/feature/webauthnRoeland Jago Douma2020-03-3110-13/+727
|\ \ \ \ | | | | | | | | | | Add WebAuthn support
| * | | | Start with webauthnRoeland Jago Douma2020-03-319-11/+725
| | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
| * | | | Make password nullable in LoginDataRoeland Jago Douma2020-03-311-2/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | [POC] Event for failed login attemptsRoeland Jago Douma2020-03-318-4/+199
|/ / / / | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | Merge pull request #20210 from nextcloud/fix/outdated/admin-dir_permissionsJoas Schilling2020-03-313-9/+3
|\ \ \ \ | |/ / / |/| | | Remove outdated admin-dir_permissions documentation link
| * | | Update base.phpJohn Molakvoæ2020-03-281-2/+1
| | | |
| * | | Update base.phpJohn Molakvoæ2020-03-281-1/+0
| | | |
| * | | Update util.phpJohn Molakvoæ2020-03-281-2/+1
| | | |
| * | | Update Config.phpJohn Molakvoæ2020-03-281-4/+1
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2020-03-304-8/+8
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2020-03-292-2/+2
|/ / /
* | | [tx-robot] updated from transifexNextcloud bot2020-03-282-0/+4
| | |
* | | Merge pull request #20170 from nextcloud/techdebt/remove-unused-importsChristoph Wurst2020-03-2738-48/+0
|\ \ \ | | | | | | | | Remove unused imports
| * | | Remove unused importsChristoph Wurst2020-03-2538-48/+0
| | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | [tx-robot] updated from transifexNextcloud bot2020-03-272-0/+6
| | | |
* | | | Use the short array syntax, everywhereChristoph Wurst2020-03-26148-706/+706
| | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | Use lowercase true, false and null constantsChristoph Wurst2020-03-255-5/+5
|/ / / | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | Add a public event for contacts interactionChristoph Wurst2020-03-253-0/+138
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>