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
AgeCommit message (Collapse)Author
2022-03-10Overwrite the channelbugfix/noid/allow-installing-unstable-versionsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-10-21Fix unit testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-10-14Send the subscription key to the appstore requestsJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2021-10-13Allow to whitelist apps from the apsptoreJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2021-04-27Fix unit testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-02-11Make the app code checker a NOOPChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-01-27Add negative version comparison test for version suffixesChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
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>
2020-12-07Do not run on php8Roeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-12-07Don't check on php8Roeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-10-16Only retry fetching app store data once every 5 minutes in case it failsJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-10-05Format code to a single space around binary operatorsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-08-12Change PHPDoc type hint from PHPUnit_Framework_MockObject_MockObject to ↵Morris Jobke
\PHPUnit\Framework\MockObject\MockObject Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-06-12Increase timeout of the appstore requestsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-05-20Revert "Compress the appstore requests by default"Morris Jobke
This reverts commit 6ffde128ad17a1ebe38f8d18b21a37d01b47c46b. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-05-20Compress the appstore requests by defaultMorris Jobke
In test it reduced the transfered data from 5 MB to 2 MB. This should reduce the load on the appstore significantly. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-05-20Cache appstore requests for 60 instead of 5 minutesMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-05-15l10n: Add "The" before "Following"Valdnet
2020-05-01Update education bundleRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-04-24Add test to ensure that symlinked apps_paths are not resolvedDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2020-04-10Add visibility to all methods and position of static keywordChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10Add visibility to all properties and move static keywordChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10Format control structures, classes, methods and functionChristoph Wurst
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10Use elseif instead of else ifChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Remove trailing and in between spacesChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Unify function spacing to PSR2 recommendationChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Use a blank line after the opening tagChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Fix (array) indent style to always use one tabChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-03-27Merge pull request #20170 from nextcloud/techdebt/remove-unused-importsChristoph Wurst
Remove unused imports
2020-03-26Use the short array syntax, everywhereChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-03-26Use the shorter phpunit syntax for mocked return valuesChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-03-26Remove unused importsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-03-24Remove admin_notifications since it is obsolete since Nextcloud 14Julius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-01-26add hub bundle for easy post-installationArthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2020-01-09AppFetcher: Distinguish between fileName and endpointNameGeorg Ehrke
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
2019-12-22Restore old behavior allowing to set custom appstoreGeorg Ehrke
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
2019-12-13Allow to force enable apps via CLIJoas Schilling
Co-authored-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-12-10Viewer should be always enabledRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-11-27Mode to modern phpunitRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-11-27Make phpunit8 compatibleRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-11-22Some php-cs fixesRoeland Jago Douma
* Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-09-28Move settings to an appChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-07-16Properly inject the loggerMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2019-06-27Remove deleted groups from app restrictions fixes #15823Greta Doci
Signed-off-by: Greta Doci <gretadoci@gmail.com>
2019-03-20allow enforcing apps to ignore the max versionRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-03-07Remove "socialsharing_googleplus" from Social Sharing BundleMarius Blüm
Signed-off-by: Marius Blüm <marius@lineone.io>
2019-03-01Add dispatcher events to User and Group objectsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-02-25two item => two itemsDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2019-02-22Parse multiple navigation itemsDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2019-01-27Check app path for enableAppForGroupsDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>