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/ocs
AgeCommit message (Collapse)Author
2014-12-04OCS API for server-to-server sharingBjoern Schiessle
2014-06-30Return 503 OCS response with requested formatVincent Petry
2014-06-30Return 503 in public.php and OCS API when upgrade is dueVincent Petry
To prevent unexpected behavior, public.php and the OCS API calls will return 503 Service Unavailable when an upgrade is due.
2014-04-15OCS API calls will always return English messagesThomas Müller
2014-03-21Merge branch 'master' into load-apps-proper-masterThomas Müller
Conflicts: apps/files/ajax/rawlist.php cron.php ocs/v1.php
2014-03-18Merge pull request #7649 from owncloud/routing-publicThomas Müller
Move routing classes to an interface and expose it in the public api
2014-03-12fixing method namesThomas Müller
2014-03-12set content-type on ocs exceptionsThomas Müller
2014-03-10switch OC::getRouter usages to OC::$server->getRouterRobin Appelman
2014-02-18load all apps in ocs/v1.phpThomas Müller
2014-02-17Use the proper content-typeLukas Reschke
We should use the proper content-type `application/xml` instead of the default `text/html` here. Backport requested.
2013-10-21New OCS route:Thomas Müller
/ocs/cloud/user Response: <?xml version="1.0"?> <ocs> <meta> <status>ok</status> <statuscode>100</statuscode> <message/> </meta> <data> <id>thomas</id> <display-name>DeepDiver</display-name> <email>no-response@domain.tld</email> </data> </ocs>
2013-08-31remove the activity call here. it is not implemented anyways. This will be ↵Frank Karlitschek
provided by Activity app in the future.
2013-08-27Add quota to core apiTom Needham
2013-08-18Add _many_ newlines at the end of fileskondou
2013-06-28Use raw PathInfo for matching urlsBart Visscher
2013-04-27Fix typoTom Needham
2013-04-27Code style for ocs/routes.phpTom Needham
2013-04-27Change app identifier for core api routesTom Needham
2013-02-09Fix api result merging.Tom Needham
2013-02-04Merge masterTom Needham
2013-01-31add multiple domains reverse proxy supportStefan Herbrechtsmeier
Add support for a reverse proxy that handles multiple domains via different web roots (http[s]://proxy.tld/domain.tld/owncloud). As the reverse proxy web root is transparent for the web server the REQUEST_URI and SCRIPT_NAME need manual adjustments. This patch replace the direct use of this _SERVER variables with function calls and extend this functions to overwrite the web root. Additionally it adds a Sabre request backend that extends the Sabre_HTTP_Request to use the same functions.
2013-01-17Add new /cloud/capabilities route and remove unused methodsTom Needham
2013-01-15remove php closing tagThomas Mueller
2012-12-14Merge master into ocs_api, fix conflicts.Tom Needham
2012-12-14API: Tidy up routes.php, remove redundant call registrationTom Needham
2012-12-12API: Remove old code. Move remaining methods to OC_OCS_Result.Tom Needham
2012-11-22make it possible to manually override the hostname and protocol if the ↵Frank Karlitschek
automatic detection from ownCloud fails. This can happen in reverse proxy situations or with loadbalancers setups.
2012-11-05Style: The last two spacesFelix Moeller
2012-11-05Style: Remove all the dangling white spacesFelix Moeller
2012-10-29Detect http protocol in providers.phpTom Needham
2012-09-13API: Add required auth level to OCS routes, move some routes to ↵Tom Needham
provisioning_api app
2012-09-13Fix merge conflictsTom Needham
2012-09-04Respect coding styleThomas Müller
2012-09-04Respect coding styleThomas Müller
2012-08-02Routing: combine all routes into one setBart Visscher
2012-08-02Move loading of routes to OC::getRouter functionBart Visscher
2012-08-02Change access to router object to getter functionBart Visscher
2012-08-01Fix the api routesTom Needham
2012-08-01Fix /privatedata/getattribute routeBart Visscher
2012-08-01Routing: Handle MethodNotAllowedExceptionBart Visscher
2012-08-01Fixup OCS modulesBart Visscher
2012-07-30Make calling ocs/v1.php/config workBart Visscher
2012-07-30Add 'ocs' as app name to API registrationBart Visscher
2012-07-30Add the format parameter inside OC_APITom Needham
2012-07-30Move routes to ocs folderTom Needham
2012-07-23first part of the new new OCS CLOUD module. So far only quota is implemented.Frank Karlitschek
The specification is developed here: http://www.freedesktop.org/wiki/Specifications/open-collaboration-services-1.7#CLOUD will be moved to http://www.freedesktop.org/wiki/Specifications/open-collaboration-services as soon as everything is done.
2012-07-09remove superfluous ?> at the end of .php files (left out apps/*/templates)Jörn Friedrich Dreyer
2012-05-31use our own serverHost call so that ownCloud works with reverse proxy serversFrank Karlitschek
2012-05-26update copyrightFrank Karlitschek