| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| | |
remove comments count because it is not that relevant to show directly
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Move the tag filter at the end for now
|
| | | |
|
|\ \ \
| | | |
| | | | |
Remove delete permissions for read-only federated reshares
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
An incomming federated share is just a mount point. Therefor if we
request the permissions on the mountpoint DELETE permissions will be
returned (among others). Since we can always remove a mountpoint, update
a mount point.
However now when trying to reshare we will try to reshare with DELETE
permissions. Which is false.
This PR removes the delete permissions if it is a shared storage.
Basically a quick hack.
Fixes #22587
|
|\ \ \ \
| | | | |
| | | | | |
Rename system tags app to collaborative tags
|
| | |/ /
| |/| | |
|
|\ \ \ \
| |/ / /
|/| | | |
Allow theming of actions
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Action icons now appear properly in public link page.
More actions are now CSS icons.
|
| | | | |
|
| | |/
| |/|
| | |
| | | |
This makes theming of file actions possible
|
|/ / |
|
|\ \
| | |
| | | |
inject the correct external share manager into the storage
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Skip users with no trashbin
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix HTTPS support on external storages
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The current logic is checking whether:
1. The returned value is a boolen
2. The returned value is a string and then matches for "true"
Since the config is now written to the database the data is now a string with the value "1" if HTTPS is set to true. Effectively this option was thus always disabled at the moment, falling back to plain HTTP.
This change casts the data to a boolean if it is defined as boolean.
Fixes https://github.com/owncloud/core/issues/22605
Fixes https://github.com/owncloud/core/issues/22016
|
|\ \ \
| | | |
| | | | |
Copy into local file
|
| | | | |
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Using the Guzzle stream directly here will only return 1739 characters for `fread` instead of all data. This leads to the problem that the stream is read incorrectly and thus the data cannot be properly decrypted => :bomb:
This approach copies the data into a local temporary file, as done before in all stable releases as well as other storage connectors.
While this approach will load the whole file into memory, this is already was has happened before in any stable release as well. See https://github.com/owncloud/core/commit/d608c37c90c308d0518d854de908ec4be5f462dc for the breaking change.
To test this enable Google Drive as external storage and upload some files with encryption enabled. Reading the file should fail now.
Fixes https://github.com/owncloud/core/issues/22590
|
|\ \ \
| | | |
| | | | |
Disable sharing by default for external storage mounts
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This is for newly created mount points.
Migrated mount points will have sharing enabled as before.
|
|\ \ \ \
| |_|/ /
|/| | | |
take the first result of that array, if present. Fixes 2nd display na…
|
| | |/
| |/|
| | |
| | | |
be 'Array', if cache is configured and enabled.
|
|/ / |
|
|\ \
| | |
| | | |
Enable upstream entrypoint changes with Ceph Docker
|
| |/ |
|
|\ \
| | |
| | | |
Add header for attachment disposition only once
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Recent refactorings have resulted in the header being added twice, this makes browsers ignore the header which removes any security gains.
This changeset adds the header only once and adds integration tests ensuring the correct header in future.
https://github.com/owncloud/core/issues/22577
|
|\ \ \
| |_|/
|/| | |
Allow defining a limit and offset for getObjectIdsForTags
|
| |/ |
|
|\ \
| | |
| | | |
Case insensitive contact search
|
| |/ |
|
|\ \
| |/
|/| |
Accumulate notifications instead of blinking
|
| |
| |
| |
| |
| |
| |
| |
| | |
The notification tests were not restoring the clock properly, but
indirectly helped other tests pass.
Since now we're restoring the clock properly, the other tests were fixed
to still work.
|
| |
| |
| |
| |
| | |
This makes it possible to display multiple notifications.
If the options.type is set to "error", it will also add a close button.
|
|/ |
|
|\
| |
| | |
Add integration tests for tags plus fix permissions
|
| |
| |
| |
| | |
Fixes https://github.com/owncloud/core/issues/22512
|
|\ \
| | |
| | | |
Show username when writing "Insufficient storage" into owncloud.log
|
| |/
| |
| |
| | |
Show username when writing into owncloud.log
|
| |
| |
| |
| |
| |
| |
| |
| | |
The content element needs hasLayout, so triggering it with a display
attribute.
Without this, the #content element's height would be as high as the
window's height instead of adjusting itself to its contents' height.
|