summaryrefslogtreecommitdiffstats
path: root/lib/private/app.php
Commit message (Collapse)AuthorAgeFilesLines
* deduplicate @xenopathicMorris Jobke2015-10-061-1/+0
|
* update licence headers via scriptMorris Jobke2015-10-051-0/+2
|
* Correctly check whether an app is shippedJoas Schilling2015-09-241-1/+1
|
* Show 'Apps' in the browser title when app management is openThomas Müller2015-09-231-1/+1
|
* Prefer OCS Id from databaseLukas Reschke2015-09-181-0/+6
| | | | 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.
* Merge pull request #18840 from owncloud/fix-app-disable-routeThomas Müller2015-09-181-23/+0
|\ | | | | Rebuild app navigation in JS
| * Merge branch 'master' into fix-app-disable-routeRobin McCorkell2015-09-141-1/+2
| |\
| * | Rebuild app navigation in JSRobin McCorkell2015-09-051-23/+0
| | | | | | | | | | | | | | | | | | 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.
* | | Restore loadApp() autoload registrationRobin McCorkell2015-09-161-0/+1
| | | | | | | | | | | | | | | Also changes the autoloader validRoots into a hashmap to try and reduce duplicate entries
* | | Catch apps which have been removed manuallyLukas Reschke2015-09-151-1/+4
| | |
* | | Define allowed app roots earlierLukas Reschke2015-09-151-1/+6
| |/ |/| | | | | 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.
* | Only add valid root for enabled appsRobin McCorkell2015-09-051-1/+2
|/
* [app management] fix dependency check on installMorris Jobke2015-08-191-1/+1
|
* Only load app routes if the app has already been loadedRobin McCorkell2015-08-181-0/+10
|
* Revert "make knowledge base url configurable"Joas Schilling2015-08-111-2/+1
| | | | This reverts commit 8fb89056bd2f99b1df7dc7a3970fc293272c8ab6.
* Revert "Only load app routes if the app has already been loaded"Joas Schilling2015-08-111-10/+0
| | | | This reverts commit 50ebea41f60f2864a565ea9985c5462c2df5f09e.
* Only load app routes if the app has already been loadedRobin McCorkell2015-08-061-0/+10
|
* make knowledge base url configurableBjoern Schiessle2015-07-291-1/+2
|
* Merge pull request #17698 from owncloud/allow-update-of-disabled-appsLukas Reschke2015-07-191-8/+6
|\ | | | | Allow upgrade of not enabled apps
| * Allow upgrade of not enabled appsThomas Müller2015-07-091-8/+6
| |
* | Add is_dir check to getAllApps() functionRealRancor2015-07-081-1/+1
|/
* Remove OC_AppconfigThomas Müller2015-07-031-7/+7
|
* Remove OC_LogThomas Müller2015-07-031-5/+5
|
* Delete OCS ID from DB if none is specifiedLukas Reschke2015-07-021-0/+2
| | | | | | If no OCS ID is specified in appinfo.xml and an app update is triggered and a OCS ID is stored in the DB we should clean the value. Ref https://github.com/owncloud/activity/issues/320#issuecomment-117937748
* Only do the description kung-fu on strings - fixes #17028Thomas Müller2015-07-011-15/+19
|
* Use UTF-8 mode for preg_split and preg_replaceLukas Reschke2015-07-011-2/+3
| | | | | | Otherwise a single application with a description containing a non compliant character can break the whole ownCloud appstore. This is for example https://apps.owncloud.com/content/show.php?content=149553 Fixes https://github.com/owncloud/core/issues/17101#issuecomment-117365224
* Send OC version to appstore so it can reply with the right linksJoas Schilling2015-06-291-5/+5
|
* Load the update information asyncroniously to fix the page load speedJoas Schilling2015-06-101-2/+4
|
* Avoid the log entry with the ModuleAlreadyExists exception when enabling the appJoas Schilling2015-05-071-1/+7
|
* Merge pull request #15314 from owncloud/app-categories-15274Lukas Reschke2015-04-091-57/+53
|\ | | | | Add different trust levels to AppStore interface
| * Fix PHPDocLukas Reschke2015-04-071-1/+3
| |
| * Add experimental applications switchLukas Reschke2015-04-031-56/+50
| | | | | | | | Allows administrators to disable or enabled experimental applications as well as show the trust level.
* | Further cleanup of files_encryptionThomas Müller2015-04-071-1/+1
|/
* Update license headersJenkins for ownCloud2015-03-261-18/+36
|
* Correctly get array of groups and send OCP\IGroup objects to enable methodJoas Schilling2015-03-241-1/+9
|
* Merge pull request #14862 from owncloud/introduce-shipped.json-masterMorris Jobke2015-03-231-5/+12
|\ | | | | shipped apps are now defined in core/shipped.json - the shipped tag in i...
| * shipped apps are now defined in core/shipped.json - the shipped tag in ↵Thomas Müller2015-03-131-5/+12
| | | | | | | | info.xml is ignored from now on - never trust an app :speak_no_evil:
* | Merge pull request #14961 from owncloud/onlyrequireinfoBernhard Posselt2015-03-171-3/+3
|\ \ | | | | | | Only hard depend on the info.xml and not the app.php
| * | only hard depend on the info.xml and not the app.phpBernhard Posselt2015-03-171-3/+3
| | | | | | | | | | | | fix comment
* | | Use a closure for the files app entry and deprecate old methodsJoas Schilling2015-03-171-23/+4
| |/ |/|
* | Fix totally broken AppStore code...Lukas Reschke2015-03-061-2/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | As it turned out the AppStore code was completely broken when it came from apps delivered from the appstore, this meant: 1. You could not disable and then re-enable an application that was installed from the AppStore. It simply failed hard. 2. You could not disable apps from the categories but only from the "Activated" page 3. It did not show the activation state from any category page This code is completely static and thus testing it is impossible. We really have to stop with "let's add yet another feature in already existing static code". Such stuff has to get refactored first. That said, this code works from what I can say when clicking around in the AppStore page GUI. However, it may easily be that it does not work with updates or whatsever as I have no chance to test that since the AppStore code is not open-source and it is impossible to write unit-tests for that. Fixes https://github.com/owncloud/core/issues/14711
* | Merge pull request #14326 from ↵Morris Jobke2015-03-041-2/+2
|\ \ | |/ |/| | | | | owncloud/remove-unnessary-backslashes-from-translation Remove unnecessary backslashes from translations
| * Remove unnecessary backslashes from translationsJoas Schilling2015-02-181-2/+2
| |
* | Revert "Updating license headers"Morris Jobke2015-02-261-36/+18
| | | | | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* | 3rd-party apps are disabled on upgrade - refs #14026Thomas Müller2015-02-241-33/+0
| |
* | don't allow installation of already installed apps - fixes #14004Thomas Müller2015-02-231-6/+7
| |
* | Merge pull request #13829 from owncloud/appmanager-listVincent Petry2015-02-231-77/+71
|\ \ | | | | | | Better caching for enabled apps
| * | Use appmanager in OC_App::enable/disableRobin Appelman2015-02-171-3/+5
| | |
| * | better name for getAppsEnabledForUserRobin Appelman2015-02-171-1/+1
| | |
| * | Use the app manager from oc_appRobin Appelman2015-02-161-75/+67
| | |