Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-24Adapt more code to migration to LoggerInterfaceCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-03-18[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-03-14Update composer generated files to latest versionCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-03-04[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-03-03[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-03-02Hide preview if it is in full screen mode (viewer is open)Julius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-02-28[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-27[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-25[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-24[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-22fix all modals after vue 5.0szaimen
Signed-off-by: szaimen <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-02-21replace button with vue button componentVanessa Pertsch
2022-02-21Redirection now only happens when dir is emptyCarl Schwan
Otherwise dir it's just ignored and fileid is used Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-02-18Merge pull request #31143 from nextcloud/fix/dont-redirect-file-indexVincent Petry
Don't redirect when loading files index page
2022-02-17Don't redirect when loading files index pageCarl Schwan
Currently we are redirecting from ?dir=/&fileid=2 to ?dir=/. This is an issue because we then need to load two pages with full file system setup and authentification instead of one and the assets won't start loading until the second page is delivered to the user. Additionally when loading ?dir=/, we then change the url back to ?dir=/&fileid=2 (without reload) so that the next time we load the page again we do the same thing again. Depending on the speed of the server and internet connection we can save 100ms to 400ms, improving the user experience. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-02-17[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-14try to fix broken tooltipszaimen
Signed-off-by: szaimen <szaimen@e.mail.de>
2022-02-14[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-02-10Merge pull request #30953 from ↵Vincent Petry
nextcloud/feat/init-storage-when-transferring-ownership Init user's file system if not existing on ownership transfer
2022-02-10Merge pull request #31097 from ↵Vincent Petry
nextcloud/bugfix/31096/fix-shares-transfer-guest-to-nonguest Fix path handling when transferring incoming shares
2022-02-10Fix path handling when transferring incoming sharesVincent Petry
When transferring incoming shares from a guest user without specifying a path, the $path is empty. The fix properly handles that situation to avoid looking for shares in a path with doubled slashes which failed to find shares to transfer. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-02-09Merge pull request #31081 from ↵Joas Schilling
nextcloud/bugfix/noid/dont-provide-favorite-activity-setting Don't provide favorite activity settings
2022-02-09Don't provide favorite activity settingsJoas Schilling
Since mails and notifications are only available for actions of other users it does not make sense to allow changing this. It also prevents the common misunderstanding with "file was changed inside a favorited folder" Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-08Merge pull request #30925 from ↵Louis
paierlep/feature/breadcrumb_menu_parent_folder_visible Show the child folders in the breadcrumb menu when on a parent entry.
2022-02-03Fix bugs with incorrect currentFileList in the favorite and share by youCarl Schwan
view This was causing bugs when trying to create new template in this views Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-02-02Show the parent folders in the breadcrumb menu when on a child entry.Christian Paier
Previously, clicking on an menu item in the breadcrumb menu removed the parent entries of the path, i.e.: Clicking on the "to" entry in "/path/to/some/folder" changed the breadcrumb menu to show only the "/path/to" entries. With this change the breadcrumb menu changes this behaviour as the full path is still visible (and usable) but with the "to" entry beeing highlighted. Signed-off-by: Christian Paier <hallo+git@cpaier.com>
2022-02-01Init user's file system if not existing on ownership transferCarl Schwan
This makes it a bit easier to transfer ownership when the new user hasn't already logged in. This still doesn't support encrypted storages because the keys are not generated yet. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-01-27Merge pull request #30858 from nextcloud/fix/ajax-list-dir-content-on-fileLouis
Return 404 when AJAX tries to list dir content but file given
2022-01-26Use @nextcloud/sharing in files and files_sharingLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me> Update tests Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-01-26Return 404 when AJAX tries to list dir content but file givenMichaIng
Due to a code mistake, the expected 404 return when AJAX tries to list a directory content with a non-directory file path given, does not happen. It instead fails with another exception. This commit restores the original intention to return 404 in the first place when passing a non-directory path with the "dir" parameter. Signed-off-by: MichaIng <micha@dietpi.com>
2022-01-21Auto fix warningsLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-01-20[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-01-14[files] new internal link GET param to avoid setting 'openfile' on redirectJulien Veyssier
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
2022-01-14Merge pull request #30530 from nextcloud/fix/search-urlJohn Molakvoæ
2022-01-13Fix wrong unified search link to folderJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-01-12Properly hide progress bar after errorVincent Petry
Whenever an error occurs, also hide the progress bar. The logic was also adjusted to properly detect uploads that are pending deletion, in which case the progress bar can already be hidden. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-01-12Properly abort uploadsVincent Petry
Add a new approach for flagging an upload as aborted because we can't rely on the browser fully cancelling the request as we now seem to receive an error response from the server instead of a jQuery "abort" message. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-01-12Merge pull request #30572 from nextcloud/fix/lint_warningsLouis
Fix lint warnings
2022-01-11Trigger "changeDirectory" even on URL changeVincent Petry
When using the browser back button or clicking on sections on the left sidebar (like favorites), the "changeDirectory" jQuery event did not get called, so apps like recommendations would not notice the directory change. This fixes the issue by also setting changeUrl to true when the file list's directory got changed as a result from a URL change. Added optional changedThroughUrl argument to make sure the event recipient knows if the change was done through a URL change and make it possible prevent a loop in the onDirectoryChange handler that actually changes the URL when the origin was already from a URL change. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-01-11Replace license information to SPDX expressionLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-01-11Add generic type and description when its missingLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-01-11Typing correctionsLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-01-11Merge pull request #30570 from nextcloud/rakekniven-branch3Joas Schilling
Removed obselete language files - Pt. II
2022-01-10Merge pull request #30567 from nextcloud/bugfix/noid/npm-ci-for-karmaVincent Petry
Use npm ci when running JS tests
2022-01-10Fix JS tests after test lib updatesVincent Petry
Prevent XHR during load by checking window.TESTING. Adjust some expected values. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-01-10 Removed obselete language files - Pt. IIrakekniven
For these files there are no associated languages setup at Transifex. Fix for #30501 Related to nextcloud/docker-ci#341 Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
2022-01-10Merge pull request #30561 from nextcloud/rakekniven-branch2John Molakvoæ
2022-01-10Removed obselete language filesrakekniven
Those files are remnants of old languages after renaming, mapping or deleting. Fix for #30501 Related to https://github.com/nextcloud/docker-ci/issues/341
2022-01-08Fix dynamic loadingJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2022-01-08Split common vendor chunkJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>