| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
owncloud/issue-22887-infinite-background-job-loop-for-old-versions
Do not create a new job when federation failed to connect but use existing job
|
| | |
|
|\ \
| | |
| | | |
Fix doc issue of cache wrapper
|
| | | |
|
|\ \ \
| | | |
| | | | |
Chunk upload for GDrive
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Instead of storing the WHOLE file in memory in a PHP variable, use the
library's chunk upload support.
|
|\ \ \ \
| | | | |
| | | | | |
Do not fire pre/post hooks twice on chunk upload
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Birthday events are generated on upgrade
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Update icewind/streams and icewind/smb
|
| | | | | | |
|
| | | | | | |
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Allow creating tags where another one with same prefix exists
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
When creating a new entry, compare the full tag name and not only the
prefix.
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
Add webdav property for share info in PROPFIND response
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Intergration tests to ensure the share-types property is set correctly.
* Unshared item
* Shared with user
* Shared with group
* Shared by link
* Shared with user & group & link
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Returns the shareTypes share status info to the favorites file list.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
In debugging mode we enable Sabre's browser plugin since it helps a l…
|
| | | | | | | |
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
debugging
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
owncloud/no-recovery-key-if-the-master-key-is-enabled
disable the recovery key if the master key is enabled
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Avatar must be saved after login is done and external storages set up…
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | | |
properly, fixes #21555
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Hardenings
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This code is not used anymore.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
While all callers do this as well this prevents a misuse of the API by mistake.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Use raw PATH_INFO
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
PATH_INFO will be empty at this point and thus the logic in base.php did not catch this. Changing this to "getRawPathInfo" will ensure that the path info is properly read.
Fixes https://github.com/owncloud/core/issues/23199
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Write .htaccess update only if not already written
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The ownCloud update routine also runs the "updateHtaccess" code in case only an application gets updated. This leads to having entries multiple time in the .htaccess file leading to unpredictable behaviour.
With 9.0 we added the "#### DO NOT CHANGE ANYTHING ABOVE THIS LINE ####" entry to the .htaccess file, this change uses it to ensure that only to the .htaccess gets written if the file has not been modified already. Since the .htaccess modifications are optional this is not a big deal.
Without this change updates of applications can break the rewrite rules (ending in endless redirects) as well as breaking the code integrity checker.
|
| | | | | | | | |
|
| | | | | | | | |
|
| |_|_|_|_|_|/
|/| | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix dropbox storage to not store the whole file in memory
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Since the library can only store the full response in memory on
download, we use an alternate client lib and set the correct headers to
be able to stream the content to a temp file.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
fix writing to cache when fallback server should be used immediately
|
| | |_|_|/ / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Set proper public webdav permissions when public upload disabled
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Fixes #23325
It can happen that a user shares a folder with public upload. And some
time later the admin disables public upload on the server.
To make sure this is handled correctly we need to check the config value
and reduce the permissions.
Fix is kept small to be easy backportable.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Update avatar on username change if avatar is set
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
* fixes #20455
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Rating icons changed to .svg
|