- Apr 10, 2020
-
-
Christoph Wurst authored
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Mar 31, 2020
-
-
Christoph Wurst authored
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Mar 26, 2020
-
-
Christoph Wurst authored
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Dec 05, 2019
-
-
Christoph Wurst authored
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Aug 29, 2019
-
-
Maxence Lange authored
Signed-off-by:
Maxence Lange <maxence@artificial-owl.com>
-
- Dec 19, 2018
-
-
Maxence Lange authored
Signed-off-by:
Maxence Lange <maxence@artificial-owl.com>
-
- Oct 10, 2018
-
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
- Jun 26, 2018
-
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
Morris Jobke authored
* found while reviewing #7205 * allow to specify a special status code Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
- Dec 12, 2017
-
-
Roeland Jago Douma authored
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>
-
- Nov 06, 2017
-
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
- Aug 01, 2017
-
-
Lukas Reschke authored
Signed-off-by:
Lukas Reschke <lukas@statuscode.ch>
-
- Feb 23, 2017
-
-
Morris Jobke authored
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>
-
- Oct 06, 2016
-
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
- Jul 21, 2016
-
-
Joas Schilling authored
-
Joas Schilling authored
-
- Jul 07, 2016
-
-
Morris Jobke authored
This reverts commit 854352d9.
-
- Jun 22, 2016
-
-
Victor Dubiniuk authored
* Initial web executor * Fix PHPDoc Fix broken integration test OccControllerTests do not require database access - moch them all! Kill unused sprintf
-
- May 26, 2016
-
-
Lukas Reschke authored
-
- Apr 20, 2016
-
-
Thomas Müller authored
-
- Jan 12, 2016
-
-
Thomas Müller authored
-
- Oct 05, 2015
-
-
Morris Jobke authored
-
- Jun 25, 2015
-
-
Morris Jobke authored
-
- Apr 10, 2015
-
-
Thomas Müller authored
-
- Mar 26, 2015
-
-
Jenkins for ownCloud authored
-
- Feb 26, 2015
-
-
Morris Jobke authored
This reverts commit 6a1a4880.
-
- Feb 23, 2015
-
-
Lukas Reschke authored
`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.
-
Jenkins for ownCloud authored
-
- Feb 16, 2015
-
-
Lukas Reschke authored
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
-
- Nov 17, 2014
-
-
Robin Appelman authored
-
- Sep 04, 2014
-
-
Christopher Schäpers authored
-
Christopher Schäpers authored
-
- Aug 04, 2014
-
-
Robin Appelman authored
-
- Jul 02, 2014
-
-
Vincent Petry authored
-
- Jun 30, 2014
-
-
Vincent Petry authored
To prevent unexpected behavior, public.php and the OCS API calls will return 503 Service Unavailable when an upgrade is due.
-
- Jun 05, 2014
-
-
Lukas Reschke authored
-
Lukas Reschke authored
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
-
- Mar 06, 2014
-
-
Robin Appelman authored
-