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
2016-04-30Move non PSR-4 files from lib/private root to legacyRoeland Jago Douma
As discussed we move all old style classes (OC_FOO_BAR) to legacy. Then from there we can evaluate the need to convert them back or if they can be fully deprecated/deleted.
2016-04-26Introduce background repair stepsThomas Müller
2016-04-22Adding pre- and post-migration repair stepsThomas Müller
2016-04-22Remove deprecated HTTPHelper from InfoParserThomas Müller
2016-04-20In case an app has issues while loading the app is disabled and request ↵Thomas Müller
processing continues
2016-03-31Properly handle return values of OC_App::getAppInfo()Morris Jobke
* fixes #23668
2016-03-01Remove Scrutinizer Auto FixerLukas Reschke
2016-02-23Fix PHPDoc of OC_App::loadApps()Thomas Müller
2016-02-15Merge pull request #22376 from owncloud/fix-return-code-getAppPathThomas Müller
Properly handle return code of OC_App::getAppPath
2016-02-14Remove not needed variableMorris Jobke
2016-02-14Properly handle return code of OC_App::getAppPathMorris Jobke
* fixes #20128 * getAppPath could return false, but it was not handled everywhere
2016-02-10No longer evaluate appinfo/versionThomas Müller
2016-01-25Merge pull request #21424 from owncloud/appversionsThomas Müller
Use appConfig to get app versions
2016-01-24Remove OC_Helper::imagePath and use the proper public interfaceMorris Jobke
2016-01-13Merge pull request #21591 from owncloud/add-code-checking-for-appsThomas Müller
Verify signature of apps with level "Official" coming from the appstore
2016-01-12Happy new year!Thomas Müller
2016-01-11Use appconfig for getAppVersionsRobin Appelman
2016-01-10Verify signature of apps with level "Official" coming from the appstoreLukas Reschke
This change will verify the signature of all apps with the level "Official" coming from the appstore or if they have been signed before.
2016-01-10Assume apps from the appstore are compatible with the current versionLukas Reschke
Filtering is done server-side already so only compatible apps are delivered. Otherwise this leads to a ton of error messages as the info.xml cannot be read at that state. Fixes https://github.com/owncloud/core/issues/21556
2016-01-06Inject OCSClientLukas Reschke
Fixes https://github.com/owncloud/core/issues/21451
2015-12-18Use OCP\Util::getVersion instead of the internal private implementationMorris Jobke
2015-12-18Use SystemConfig internallyRoeland Jago Douma
2015-12-18Get rid of legacy OC_ConfigRoeland Jago Douma
We were still using the lecagy class OC_Config all over the place. Which was a wrapper around the new class OC\Config
2015-12-17OC_Helper::linkToRoute is deprecatedRoeland Jago Douma
Replaced all calls to OC_Helper::linkToRoute with OC::$server->getURLGenerator()->linkToRoute
2015-12-08Sanitize the appId passed to `findAppInDirectories`Lukas Reschke
Would have prevented quite some security bugs in the past. Nice hardening for now.
2015-12-04remove OC_App::getActiveNavigationEntry - not unsed anymoreMorris Jobke
2015-12-04Remove unused setActiveNavigationEntry of OC_App - it's also in OCP\AppMorris Jobke
2015-10-29Drop OC_SubAdmin and replace usagesLukas Reschke
2015-10-26Don't show apps which are always enabled in the app managerThomas Müller
2015-10-26Store list of apps which cannot be disabled in shipped.jsonThomas Müller
2015-10-06deduplicate @xenopathicMorris Jobke
2015-10-05update licence headers via scriptMorris Jobke
2015-09-24Correctly check whether an app is shippedJoas Schilling
2015-09-23Show 'Apps' in the browser title when app management is openThomas Müller
2015-09-18Prefer OCS Id from databaseLukas Reschke
To be consistent with other logic the app id from the database needs to be prefered. Especially when it comes to be able to replace an outdated OCS id.
2015-09-18Merge pull request #18840 from owncloud/fix-app-disable-routeThomas Müller
Rebuild app navigation in JS
2015-09-16Restore loadApp() autoload registrationRobin McCorkell
Also changes the autoloader validRoots into a hashmap to try and reduce duplicate entries
2015-09-15Catch apps which have been removed manuallyLukas Reschke
2015-09-15Define allowed app roots earlierLukas Reschke
The autoloader needs to be run before including the app.php, otherwise it depends on what app gets executed first and apps that rely on the dependency of other apps in app.php may break.
2015-09-14Merge branch 'master' into fix-app-disable-routeRobin McCorkell
2015-09-05Rebuild app navigation in JSRobin McCorkell
Retrieve all app navigations to prevent reloading appinfo/app.php and causing an error when the app isn't fully loaded. The addition/deletion logic has been moved to JS, simplifying a lot of code.
2015-09-05Only add valid root for enabled appsRobin McCorkell
2015-08-19[app management] fix dependency check on installMorris Jobke
2015-08-18Only load app routes if the app has already been loadedRobin McCorkell
2015-08-11Revert "make knowledge base url configurable"Joas Schilling
This reverts commit 8fb89056bd2f99b1df7dc7a3970fc293272c8ab6.
2015-08-11Revert "Only load app routes if the app has already been loaded"Joas Schilling
This reverts commit 50ebea41f60f2864a565ea9985c5462c2df5f09e.
2015-08-06Only load app routes if the app has already been loadedRobin McCorkell
2015-07-29make knowledge base url configurableBjoern Schiessle
2015-07-19Merge pull request #17698 from owncloud/allow-update-of-disabled-appsLukas Reschke
Allow upgrade of not enabled apps
2015-07-09Allow upgrade of not enabled appsThomas Müller