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
2016-10-11Allow to call the files even when you are in another instance atmJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2016-07-22Run the license scriptJoas Schilling
2016-01-12Happy new year!Thomas Müller
2015-10-05update licence headers via scriptMorris Jobke
2015-06-25update license headers and authorsMorris Jobke
2015-04-10Fix singe user mode on public.php - take twoThomas Müller
2015-03-26Update license headersJenkins for ownCloud
2015-02-26Revert "Updating license headers"Morris Jobke
This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
2015-02-24Merge pull request #14433 from owncloud/fix-public-phpThomas Müller
Use `getParam` instead of `server`
2015-02-23Use `getParam` instead of `server`Lukas Reschke
`server` is completely wrong here and this will not work on master. With `getParam` it will work fine though. Testplan: - [ ] Without patch: Share a file and try to access `http://localhost/public.php?service=files&t=THESHAREDTOKEN` => Fails - [ ] With patch: Try the same => Works Master only.
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-11-17Add sabredav plugin to check if a user has access to an appRobin Appelman
2014-08-04handle service not available exceptions in index, remote and public.phpRobin Appelman
2014-07-02Fix service warningVincent 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-06-05Move authentication to it's own callLukas Reschke
2014-06-05Remove legacy routing codeLukas Reschke
The getfile routing code was absolutely legacy and not needed anymore. Additionally \OC::$REQUESTEDAPP was never set to the actually accessed application. This commit removes the legacy routing code and ensures that $REQUESTEDAPP is always set so that other applications (e.g. the firewall or a two-factor authentication) can intercept the currently accessed app. Testplan: [x] Installation works [x] Login with DB works [x] Logout works [x] Login with alternate backend works (tested with user_webdavauth) [x] Other apps are accessible [x] Redirect on login works (e.g. index.php?redirect_url=%2Fcore%2Findex.php%2Fsettings%2Fapps%3Finstalled) [x] Personal settings are accessible [x] Admin settings are accessible [x] Sharing files works [x] DAV works [x] OC::$REQUESTEDAPP contains the requested application and can be intercepted by other applications
2014-04-07Merge pull request #7599 from owncloud/public-pathinfoicewind1991
Allow using pathinfo based public.php paths
2014-03-06Allow using pathinfo based public.php pathsRobin Appelman
2014-02-06remove some more global variable $RUNTIME_NOAPPSThomas Müller
2013-11-25Add "single user mode" which restricts access to users in the admin groupRobin Appelman
This can be enabled by setting 'singleuser' to true in config.php
2013-11-22set incognito mode for public.php calls. Because in this case ownCloud ↵Bjoern Schiessle
should always work the same way as if no user is logged in
2013-08-18Add _many_ newlines at the end of fileskondou
2013-06-10clean up usage of DatabaseSetupException and catch Exceptions in entrypointsJörn Friedrich Dreyer
2013-06-03public.php - check if maintenance mode is enabledGeorg Ehrke
2012-10-23More Checkstyle cleanupFelix Moeller
This is for all LowerCaseConstant warnings
2012-09-04Update public.phpThomas Müller
respect coding style
2012-08-28404 if service is not set for public.phpMichael Gapczynski
2012-08-09Remove unused RUNTIME_NOSETUPFS varBart Visscher
2012-07-14fix remote and public.phpRobin Appelman
2012-06-27Check if app is enabled before loading in remote and public.phpBart Visscher
2012-06-07Correct remote and public, and last occurence of OC::Brice Maron
2012-05-14selective app loading for remote/publicRobin Appelman
2012-05-07improve remote.php and create public.phpGeorg Ehrke