Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | update licence headers via script | Morris Jobke | 2015-10-05 | 1 | -2/+0 |
| | |||||
* | update license headers and authors | Morris Jobke | 2015-06-25 | 1 | -0/+1 |
| | |||||
* | Fix singe user mode on public.php - take two | Thomas Müller | 2015-04-10 | 1 | -1/+1 |
| | |||||
* | Update license headers | Jenkins for ownCloud | 2015-03-26 | 1 | -1/+26 |
| | |||||
* | Revert "Updating license headers" | Morris Jobke | 2015-02-26 | 1 | -25/+1 |
| | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36. | ||||
* | Merge pull request #14433 from owncloud/fix-public-php | Thomas Müller | 2015-02-23 | 1 | -3/+4 |
|\ | | | | | Use `getParam` instead of `server` | ||||
| * | Use `getParam` instead of `server` | Lukas Reschke | 2015-02-23 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | | | | | | `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. | ||||
* | | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 1 | -1/+25 |
|/ | |||||
* | Refactor OC_Request into TrustedDomainHelper and IRequest | Lukas Reschke | 2015-02-16 | 1 | -4/+5 |
| | | | | | | | | | | 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 | ||||
* | Add sabredav plugin to check if a user has access to an app | Robin Appelman | 2014-11-17 | 1 | -1/+3 |
| | |||||
* | handle service not available exceptions in index, remote and public.php | Robin Appelman | 2014-08-04 | 1 | -0/+5 |
| | |||||
* | Fix service warning | Vincent Petry | 2014-07-02 | 1 | -1/+1 |
| | |||||
* | Return 503 in public.php and OCS API when upgrade is due | Vincent Petry | 2014-06-30 | 1 | -0/+8 |
| | | | | | To prevent unexpected behavior, public.php and the OCS API calls will return 503 Service Unavailable when an upgrade is due. | ||||
* | Move authentication to it's own call | Lukas Reschke | 2014-06-05 | 1 | -1/+2 |
| | |||||
* | Remove legacy routing code | Lukas Reschke | 2014-06-05 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | 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 | ||||
* | Merge pull request #7599 from owncloud/public-pathinfo | icewind1991 | 2014-04-07 | 1 | -6/+14 |
|\ | | | | | Allow using pathinfo based public.php paths | ||||
| * | Allow using pathinfo based public.php paths | Robin Appelman | 2014-03-06 | 1 | -6/+14 |
| | | |||||
* | | remove some more global variable $RUNTIME_NOAPPS | Thomas Müller | 2014-02-06 | 1 | -1/+0 |
|/ | |||||
* | Add "single user mode" which restricts access to users in the admin group | Robin Appelman | 2013-11-25 | 1 | -0/+1 |
| | | | | This can be enabled by setting 'singleuser' to true in config.php | ||||
* | set incognito mode for public.php calls. Because in this case ownCloud ↵ | Bjoern Schiessle | 2013-11-22 | 1 | -0/+1 |
| | | | | should always work the same way as if no user is logged in | ||||
* | Add _many_ newlines at the end of files | kondou | 2013-08-18 | 1 | -1/+1 |
| | |||||
* | clean up usage of DatabaseSetupException and catch Exceptions in entrypoints | Jörn Friedrich Dreyer | 2013-06-10 | 1 | -16/+26 |
| | |||||
* | public.php - check if maintenance mode is enabled | Georg Ehrke | 2013-06-03 | 1 | -0/+1 |
| | |||||
* | More Checkstyle cleanup | Felix Moeller | 2012-10-23 | 1 | -1/+1 |
| | | | | This is for all LowerCaseConstant warnings | ||||
* | Update public.php | Thomas Müller | 2012-09-04 | 1 | -4/+4 |
| | | | respect coding style | ||||
* | 404 if service is not set for public.php | Michael Gapczynski | 2012-08-28 | 1 | -0/+4 |
| | |||||
* | Remove unused RUNTIME_NOSETUPFS var | Bart Visscher | 2012-08-08 | 1 | -1/+0 |
| | |||||
* | fix remote and public.php | Robin Appelman | 2012-07-13 | 1 | -0/+1 |
| | |||||
* | Check if app is enabled before loading in remote and public.php | Bart Visscher | 2012-06-27 | 1 | -0/+1 |
| | |||||
* | Correct remote and public, and last occurence of OC:: | Brice Maron | 2012-06-06 | 1 | -3/+3 |
| | |||||
* | selective app loading for remote/public | Robin Appelman | 2012-05-14 | 1 | -2/+7 |
| | |||||
* | improve remote.php and create public.php | Georg Ehrke | 2012-05-07 | 1 | -0/+10 |