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
2018-06-26Replace hardcoded status headers with calls to http_response_code()Morris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-01-17Warn about the old OCP\API::register construct for OCSRoeland Jago Douma
* Add sleep * Add log message Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-01-09Remove "DEBUG OUTPUT:" from failing OCS API requestsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-12-12Nextcloud 13 is not compatible with newer than php 7.2Roeland Jago Douma
Just to avoid users from trying this with a to new (untested) php version * Moved the check logic to 1 place * All directly callable scripts just require this on top * exit hard (-1) so we know scripts won't continue * Return status 500 so no sync clients will try fancy stuff Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-09-21OC_OCS_Response is deprecatedRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-04-07Don't force the use of Accept-Language anymoreJoas Schilling
This is not intended anymore, since it falls back to force english when the header is not set. Also 0228bc6e66cbcb2848eacb41f1de6e7f63ebcb65 makes clear that the order should be: 1. User setting 2. Accept language 3. Admin default This is the case since the commit from above, unless via OCS and DAV. Both forced to accept-language falling back to english. By removing the force, it now also matches the w3 priority list: https://www.w3.org/International/questions/qa-lang-priorities Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-03-03Get rid of static OCS::notFound()Morris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-02-23Clean up single user modeMorris Jobke
Single user mode basically disables WebDAV, OCS and cron execution. Since we heavily rely on WebDAV and OCS also in the web UI it's basically useless. An admin only sees a broken interface and can't even change any settings nor sees any files. Also sharing is not possible. As this is at least the case since Nextcloud 9 and we haven't received any reports for this it seems that this feature is not used at all so I removed it. The encryption commands now rely on the well tested maintenance mode. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-02-08log ocs exceptionsRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2016-12-16Die in OCS v1.php on exceptionVincent Petry
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2016-10-06Allow to call the files even when you are in another instance atmJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2016-07-22Catch LoginExceptionRoeland Jago Douma
2016-07-21Update with robinJoas Schilling
2016-07-21Fix othersJoas Schilling
2016-07-18Only login if user is not logged-inLukas Reschke
2016-07-18Make the OCS endpoint handle the new OCS AppFramework routesRoeland Jago Douma
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-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-10-05update licence headers via scriptMorris Jobke
2015-08-03Reduce duplicate codeThomas Müller
2015-06-25update license headers and authorsMorris Jobke
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-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
2013-06-28Use raw PathInfo for matching urlsBart Visscher
2012-12-14Merge master into ocs_api, fix conflicts.Tom Needham
2012-11-05Style: The last two spacesFelix Moeller
2012-11-05Style: Remove all the dangling white spacesFelix Moeller
2012-09-13Fix merge conflictsTom Needham
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-01Routing: Handle MethodNotAllowedExceptionBart Visscher