summaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
* Hide search results after switching directoryVincent Petry2016-06-241-0/+7
| | | | | When clicking on a folder result in the search result list, the result box for "results in another folder" must disappear.
* Fix search result link for file results outside default listVincent Petry2016-06-241-2/+2
| | | | | When outside the "All files" list, the search result link must properly redirect to the "All files" list.
* Fix typoJuan Pablo Villafáñez2016-06-101-1/+1
|
* Handle storage not available to show an error messageJuan Pablo Villafáñez2016-06-101-0/+3
|
* dont update search onResize (#24862)Georg Ehrke2016-05-301-2/+0
| | | this.updateSearch() sets the current file list instance and clears the box. This is unnecessary and makes the search box unsuable on some mobile devices where a keyboard fade-in causes a onResize trigger, which would then clear and blur the box.
* Yo-ho-oh - Murder all band 'o piratesThomas Müller2016-05-112-10/+0
|
* Fix StorageNotAvailable exception string detectionVincent Petry2016-04-211-1/+1
|
* Merge pull request #23984 from owncloud/fix-infinite-loop-in-unavailable-mountMorris Jobke2016-04-201-1/+2
|\ | | | | [stable8.2] Fixes a possible infinite change-dir-loop
| * Fixes a possible infinite change-dir-loopArthur Schiwon2016-04-131-1/+2
| | | | | | | | Those can occure when browsing in a mount that got unavailable
* | Remove disabled autocorrect for new file namesMorris Jobke2016-03-091-1/+1
| | | | | | | | * ref #22784
* | Remove browser autocomplete in new file menuVincent Petry2016-03-071-1/+1
|/
* Run cleanup of expired DB file locks to background jobMorris Jobke2016-03-044-1/+82
| | | | | | | | | | | | | * fixes #22819 The old way fired a DELETE statement on each destruction of the DBLockingProvider. Which could cause a lot of queries. It's enough to run this every 5 minutes in a background job, which in the end could result in file locks that exists 5 minutes longer - in the worst case and for not properly released locks. This makes the DB based locking a lot more performant and could result in a similar performance to the Redis based locking provider.
* Close file detail sidebar when selecting/unselecting filesVincent Petry2016-02-172-9/+36
| | | | | Interacting with the checkboxes, also "Select all" will automatically close the sidebar now.
* Skip unavailable storages in scannerRobin Appelman2015-12-212-2/+6
|
* Bring back file delete action text to be based on contextVincent Petry2015-12-113-5/+49
| | | | | | | | For received shares, the delete action becomes "Unshare" and for personal mounts it becomes "Disconnect storage". This also makes it possible from now on to pass a function to a file action's "displayName" attribute.
* Compute share permissions in the viewVincent Petry2015-12-091-3/+6
| | | | | The share permissions are now computed in the View/FileInfo instead of storing them directly/permanently on the storage
* Merge pull request #20488 from owncloud/backport-20487-8.2Thomas Müller2015-12-012-7/+23
|\ | | | | [8.2] Activity oracle sql error for favorites
| * Add a unit test that executes the queryJoas Schilling2015-11-181-0/+13
| |
| * Oracle can not return statements but only valuesJoas Schilling2015-11-182-7/+10
| | | | | | | | So evaluate the condition directly and return 1 or 0
* | Dont output paths in scan.phpRobin Appelman2015-11-261-8/+0
| |
* | [stable8.2] Add fake locker pluginLukas Reschke2015-11-161-1/+2
|/
* Backport translations for 8.2Joas Schilling2015-11-0528-28/+56
|
* dont trigger the scroll event of every single item we filter in the file listRobin Appelman2015-11-021-2/+3
|
* Fix icon update to be more consistentVincent Petry2015-10-294-8/+79
| | | | Makes the details bar show the same icon as in the list.
* Merge pull request #19956 from owncloud/stable8.2-fix-webui-upload-and-conflictsLukas Reschke2015-10-212-11/+129
|\ | | | | [stable8.2] Fix file upload, conflict dialog, also in public link
| * Fix file upload, conflict dialog, also in public linkVincent Petry2015-10-212-11/+129
| | | | | | | | | | | | | | | | - Use "FileList" instead of "OCA.Files.App.fileList" that doesn't exist in public link page. - Fix public link upload by properly adding the form data using a new utility function "addFormData". That one is needed because IE8 upload and regular upload use a different format...
* | Do not display details bar after renameVincent Petry2015-10-211-3/+6
|/
* Merge pull request #19882 from owncloud/backport-ceph-stop-script-changesThomas Müller2015-10-211-1/+6
|\ | | | | Backport objectstore fixes to 8.2
| * fix delete orphan shares test with object home storageRobin Appelman2015-10-201-1/+6
| |
* | Merge pull request #19819 from ↵Morris Jobke2015-10-203-6/+49
|\ \ | | | | | | | | | | | | owncloud/stable8.2-filelist-preventerrorwhennosidebar [stable8.2] Do not register sidebar panels when no sidebar
| * | Do not register sidebar panels when no sidebarVincent Petry2015-10-163-6/+49
| | |
* | | Merge pull request #19780 from owncloud/stable8.2-files-delete-hidenotifMorris Jobke2015-10-201-0/+2
|\ \ \ | | | | | | | | [stable8.2] Hide notification on delete
| * | | Hide notification on deleteVincent Petry2015-10-141-0/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | In case a permanent notification "storage full" was displayed, it will be hidden after deleting a file. Directly after that a getstoragestats.php call is made that will decide whether to reshow the notification based on the new free space.
* | | Merge pull request #19779 from owncloud/stable8.2-trash-deletesectionposition-2Morris Jobke2015-10-201-13/+0
|\ \ \ | | | | | | | | [stable8.2] Move trashbin specific CSS that modifies sidebar
| * | | Move trashbin specific CSS that modifies sidebarVincent Petry2015-10-141-13/+0
| |/ / | | | | | | | | | | | | Only when trashbin is enabled, its sidebar nav element must be fixed at the bottom.
* | | Merge pull request #19772 from owncloud/stable8.2-sidebar-alt-favoriteMorris Jobke2015-10-201-2/+1
|\ \ \ | | | | | | | | [stable8.2] Move alt text for favorite action to image
| * | | Move alt text for favorite action to imageVincent Petry2015-10-141-2/+1
| |/ /
* | | Merge pull request #19778 from owncloud/stable8.2-files-canceluploaddebounce-reMorris Jobke2015-10-201-6/+5
|\ \ \ | | | | | | | | [stable8.2] Debounce cancel upload message
| * | | Debounce cancel upload messageVincent Petry2015-10-141-6/+5
| |/ /
* | | Merge pull request #19774 from owncloud/stable8.2-notif-showtemporaryMorris Jobke2015-10-201-20/+8
|\ \ \ | | | | | | | | [stable8.2] showTemporary instead of show for notifications
| * | | showTemporary instead of show for notificationsVincent Petry2015-10-141-20/+8
| |/ /
* | | Merge pull request #19770 from owncloud/stable8.2-fix-ie-painMorris Jobke2015-10-201-0/+5
|\ \ \ | |_|/ |/| | [stable8.2] Fix more IE issues
| * | [IE8] Fix "new" button widthVincent Petry2015-10-141-0/+5
| |/
* / Increase the 2nd digit of shipped apps for 8.2Joas Schilling2015-10-172-2/+4
|/
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-132-0/+6
|
* Revert "Debounce cancel upload message"Thomas Müller2015-10-121-5/+6
|
* Merge pull request #19628 from owncloud/files-canceluploaddebounceRobin Appelman2015-10-121-6/+5
|\ | | | | Debounce cancel upload message
| * Debounce cancel upload messageVincent Petry2015-10-071-6/+5
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-122-2/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-112-0/+16
| |