| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: grnd-alt <github@belakkaf.net>
|
|\
| |
| | |
[stable31] fix(cardav): only show users from enabled addressBooks in contacts menu
|
|/
|
|
| |
Signed-off-by: Hamza Mahjoubi <hamzamahjoubi221@gmail.com>
|
|\
| |
| | |
[stable31] fix(files_sharing): ensure share status action works also in grid view
|
| |
| |
| |
| | |
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
|
|/
|
|
|
|
|
|
|
|
|
|
| |
Remove some hacks from files app about the *files_sharing* status
action, in general not sure why this hack was there instead of being in
the correct app - but it broke the grid view.
So now the sharing information is also available in grid view.
Moreover the icon is fixed in size to not overflow the actions menu.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
|
|\
| |
| | |
31.0.2
|
|/
|
|
| |
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
| |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\
| |
| | |
31.0.2 RC1
|
| |
| |
| |
| | |
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
|
|\ \
| |/
|/| |
[stable31] fix(auth): Allow 2FA challenges for Ephemeral sessions
|
|/
|
|
| |
Signed-off-by: Joas Schilling <coding@schilljs.com>
|
|\
| |
| | |
[stable31] fix(files): Make sure file pointer exists
|
| |
| |
| | |
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
|
| |
| |
| |
| | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\ \
| | |
| | | |
[stable31] fix(base.php): Correct order for booting \OC\Server
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
A recent change had broken authentication with an older
FastCGI Apache2 module, because the IRequest object got
initialised before the fix from self::handleAuthHeaders()
copied the authentication headers into the correct $_SERVER
variables.
Since this part is completely independent from any Nextcloud
code it is now done as a first thing within the init() call.
Additionally similar issues could happen when another class
would boot too early and read other global PHP settings like
ini values and default timezone, so those are now also moved
to the beginning.
Signed-off-by: Joas Schilling <coding@schilljs.com>
|
|\ \ \
| |_|/
|/| | |
[stable31] fix(comments): Fix activity rich subject parameters
|
| | |
| | |
| | |
| | | |
Signed-off-by: provokateurin <kate@provokateurin.de>
|
|\ \ \
| |/ /
|/| | |
[stable31] ci: Update 3rdparty actions
|
|/ /
| |
| |
| | |
Signed-off-by: Joas Schilling <coding@schilljs.com>
|
|\ \
| | |
| | | |
[stable31] test: Remove `.only()` calls
|
| | |
| | |
| | |
| | | |
Signed-off-by: Louis Chemineau <louis@chmn.me>
|
|\ \ \
| | | |
| | | | |
[stable31] fix(RichObjectStrings): Make exception messages for invalid parameters more useful for debugging
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
useful for debugging
Signed-off-by: provokateurin <kate@provokateurin.de>
|
|\ \ \
| | | |
| | | | |
[stable31] fix(dav): Fix share token pattern for base uri extraction
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: provokateurin <kate@provokateurin.de>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\ \ \ \
| | | | |
| | | | | |
[stable31] Allow to delete files without trashbin + add unit tests + some refactoring
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
1. do not rely on magic string but use constant ID for trashbin view
2. add unit tests for restore action
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
1. correctly return null instead of void in empty trash action
2. use constant instead of magic value for action ID
3. add unit tests for empty trash action
4. add unit tests for trashbin api
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
1. Refactor to make code better testable (move columns and view source to `files_views` folder)
2. Fix deletion time fallback (JS Date vs unix timestamp for
"delted"-column)
3. Correctly sort `deletedBy` and `originalLocation` columns to use
natural sort like any other column
4. Add unit tests for columns and views
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
[stable31] fix(encryption): Listen for user login and logout to set encryption key
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
[stable31] fix(mime-types): adjust compiled mime types and sign
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
31.0.1
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
[stable31] revert(deps): jquery-ui to 1.13.3
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
31.0.1 RC2
|