| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
certificate is revoked (#25469)
* Adding certificate revocation list and validate if the app certificate is revoked
* Check integrity of a signed app in any case on installation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Workaround to check htaccess in case of redirects
In some setups, the web server will redirect any call to "data/" to the
main page. This causes the XHR to return the 200 HTTP status code and
the body contains the HTML page of the main page / files app.
This fix improves the htaccess failure detection by adding a known
string inside the test file "htaccesstest.txt". If we are able to find
this string, it means that the web server didn't block access to that
file.
* Fix setup check unit test (#25439)
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Wait for socket to be open
* Fix call on null
* Allow DB access for MountProviderTest
Makes unit tests pass when using object store, since their FS access is
actually oc_filecache DB access. It is currently not possible to mock
or bypass the logic from "SharedMount::verifyMountPoint()" triggered by
this test.
|
|
|
|
| |
param (#25380) (#25396)
|
|\
| |
| | |
Revert "Remove repair steps for broken updater repair"
|
| |
| |
| |
| | |
This reverts commit 58ed5b9328e9e12dd4319c0730202f385ca0dc5d.
|
|\ \
| | |
| | | |
[stable9] Change order of share creation validation
|
| |/
| |
| |
| |
| |
| |
| | |
Makes sure that the share owner is set before entering the checks that
need it.
Partial backport of afa37d3
|
|/
|
|
|
|
|
|
|
|
|
|
| |
* Initial web executor
* Fix PHPDoc
Fix broken integration test
OccControllerTests do not require database access - moch them all!
Kill unused sprintf
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Fix Decrypt message via occ
* Comments fixed
* Fixed reviews
* Originally:
commit 2304e4bda027e61ff1302c55c2f70f8e4c8f47d0
Author: Joas Schilling <nickvergessen@owncloud.com>
Date: Tue Jun 7 09:13:11 2016 +0200
Allow to decrypt user '0' files only
* Fix uid comparison
|
|\
| |
| | |
[stable9] Capped cache for user config
|
| | |
|
|\ \
| |/
|/| |
Do not recurse link share fetching
|
| |
| |
| |
| | |
* Might fix an issue on oracle
|
|/ |
|
| |
|
|\
| |
| | |
emit correct signal when disabling an app
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Backport of #24898
Cherry-picked:
1b66db72d916a763b1c22613b9df5c42e93593a8
60225284f3b8ef947f67bbe168b12dca867d6f3d
28d9ad2817b744bcef35a9259f65eb56b0b2ae78
But manually since we renamed stuff and the repair procedures changed
|
|\ \
| | |
| | | |
[stable9] Use temporary htaccesstest.txt for data dir security check
|
| | | |
|
|/ / |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
[9.0] Allow opening the password reset link in a new window when …
|
| | | |
|
|\ \ \
| | | |
| | | | |
stable9: normalize path in getInternalPath
|
| |/ / |
|
| | | |
|
|/ / |
|
| |
| |
| |
| | |
mb_detect_encoding is in the fallback we ship in the polyfill library, mb_strcut is not. Thus this lead to a false positive and ownCloud would just break.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Http range requests support is required for video preview
|
|\ \
| | |
| | | |
[stable9] first call the post_login hooks, before we call getUserFolder.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The login process needs to be completed before we can safely create
the users home folder. For example we need to give encryption a chance
to initialize the users encryption keys in order to copy the skeleton
files correctly
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
[Stable9] Use a CappedCache in the user database backend
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
When running with a user database backend on large installations the
cache can grow to significant sizes. This can be especially problematic
when running big cron/repair jobs.
|
|\ \ \
| | | |
| | | | |
[9.0] free up memory when releasing the last shared lock
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
[stable9] Allow chunk GC mtime tolerance for unfinished part chunks
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Whenever part chunks are written, every fwrite in the write loop will
reset the mtime to the current mtime. Only at the end will the touch()
operation set the mtime to now + ttl, in the future.
However the GC code is expecting that every chunk with mtime < now are
old and must be deleted. This causes the GC to sometimes delete part
chunks in which the write loop is slow.
To fix this, a tolerance value is added in the GC code to allow for
more time before a part chunk gets deleted.
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
owncloud/backport-24432-never-save-app-language-into-request-lang
[9.0] Do not save the language as request lang for apps when we didn't find…
|