aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/ocsclient.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #21591 from owncloud/add-code-checking-for-appsThomas Müller2016-01-131-1/+1
|\ | | | | Verify signature of apps with level "Official" coming from the appstore
| * Verify signature of apps with level "Official" coming from the appstoreLukas Reschke2016-01-101-1/+1
| | | | | | | | This change will verify the signature of all apps with the level "Official" coming from the appstore or if they have been signed before.
* | Happy new year!Thomas Müller2016-01-121-2/+2
|/
* Clear xml errors in ocs clientThomas Müller2015-12-171-0/+1
|
* Disable app store for EE by defaultLukas Reschke2015-10-081-1/+7
| | | | | | This disables the app store for EE versions by default to address some problems caused by the wrong assumption that "Official" means supported by ownCloud Inc. Administrators can still enable the app store by setting `appstoreenabled` to true in the config file.
* update licence headers via scriptMorris Jobke2015-10-051-1/+1
|
* Degrade log message about missing app in appstore to debugMorris Jobke2015-08-171-1/+1
| | | | * fixes #18154
* Remove OC_LogThomas Müller2015-07-031-1/+1
|
* Typehint $targetVersionLukas Reschke2015-06-291-4/+4
|
* Merge pull request #17222 from owncloud/issue-17101-send-oc-version-to-app-storeLukas Reschke2015-06-291-6/+19
|\ | | | | Send OC version to appstore so it can reply with the right links
| * Send OC version to appstore so it can reply with the right linksJoas Schilling2015-06-291-6/+19
| |
* | Merge pull request #17050 from owncloud/request-status-from-ocsLukas Reschke2015-06-291-0/+1
|\ \ | |/ |/| Request approved state for disabled apps with ocsid
| * Request approved state for disabled apps with ocsidLukas Reschke2015-06-191-0/+1
| | | | | | | | | | | | | | | | In case an application gets disabled the level is set to "experimental" if it does not contain a `shipped` tag. This can for example be reproduced by installing the documents app from the appstore and then disabling it. Or cloning an app from git. With this change the controller will now load the level of the application from the appstore if a valid OCSID has been provided. Fixes https://github.com/owncloud/core/issues/17003
* | update license headers and authorsMorris Jobke2015-06-251-1/+1
|/
* Improve error messge text for app upgrade try (#15375)Martin2015-04-221-0/+1
|
* Prevent php message: "Trying to get property of non-object at ↵Thomas Müller2015-04-131-0/+3
| | | | /xxx/lib/private/ocsclient.php#282"
* Deduplicate codeLukas Reschke2015-04-071-44/+31
|
* Make user names clickableLukas Reschke2015-04-031-0/+2
|
* Add experimental applications switchLukas Reschke2015-04-031-99/+171
| | | | Allows administrators to disable or enabled experimental applications as well as show the trust level.
* Update license headersJenkins for ownCloud2015-03-261-13/+22
|
* Add wrapper for GuzzleLukas Reschke2015-03-251-17/+42
|
* Revert "Updating license headers"Morris Jobke2015-02-261-26/+13
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* app store can be used with any editionThomas Müller2015-02-231-3/+1
|
* don't allow installation of already installed apps - fixes #14004Thomas Müller2015-02-231-90/+95
|
* Updating license headersJenkins for ownCloud2015-02-231-19/+26
|
* Cache responses from the AppStore serverLukas Reschke2015-01-091-1/+1
| | | | | | | | | | Otherwise every time the AppStore was opened a lot of connections to the AppStore server were made which resulted in a terrible performance. This changeset will cache the response for a sensible time so that only the first request will be somewhat slow. Performance changes: - Loading a category took previously more than 3 seconds on my machine. Now for every follow-up request it takes less than 200ms, resulting in a performance gain of 1950% - Loading the category list took previously about 750ms - now it takes 154ms, a total performance gain of 395%
* Use function outside of loopLukas Reschke2014-10-241-2/+3
| | | | Otherwise the function is executed n times which is a lot of overhead
* introduce new app page layoutThomas Müller2014-10-151-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filter installed and not-installed apps properly kill unneeded file load category 'Installed' on page load adding documentation links new apps mgmt: first style adjustment apps mgmt: only show license and preview if they exist adding buttons new apps mgmt: fix for mobile use app icon if available new apps mgmt: position enable/disable toggle to the right new apps mgmt: proper display of icons or previews new apps mgmt: fix loading spinner reenable group selection for apps new apps mgmt: position enable button normally again new apps mgmt: clarify wording from 'Installed' to 'Enabled' reintroduce enable/disable Move rating image path generation to client-side Move expression outside of l10n fix group handling add buttons for 'More apps' and 'Add your app' again disable changed date of app for now adding recommended label style 'Recommended' app tag fixing php warning sort by rating adding meta-category 'Recommended' Only show existing documentation links lacy loading of screenshots making group based app activation work again adding support to get the app icon not only by the app name but also simply by the fixed name 'app.svg' adding app.svg for all core apps query string '?installed' is not longer needed update and uninstall is back + error feedback remove unneeded parameter fix alignment of 'recommended' label
* Add isAppstoreEnabled instead of hijacking the URLLukas Reschke2014-08-261-6/+17
|
* Remove different URL for EELukas Reschke2014-08-241-7/+1
| | | This can now be achieved by setting `appstoreenabled` to `false` in config.php
* fix return documentationJörn Friedrich Dreyer2014-08-011-7/+5
|
* prevent PHP errors and enhance loggingThomas Müller2014-08-011-1/+5
|
* update appstore api urlFrank Karlitschek2014-07-171-1/+1
|
* Remove all occurences of @brief and @returns from PHPDocMorris Jobke2014-05-191-6/+6
| | | | * test case added to avoid adding them later
* Fix all PHPDoc types and variable names, in /libRobin McCorkell2014-05-131-1/+1
|
* Fix @return array PHPDocs, in /libRobin McCorkell2014-05-131-4/+4
|
* Replace @returns with @return, in /libRobin McCorkell2014-05-131-6/+6
|
* Some more PHPDoc fixesLukas Reschke2014-04-211-7/+10
|
* Disable XML entities when parsing XMLVincent Petry2014-03-101-4/+12
|
* polish documentation based on scrutinizer patchesJörn Friedrich Dreyer2014-02-061-0/+4
|
* Merge branch 'master' into lib-private-master-2Thomas Müller2013-10-011-1/+6
|
* move the private namespace OC into lib/private - OCP will stay in lib/publicThomas Müller2013-09-301-0/+208
Conflicts: lib/private/vcategories.php