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-09-05Fix typos in apps/ subdirectoryfix/fix-apps-typosluz paz
Found via `codespell -q 3 -S l10n,./apps/files_external/3rdparty -L adn,ba,boxs,keypair,jus,optionel,ressource,tabel ./apps/` Signed-off-by: luz paz <luzpaz@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-09-01Fix file list scrollingJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-08-17Add ```aria-expanded``` value to select2-container om systemtag and file tagsfix/358-add-missing-expanded-attributesjulia.kirschenheuter
Add ```aria-expanded``` to color picker Add ```aria-expanded``` to UnifiedSearch.vue Add ```aria-expanded``` to new button on files Add ```aria-expanded``` to action menu Add ```aria-expanded``` to icon .federation-menu Add ```aria-expanded``` to app navigation collapse button Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-07-28Merge pull request #33394 from ↵Julia Kirschenheuter
nextcloud/fix/fix-370-Label_not_connected_to_form-element_in_file_listing Connect ```input``` checkbox with corresponding file name via ```aria-describedby```
2022-07-28Connect ```input``` checkbox with corresponding file name via ↵julia.kirschenheuter
```aria-describedby``` Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
2022-07-28Merge pull request #33299 from nextcloud/fix/files-dark-color-themeLouis
[files app]: Fix dark color mode detection for filelist
2022-07-27Remove more legacy idsVincent Petry
Remove more unused legacy ids from early ownCloud times. This reduces the number of duplicate ids in the DOM. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-07-27Merge pull request #33373 from nextcloud/techdebt/noid/remove-legacy-dirVincent Petry
Remove legacy #dir element in files list
2022-07-27Remove legacy #dir element in files listVincent Petry
Removed legacy "#dir" input element in the DOM. Apps should use OCA.Files.App.currentFileList or OCA.Sharing.PublicApp.fileList and call getCurrentDirectory() to retrieve the current directory and changeDirectory() to change it. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-07-27Merge pull request #33271 from nextcloud/enh/a11y-new-file-menuVincent Petry
Use explicit name for new file/folder menu
2022-07-26files: Fix colormode detection for filelistfix/files-dark-color-themeFerdinand Thiessen
When system default color theme is selected for theming, the `enabledThemes` array is empty or just contains on entry `'default'`, in this case the color theme has to be retrieved from the browser to ensure text like the modified date is readable. This fixes #33298 Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
2022-07-26Replace files app ids to classesVincent Petry
Replaced ids to classes for the following: - #filestable -> .files-filestable - #fileList -> .files-fileList - #controls -> .files-controls - #emptycontent -> .emptyfilelist.emptycontent Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-07-18Use explicit name for new file/folder menuenh/a11y-new-file-menuChristopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-07-05Merge pull request #32993 from nextcloud/fixes-for-quota-text-in-navigation-barDaniel Calviño Sánchez
Fixes for quota text in navigation bar
2022-07-04Change tooltip title of files grid view toggle dynamicallyenh/a11y-dynamic-grid-toggle-tooltipChristopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-06-23Fix quota text not updated after copying or moving a filefixes-for-quota-text-in-navigation-barDaniel Calviño Sánchez
Note that the quota may change too when files are moved if the file is moved, for example, to or from a folder shared by other user. Besides the quota the storage statistics are also updated, similar to what is done when a file is deleted. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-06-21Add title to file nameCarl Schwan
Fix #32157 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-07l10n: Delete apostropheValdnet
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2022-05-16Improve accessibility with more visible focus indication for non vue appsCarl Schwan
- Add visible-focus effect on each header entry - Show focus outline when using focus-visible (keyboard navigation) - Add polyfy for focus-visible since it's only very recently available on webkit - Change text for link to home button to describe the destination and not the current page - Improve focus effect in app sidebar navigation Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-04-21Remove accessibilityJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-04-07fix filelist not loading after refresh in firefoxRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-02-14try to fix broken tooltipszaimen
Signed-off-by: szaimen <szaimen@e.mail.de>
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-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-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>
2021-12-07Reload page on 401 since there is an authentification problemCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-12-07Stop reloading file list when getting 401 error on root dirCarl Schwan
When reaching the root dir, instead of reloading the file list we reload the page completely. This trigger a redirection to the login page automatically with the correct ?redirect_url= in thr url. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-10-08adding action.filename to FileActionsMaxence Lange
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2021-09-26Migrate deprecated toolip methodsMichaIng
With Bootstrap v4, the tooltip methods "fixTitle" and "destroy" have been removed. Only core/src/Polyfill/tooltip.js keeps them methods valid by translating them. Signed-off-by: MichaIng <micha@dietpi.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-07-26fix sort sort function of files multiple selection actionsJulien Veyssier
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
2021-07-23add an option to the multiple files selected actions to add and remove tags ↵Roland Scheidel
from multiple files at once Signed-off-by: Roland Scheidel <kontakt@scheidel.at> Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2021-06-09Trigger click event when scrollTo is setLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2021-05-12Allow apps to register a file action for multiselectJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-14Add "Crop image previews" setting to filesNina Pypchenko
Added a new user setting that toggles cropping on image previews in grid view. True (default value): crops each image to a square. False: keep original aspect ratio. Signed-off-by: Nina Pypchenko <22447785+nina-py@users.noreply.github.com> Closes #18439. Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
2020-11-17Check for target folder available quota when uploadingJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-11-13Bump jquery from 2.2.4 to 3.1.0Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-10-22Bring back the restore share buttonVincent Petry
Fix disabled default file action to still use an anchor element, as this is used in many other places (and potentially apps). Adjusted anchor style to not look like it's clickable and added extras to make sure everything inside still looks clickable as before. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-10-17Fix sidebar legacy fileinfoJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-10-07Upgrade lifecycle and vue parent contextJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-10-07Move Files Sidebar to proper javascript standardJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-08-25Expose currently active file list though OCA.Files.AppJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-08-04Remove outdated legacy search scriptsJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-07-20Use DOMContentLoaded and fix sharebymail loading issueJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-07-15provide feedback about minimum length needed to trigger searchRobin Appelman
instead of telling users that there are no results, tell them that search hasn't been triggered yet Signed-off-by: Robin Appelman <robin@icewind.nl>
2020-04-09Allow opening files for editing in new tabsAzul
In a file list files with a default action have an href that will trigger the action. This way ctrl-click and middle button click open the default action in a new tab. In order to achieve this a new param `openfile` was introduced to the files app. It will make the files app trigger the default action for the file in question. This also allows linking to file content rather than just the details display. Introduce fileList.getDefaultActionUrl() to create a link with that param set. It's overwritten in the trashbin fileList so that anchors continue to have `#` as a href. Fix the link generation for subfolders of public shares: 58a87d0 was the last commit that touched the linkTo function in public.js. It included the params as arguments to the generateUrl function. Turns out this completely ignores the dir parameter now. The inclusion was reverted in other places so revert it here as well. Also change `dir` to `path` in the param as that is respected when following the link. Add Test for the new link url for files with default action. Remove test for multiple selects with ctrl-click as that is not what we are doing anymore. Signed-off-by: Azul <azul@riseup.net>
2020-04-08refactor: fileActions.getCurrentDefaultFileAction()Azul
fileActions.getCurrentDefaultFileAction() returns the default file action for the currently selected file. There were a number of places querying for the mime, type and permissions of that file first to then query for the default action. Signed-off-by: Azul <azul@riseup.net>
2020-03-09Fix default action for deleted sharesGretaD
Signed-off-by: GretaD <gretadoci@gmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-03-09Remove deprecated global variablesChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>