| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
This was removed in 82254ad5efb65e8650567f49343ec37eb55e2f3e and
unfortunatly missed by jenkins before mering into master.
|
|\
| |
| | |
Move AvatarController to AppFramework
|
| |
| |
| |
| |
| |
| |
| |
| | |
* Original avatarcontroller migrated to the appframework
* Added DataDisplayResponse that show data inline in the browser (used
to retrun the image)
* Removed some unneeded code
* Added unit tests for the avatarcontroller
|
|\ \
| | |
| | |
| | |
| | | |
owncloud/issue/13678-improve-remote-domain-detection-in-sharedropdown
Better finding the remote URL from user input in share dropdown
|
| | |
| | |
| | |
| | | |
Fix #13678
|
|\ \ \
| | | |
| | | | |
Do not abort when meeting unfixable legacy storages
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Adding a more meaningful message for sabre dav exception
|
| | |_|/
| |/| | |
|
|/ / /
| | |
| | |
| | | |
command line as well
|
|\ \ \
| | | |
| | | | |
adding storage specific filename verification
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Add support for 'child-src' directive
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is required when working with stuff such as PDF.js in the files_pdfviewer application. Opt-in only.
Master change only because the stable CSP policies has a failback that allows nearly anything :see_no_evil:
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Log errors and create 404 in network list when a css or js is missing
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | |
| | | | | |
| | | | | | |
owncloud/issue/14176-validate-timezone-before-using
Etc timezones don't exist for .5 and .75 offsets
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Refactor \OC\Memcache\Factory
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Caches divided up into two groups: distributed and local. 'Low latency' is an
alias for local caches, while the standard `create()` call tries to get
distributed caches first, then local caches.
Memcache backend is set in `config.php`, with the keys `memcache.local` and
`memcache.distributed`. If not set, `memcache.distributed` defaults to the value
of `memcache.local`.
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
owncloud/add-some-headers-to-htaccess-for-my-best-friend-jenkins
Let users configure security headers in their Webserver
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Doing this in the PHP code is not the right approach for multiple reasons:
1. A bug in the PHP code prevents them from being added to the response.
2. They are only added when something is served via PHP and not in other cases (that makes for example the newest IE UXSS which is not yet patched by Microsoft exploitable on ownCloud)
3. Some headers such as the Strict-Transport-Security might require custom modifications by administrators. This was not possible before and lead to buggy situations.
This pull request moves those headers out of the PHP code and adds a security check to the admin settings performed via JS.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Jenkins #14650
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Read from IRequest instead of reading twice
|
| | |_|_|/ /
| |/| | | |
| | | | | |
| | | | | | |
Potentially fixes https://github.com/owncloud/core/issues/14541 and https://github.com/owncloud/core/issues/14506
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Add a repair step to delete old tables
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
Allow configuring background job mode from the console
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Disable the cache updater when doing the encryption migration
|
| |/ / / |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Fix cache update when doing a rename that overwrites the target
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
AppFramework StreamResponse
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
First stab at the StreamResponse, see #12988
The idea is to use an interface ICallbackResponse (I'm not 100% happy with the name yet, suggestions?) that allow the response to output things in its own way, for instance stream the file using readfile
Unittests are atm lacking, plan is to
check if a mock of ICallbackResponse will be used by calling its callback (also unhappy with this name) method
Usage is:
$response = new StreamResponse('path/to/file');
rename io to output, add additional methods and handle error and not modified cases when using StreamResponse
fix indention and uppercasing, also handle forbidden cases
fix indention
fix indention
no forbidden, figuring out if a file is really readable is too complicated to get to work across OSes and streams
remove useless import
remove useless import
fix intendation
|
|\ \ \
| | | |
| | | | |
Check if we have a proper fileinfo
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
Make version check work on the lowest common version denominator
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix file move/copy when storage space is not enough
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Now checking whether the written bytes match the number of read bytes.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Add async command system to handle asynchronous operations
|