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
2016-06-16load authentication apps first (#25126)Christoph Wurst
* load authentication apps first * load session apps before all other apps
2016-05-26Update license headersLukas Reschke
2016-05-20update share permissionsBjörn Schießle
2016-05-20create re-share by owner and propagate unshare and unshare-from self requestBjörn Schießle
correctly accross share owner and share initiator
2016-05-20use query builder for getShare and add testsBjörn Schießle
2016-05-20move request handler for federated shares to the federated sharing appBjörn Schießle
2016-04-22move federated sharing settings to the federatedfilesharing appBjörn Schießle
2016-03-01Update author informationLukas Reschke
Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
2016-01-26Move findLanguage() and setLanguageFromRequest() to factoryJoas Schilling
2016-01-12Happy new year!Thomas Müller
2015-11-30Use XMLWriter to generate responseLukas Reschke
Gets rid of manual XML generation.
2015-10-13Combine OCS API getUser method code into provisioning_api appRoeland Jago Douma
Fixes #13002 Move the cloud/users/{userid} code in total to the provisioning API.
2015-10-06deduplicate @xenopathicMorris Jobke
2015-10-05update licence headers via scriptMorris Jobke
2015-09-09Check if files_sharing is actually enabled before using itRobin McCorkell
2015-08-03Reduce duplicate codeThomas Müller
2015-08-03Adding ocs/v2.php with status code mapperThomas Müller
2015-06-25update license headers and authorsMorris Jobke
2015-04-18Fix usage of deprecated private constantsJoas Schilling
2015-04-09block ocs in single user modeRobin Appelman
2015-04-08Disable OCS api when in maintenance modeJoas Schilling
2015-03-26Update license headersJenkins for ownCloud
2015-03-09Respect http header 'Accept-Language' on ocs and remote.php callsThomas Müller
2015-02-26Revert "Updating license headers"Morris Jobke
This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
2015-02-23Updating license headersJenkins for ownCloud
2015-02-17Refactor OC_Request into TrustedDomainHelper and IRequestLukas Reschke
This changeset removes the static class `OC_Request` and moves the functions either into `IRequest` which is accessible via `\OC::$server::->getRequest()` or into a separated `TrustedDomainHelper` class for some helper methods which should not be publicly exposed. This changes only internal methods and nothing on the public API. Some public functions in `util.php` have been deprecated though in favour of the new non-static functions. Unfortunately some part of this code uses things like `__DIR__` and thus is not completely unit-testable. Where tests where possible they ahve been added though. Fixes https://github.com/owncloud/core/issues/13976 which was requested in https://github.com/owncloud/core/pull/13973#issuecomment-73492969
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