- Feb 16, 2015
-
-
Lukas Reschke authored
-
Lukas Reschke authored
This change allows AppFramework applications to specify a custom CSP header for example when the default policy is too strict. Furthermore this allows us to partially migrate away from CSS and allowed eval() in our JavaScript components. Legacy ownCloud components will still use the previous policy. Application developers can use this as following in their controllers: ```php $response = new TemplateResponse('activity', 'list', []); $cspHelper = new ContentSecurityPolicyHelper(); $cspHelper->addAllowedScriptDomain('www.owncloud.org'); $response->addHeader('Content-Security-Policy', $cspHelper->getPolicy()); return $response; ``` Fixes https://github.com/owncloud/core/issues/11857 which is a pre-requisite for https://github.com/owncloud/core/issues/13458 and https://github.com/owncloud/core/issues/11925
-
Jenkins for ownCloud authored
-
- Feb 15, 2015
-
-
Jenkins for ownCloud authored
-
- Feb 14, 2015
-
-
Jenkins for ownCloud authored
-
- Feb 13, 2015
-
-
Thomas Müller authored
Issue/14204 revert #14171
-
Joas Schilling authored
-
Joas Schilling authored
This reverts commit c9b56084.
-
Joas Schilling authored
This reverts commit f6a452ca.
-
Morris Jobke authored
Removed anchor in config.sample.php
-
Lukas Reschke authored
Ensure that passed argument is always a string
-
Lukas Reschke authored
App install behind a Proxy
-
Lukas Reschke authored
Some code paths called the `normalizePath` functionality with types other than a string which resulted in unexpected behaviour. Thus the function is now manually casting the type to a string and I corrected the usage in list.php as well.
-
Joas Schilling authored
Improve: Index for file_map
-
Jenkins for ownCloud authored
-
- Feb 12, 2015
-
-
RealRancor authored
-
Lukas Reschke authored
-
windaishi authored
Added two indices for file_map, that improve syncing and uploading and deleting files
-
Lukas Reschke authored
generate valid human readable text for 0
-
Lukas Reschke authored
Additional controllermethodreflector inheritance tests
-
Lukas Reschke authored
catch any whitespaces which might get written to the output buffer while...
-
Thomas Müller authored
Remove internal annotation
-
Thomas Müller authored
-
Lukas Reschke authored
PHPStorm complained about those functions being declared as Internal. I doubt that this is actually the case since they are even in the public API.
-
Morris Jobke authored
Disable application-specific favicons for non-user pages
-
Lukas Reschke authored
Add .tag file to make tar balls tracable
-
Björn Schießle authored
add timeout to curl request
-
Lukas Reschke authored
Added overview of groups a user is member of
-
Morris Jobke authored
Clean-up of messages (orthography, format)
-
Morris Jobke authored
Reuse known fileids and cache data in the scanner
-
Björn Schießle authored
-
Roeland Jago Douma authored
-
Morris Jobke authored
Deprecate `OC_JSON` and `OCP\JSON`
-
cmeh authored
Orthography: "Back-end" -> Backend (without hyphen) and correction of "users" to the genitive "user's"
-
cmeh authored
Added the missing space between value and unit, as it is formatted in all other places across ownCloud.
-
Jenkins for ownCloud authored
-
- Feb 11, 2015
-
-
Lukas Reschke authored
This deprecates – but not removes – those two classes and all functions in it. There is no reason that new developments should use those methods as with the AppFramework there is a replacement that allows testable code. With the `@deprecated` annotation IDEs like PHPStorm will point out to the developer that a functionality is deprecated and that there is a better suited replacement.
-
Lukas Reschke authored
Remove unused file
-
Lukas Reschke authored
This file is unused and has been last modified two years ago. Furthermore it won't evne work anymore properly because it uses things like `CONFIG_DATEFORMAT` which are gone a long time ago...
-
Lode Hoste authored
-