- Nov 28, 2014
-
-
Lukas Reschke authored
Disable MSSQL and OCI for new CE installations
-
Lukas Reschke authored
activitymanager: concatenate queries with 'or'
-
Lukas Reschke authored
-
Lukas Reschke authored
-
Lukas Reschke authored
Since automatic schema migrations are not yet possible let's disable this for now.
-
Björn Schießle authored
-
Lukas Reschke authored
add activity priorities to core so that other apps can reuse it
-
Lukas Reschke authored
Issue/6101 Autoload preview providers
-
Thomas Müller authored
Skip lostcontroller sending email test on windows
-
Joas Schilling authored
-
Björn Schießle authored
-
Vincent Petry authored
Add notes that SQLite is CE only
-
Morris Jobke authored
Add functions to modify cookies to response class
-
Morris Jobke authored
Issue/6101 Make all interfaces/classes autoloadable
-
Morris Jobke authored
Limit blacklist to php files
-
Joas Schilling authored
-
Joas Schilling authored
-
Joas Schilling authored
-
Jenkins for ownCloud authored
-
- Nov 27, 2014
-
-
Richard Clarkson authored
During performance optimization I have discovered that the installer scans all files for the blacklisted words. This greatly impacts speed on lower end devices such as the raspberry pie. This commit limits it to PHP files which seems to achieve the desired effect. I have used the --include option to achieve this, see http://stackoverflow.com/questions/1987926/how-do-i-grep-recursively This contribution is MIT licensed
-
Joas Schilling authored
So the class files only have class code and don't execute code
-
Joas Schilling authored
-
Joas Schilling authored
-
Joas Schilling authored
-
Robin Appelman authored
Add Jail and PermissionsMask storage wrappers
-
Robin Appelman authored
-
Robin Appelman authored
-
Lukas Reschke authored
Jenkins 12447
-
Vincent Petry authored
Introduce buildPath() in Storage\Local to reduce the difference to MappedLocal
-
Lukas Reschke authored
-
Lukas Reschke authored
-
Lukas Reschke authored
-
Lukas Reschke authored
Currently there is no AppFramework way to modify cookies, which makes it unusable for quite some use-cases or results in untestable code. This PR adds some basic functionalities to add and invalidate cookies. Usage: ```php $response = new TemplateResponse(...); $response->addCookie('foo', 'bar'); $response->invalidateCookie('foo'); $response->addCookie('bar', 'foo', new \DateTime('2015-01-01 00:00')); ``` Existing cookies can be accessed with the AppFramework using `$this->request->getCookie($name)`.
-
Joas Schilling authored
-
Joas Schilling authored
-
Joas Schilling authored
Issue/12444 namespace exceptions
-
Morris Jobke authored
delete old previews
-
Joas Schilling authored
-
Joas Schilling authored
-
Vincent Petry authored
Cache results of available languages
-