| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
catch any whitespaces which might get written to the output buffer while...
|
| |
| |
| |
| | |
loading a theme
|
| |
| |
| |
| | |
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.
|
|\ \
| |/
|/| |
add timeout to curl request
|
| | |
|
|\ \
| | |
| | | |
Reuse known fileids and cache data in the scanner
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Deprecate `OC_JSON` and `OCP\JSON`
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
in some case charset can be in lower case.
|
| |/ /
| | |
| | |
| | | |
Add strtoupper() in UTF-8 check to avoid error message
|
|\ \ \
| |/ /
|/| |
| | |
| | | |
owncloud/group-share-collition-wrong-type-in-post-hook
Do not overwrite the shareType so the post hook is still correct
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Revert "enabled disabled files app in repair step"
|
| | |
| | |
| | |
| | | |
This reverts commit d70160c6077ca017d6cb7d61f066fe33e3b1e081.
|
|\ \ \
| | | |
| | | | |
add function to invalidate one opcache file, use it if possible #9885
|
| | | |
| | | |
| | | |
| | | | |
It changed since we wrote this patch.
|
| | | |
| | | |
| | | |
| | | | |
Both pointed out in submission review by @bantu, thanks.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Issue #9885 appears to be triggered by ownCloud invalidating the entire
PHP opcache. Testing indicates it can be avoided by only invalidating the
single file that was written from the opcache, instead of clearing the
whole thing. In general it is more efficient to invalidate only the single
file that was changed, rather than the whole cache.
This adds a deleteFromOpcodeCache() function which invalidates a single
file from the opcache if possible, returning true if the underlying
function returns true (which may mean 'success', or 'file does not exist',
or 'file exists but is not in opcache', all of which are OK to treat as
good for our purposes). It also changes writeData() in config.php to try
using deleteFromOpcodeCache() and only fall back on clearOpcodeCache() if
that fails.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Cleanup of PHPDoc return types
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
check if cache files are readable
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
NaturalSort performance improvements
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
A combination of using isset() instead of count() or strlen(), caching the
chunkify function, and replacing is_numeric() with some comparisons
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
prevent creation of ghost directories
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
we need to set this manually to null for the hooks
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Add a controller and reponse for ocs
|
| | | | | | | | | |
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Cache app versions
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
drop OC\Preferences
|
| | |_|_|_|_|_|/ /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
drop OC_Preferences
|
| |/ / / / / / / / |
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / /
|/| | | | | | | | |
Respect `mod_unique_id` and refactor `OC_Request::getRequestId`
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
When `mod_unique_id` is enabled the ID generated by it will be used for logging. This allows for correlation of the Apache logs and the ownCloud logs.
Testplan:
- [ ] When `mod_unique_id` is enabled the request ID equals the one generated by `mod_unique_id`.
- [ ] When `mod_unique_id` is not available the request ID is a 20 character long random string
- [ ] The generated Id is stable over the lifespan of one request
Changeset looks a little bit larger since I had to adjust every unit test using the HTTP\Request class for proper DI.
Fixes https://github.com/owncloud/core/issues/13366
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Add a better way to check if an avatar exists for the user
|
| | | | | | | | | | |
|