aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
Commit message (Collapse)AuthorAgeFilesLines
* Allow to serve static webm directlyRoeland Jago Douma2020-02-121-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* always require a message paramter for data loggingArthur Schiwon2020-02-102-1/+12
| | | | | | also ensure it plays well with current log reader Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* log Flow activityArthur Schiwon2020-02-101-1/+24
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Merge pull request #19326 from nextcloud/backport/19303/stable18Roeland Jago Douma2020-02-072-7/+34
|\ | | | | [stable18] Fix occ maintenance:install database connect failure
| * Split the exception handling so install errors don't log as setup errorsJoas Schilling2020-02-061-3/+11
| | | | | | | | | | | | More gebuging Signed-off-by: Joas Schilling <coding@schilljs.com>
| * Check the new connection on setup like with PostgreSQL and OracleJoas Schilling2020-02-061-0/+10
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * Only provide the auth method for MySQL 8.0+ to not break MariaDBJoas Schilling2020-02-061-4/+13
| | | | | | | | | | | | Provide the auth method for MySQL 8.0+ Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Merge pull request #19332 from nextcloud/backport/18926/stable18Roeland Jago Douma2020-02-071-1/+1
|\ \ | | | | | | [stable18] Array access on int will fail on php7.4
| * | Use strpos to check that @ is the first charDaniel Kesselberg2020-02-061-1/+1
| |/ | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* / Make sure the default share provider does not execute for other thingsJoas Schilling2020-02-061-0/+3
|/ | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix data Apache2 .htaccess typoSimounet2020-02-051-1/+1
| | | | Signed-off-by: Simounet <contact@simounet.net>
* Merge pull request #19297 from nextcloud/backport/19246/stable18Roeland Jago Douma2020-02-051-0/+1
|\ | | | | [stable18] Keep the modification time during decryptFile
| * Keep the modification time during decryptFilesammo28282020-02-041-0/+1
| |
* | Merge pull request #19292 from nextcloud/backport/19203/stable18Roeland Jago Douma2020-02-051-11/+27
|\ \ | |/ |/| [stable18] Allow respecting PASSWORD_DEFAULT
| * Allow selecting the hashing algorithmRoeland Jago Douma2020-02-041-11/+27
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #19228 from nextcloud/backport/19215/stable18Roeland Jago Douma2020-02-041-1/+1
|\ \ | |/ |/| [stable18] WebcalRefreshJob: Fix reading refresh rate
| * JobList: Typecast last_run to integerGeorg Ehrke2020-01-311-1/+1
| | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* | for the DB ot pick an index specify the object_typeArthur Schiwon2020-02-031-4/+6
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Make sure to catch php errors during job executionDaniel Kesselberg2020-02-031-1/+1
|/ | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Do not encode contacts menu mailto linksChristoph Wurst2020-01-301-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* add hub bundle for easy post-installationArthur Schiwon2020-01-272-0/+44
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Merge pull request #19118 from nextcloud/legacy_event_logRoeland Jago Douma2020-01-261-1/+1
|\ | | | | [stable18] Reduce legacy event log level to debug
| * Reduce legacy event log level to debugMichaIng2020-01-181-1/+1
| | | | | | | | | | | | This is to reduce log flooding on info log level, which is currently expected tue to deprecated event use in many apps and core: https://github.com/nextcloud/server/issues/18331 This information is helpful for developers only, hence should be sufficient as debug log. Especially due to the extremely high frequency this log can happen, this currently practically forces admins to disable info logs, which conflicts with other needs. Signed-off-by: MichaIng <micha@dietpi.com>
* | ignore values that undershoot the minimum, go with defaultArthur Schiwon2020-01-231-5/+13
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | use getSystemValueIntblizzz2020-01-231-3/+3
| | | | | | | | | | | | Co-Authored-By: kesselb <mail@danielkesselberg.de> Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | expose Argon2 options (as we did for bcrypt)Arthur Schiwon2020-01-231-0/+6
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Fix loaded controller checkJoas Schilling2020-01-211-1/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Increase the timeout for app downloadsJoas Schilling2020-01-201-1/+1
|/ | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #18906 from nextcloud/backport/18892/stable18Roeland Jago Douma2020-01-151-1/+1
|\ | | | | [stable18] Proper text previews
| * Proper text previewsRoeland Jago Douma2020-01-151-1/+1
| | | | | | | | | | | | | | | | | | | | Fixes #17828 * Modified the preview provider to provider smaller fonts for the previes (so it is not so screaming) * Modified the sidebar to show plain text and markdown files full size. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #18878 from nextcloud/backport/18805/stable18Roeland Jago Douma2020-01-151-7/+13
|\ \ | |/ |/| [stable18] Check if file already exists during file creation
| * CHeck if file already exists during file creationJulius Härtl2020-01-141-7/+13
| | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Allow to force register the namespaceJoas Schilling2020-01-141-3/+4
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Register the namespace after reading the new fileJoas Schilling2020-01-141-1/+2
|/ | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* AppFetcher: Distinguish between fileName and endpointNameGeorg Ehrke2020-01-123-1/+5
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* Clean up 2FA provider registry when a user is deletedChristoph Wurst2020-01-093-0/+66
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Accept shares when you open mailRoeland Jago Douma2020-01-061-1/+1
| | | | | | | | | Fixes #18380 When you open a direct share to yourself. We should autoaccept the share. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Modify regex to match some other chromium browsersDaniel Kesselberg2019-12-271-1/+1
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Fix broken upgrade caused by undefined method callJulius Härtl2019-12-231-1/+0
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Merge pull request #18536 from nextcloud/enhancement/preview-center-verticallyRoeland Jago Douma2019-12-231-1/+1
|\ | | | | Also center vertically when cropping previews
| * Also center vertically when cropping previewsJohn Molakvoæ (skjnldsv)2019-12-221-1/+1
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Merge pull request #18442 from nextcloud/bugfix/noid/broken_appstoreurl_configRoeland Jago Douma2019-12-223-9/+5
|\ \ | | | | | | Restore old behavior allowing to set custom appstore
| * | Restore old behavior allowing to set custom appstoreGeorg Ehrke2019-12-223-9/+5
| | | | | | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* | | Merge pull request #18511 from Al2Klimov/bugfix/movie-getthumbnailRoeland Jago Douma2019-12-221-2/+2
|\ \ \ | |/ / |/| | Movie#getThumbnail(): compare Movie#generateThumbNail() to null, not false
| * | Movie#getThumbnail(): compare Movie#generateThumbNail() to null, not falseAlexander A. Klimov2019-12-211-2/+2
| | | | | | | | | | | | Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de>
* | | Merge pull request #18478 from nextcloud/fix/direct-editing-invalid-editor-idRoeland Jago Douma2019-12-221-0/+5
|\ \ \ | | | | | | | | Do not generate tokens for editor IDs that do not exist
| * | | Do not generate tokens for editor IDs that do not existChristoph Wurst2019-12-191-0/+5
| | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | Merge pull request #18505 from ↵Roeland Jago Douma2019-12-223-1/+67
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/bugfix/18481/avatars-always-return-201-status-code Always set the generated flag to false when an avatar is being set
| * | | | Always set the generated flag to false when an avatar is being setJoas Schilling2019-12-203-1/+67
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* / | | Update license headers for 18Christoph Wurst2019-12-2021-4/+28
|/ / / | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>