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
2021-01-28Merge pull request #25360 from nextcloud/fix/update-autoloadersRoeland Jago Douma
Update all composer autoloader files
2021-01-28Update all composer autoloader filesChristoph Wurst
The format changed between 2.0.8 and 2.0.9. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-01-28Make whole Template class finalJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-28Move TemplateProvider registration to boot context and make template type ↵Julius Härtl
registration lazy Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-28Only create template directory if it is present in the default skeletonJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-28Skip template picker if none availableJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2021-01-28Add templatedirectory config value to let admins have their custom templates ↵Julius Härtl
by default Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-28Add ratio to template creatorsJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-28Add template pickerJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2021-01-28files: Create files from template APIJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-27Merge pull request #25335 from nextcloud/fix/app-fetcher-php-compat-comparisonRoeland Jago Douma
Fix/app fetcher php compat comparison
2021-01-27Merge pull request #25268 from nextcloud/enh/previews/sgi-tgaChristoph Wurst
Add SGI and TGA preview support
2021-01-27[tx-robot] updated from transifexNextcloud bot
2021-01-26Fix app fetcher php comparison to allow wider rangesChristoph Wurst
When app app specifies php 7.4 as upper limit we have to allow the installation on php>7.4.0. The previous version check didn't do that. This adjusts the regexes to discard any irrelevant suffix after the three version numbers so that we can use more fine granular checks than php's version_compare can do out of the box, like for php 7.4 we only compare the major and minor version numbers and ignore the patch level. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-01-26Revert "Fix comparison of PHP versions"Christoph Wurst
This reverts commit bedd9acf7874b836bef224989c2ce7f5e3b0a2fa.
2021-01-25[tx-robot] updated from transifexNextcloud bot
2021-01-22Merge pull request #25273 from ↵Morris Jobke
nextcloud/enhancement/hide-two-factor-settings-if-no-providers Do not show 2FA settings if the user has no providers available
2021-01-22Merge pull request #25275 from nextcloud/fix/two-factor-token-typeMorris Jobke
Convert 2FA token type to string
2021-01-22Fully deprecate the old initial state interface, not just the methodsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-01-22Merge pull request #25128 from nextcloud/ldapprovider-get-propertyblizzz
extend ILDAPProvider to allow reading arbitrairy ldap attributes for users
2021-01-22adjust since blizzz
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> Co-authored-by: Morris Jobke <hey@morrisjobke.de>
2021-01-22Convert 2FA token type to stringChristoph Wurst
The IConfig service is documented to handle its data as strings, hence this changes the code a bit to ensure we store keys as string and convert them back when reading. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-01-22Do not show 2FA settings if the user has no providers availableChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-01-22Change license mail aliasJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2021-01-22Add SGI and TGA preview supportJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2021-01-22[tx-robot] updated from transifexNextcloud bot
2021-01-21Merge pull request #25214 from ↵Morris Jobke
nextcloud/dependabot/composer/phpseclib/phpseclib-2.0.30 Bump phpseclib/phpseclib from 2.0.25 to 2.0.30
2021-01-21Merge pull request #25238 from nextcloud/enh/noid/apps-defacto-in-rootRoeland Jago Douma
Apps folder is defacto in root folder and not above
2021-01-21Merge pull request #25240 from nextcloud/enh/noid/re-use-fetched-dependenciesRoeland Jago Douma
Re-use fetched dependencies in lib/base.php
2021-01-21Merge pull request #25236 from nextcloud/mkdir-explicit-chmodJulius Härtl
explicitly set permissions on newly created folders
2021-01-21[tx-robot] updated from transifexNextcloud bot
2021-01-20Re-use fetched dependencies in lib/base.phpMorris Jobke
Reduces calls to DI container by reusing already fetched dependencies. For status.php it went from 355 to 344. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2021-01-20Apps folder is defacto in root folder and not aboveMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2021-01-20explicitly set permissions on newly created foldersRobin Appelman
this works around any `umask` that might be set and limiting the folder permissions Signed-off-by: Robin Appelman <robin@icewind.nl>
2021-01-20Merge pull request #25212 from nextcloud/enh/preview-markdownMorris Jobke
Enhance markdown file preview rendering
2021-01-20Fix typo in comment Morris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2021-01-20Merge pull request #25224 from ↵Morris Jobke
nextcloud/bugfix/24600/fix-saving-user-credentials Update handling of user credentials
2021-01-20Enhance markdown file preview renderingJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-20Also load CA properly in integrity checkRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2021-01-20phpsec lib can't parse multiple certs in one goRoeland Jago Douma
So we have to split it manually and do it ourselves Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2021-01-20Drop authtoken_version_indexRoeland Jago Douma
The index was used when deleting old tokens. On top of that the index is of course not that great since the version is either 1 or 2. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2021-01-20Compare and store the login name via the eventJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-01-19Add support for webpRoeland Jago Douma
Including handling in OC_Image But also a preview provider Of course only works if your php actually supports webp Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2021-01-19extend ILDAPProvider to allow reading arbitrairy ldap attributes for usersRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2021-01-19Merge pull request #25153 from ↵Roeland Jago Douma
nextcloud/bugfix/noid/force-signature-verification-on-occ Force signature verification of apps on occ
2021-01-19[tx-robot] updated from transifexNextcloud bot
2021-01-18Don't log keys on checkSignatureJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-01-18Only use alphanumeric chars for mysql passwordJoas Schilling
/ and + can cause problems with other tools that you might want to run on your Nextcloud database. Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-01-18Cleanup the constructorJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-01-18Force run the verification of the signature on occJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>