aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js
Commit message (Collapse)AuthorAgeFilesLines
* Fix trashbin sidebarVincent Petry2015-08-251-4/+4
| | | | | Do not display size as it is not available. Use display name instead of name to remove the ".d123456" suffix.
* Properly hide sidebar when switching between files app sectionsVincent Petry2015-08-252-2/+6
| | | | | Since there are multiple sidebars, one for each files app section, we need to hide the correct ones.
* Merge pull request #18523 from owncloud/crazy-scannerThomas Müller2015-08-251-0/+3
|\ | | | | Prevent bkg scanner going crazy with unavailable storages (ajax/scan.php)
| * Prevent scanner going crazy with unavailable storagesVincent Petry2015-08-241-0/+3
| |
* | Merge pull request #18528 from owncloud/files-sidebar-mtimeMorris Jobke2015-08-241-0/+1
|\ \ | | | | | | Parse mtime from the data attributes
| * | Parse mtime from the data attributesVincent Petry2015-08-241-0/+1
| |/
* / bigger file thumbnail in app sidebarJan-Christoph Borchardt2015-08-241-2/+2
|/
* Add namespace in case the file is loaded individuallyVincent Petry2015-08-201-0/+2
| | | | | Some apps might load this file in JS unit tests and need the OCA.Files namespace to exist.
* Merge pull request #18378 from owncloud/files-delete-spinnerVincent Petry2015-08-191-2/+2
|\ | | | | Fix spinner when deleting all files in a folder
| * Fix spinner when deleting all files in a folderVincent Petry2015-08-181-2/+2
| |
* | Merge pull request #18354 from owncloud/files-fixdndVincent Petry2015-08-192-2/+7
|\ \ | | | | | | Fix file drag and drop JS error
| * | Fix file drag and drop JS errorVincent Petry2015-08-172-2/+7
| |/
* | Merge pull request #18339 from owncloud/update-jquery-visibilityThomas Müller2015-08-192-24/+81
|\ \ | | | | | | update jquery-visibility in files app
| * | update jquery-visibility in files appMorris Jobke2015-08-172-24/+81
| |/ | | | | | | * ref #12877
* | Merge pull request #18381 from owncloud/public-share-fixdepsloadingMorris Jobke2015-08-181-1/+1
|\ \ | | | | | | Fix file actions menu in public page
| * | Only show delete action in menu when delete permission existsVincent Petry2015-08-181-1/+1
| |/ | | | | | | | | | | This reverts an older decision where we said the delete action must always appear but be grayed out when the permission is missing. The actions menu obsoletes that.
* | Merge pull request #18310 from hasso/selection-string-fixVincent Petry2015-08-181-9/+17
|\ \ | |/ |/| Fix the string counting a selected files/dirs
| * Move decaration to the beginning of the blockHasso Tepper2015-08-181-3/+5
| |
| * Move selectionVars into if statementHasso Tepper2015-08-171-5/+4
| |
| * Fix the string counting a selected files/dirsHasso Tepper2015-08-141-9/+16
| | | | | | | | | | | | | | The old one contains untranslatable ' & ' if both files and dirs are selected. The new code is especially designed to reuse strings from file listing summary view (apps/files/js/filesummary.js), so no translation is broken.
* | Improve right sidebar tabs behaviorVincent Petry2015-08-143-67/+118
|/ | | | | | | | | | | Tab heads are not rendered if only one tab. The tab contents is updated on-demand. This means that if a tab is not visible it is not rendered at first. If the tab was already rendered through switching, its model will not get updated until the next time it becomes visible. This will prevent needless rerendering of invisible tab contents, especially considering that some tabs might need extra ajax requests.
* Merge pull request #18178 from owncloud/files-sidebar-actionsJan-Christoph Borchardt2015-08-138-211/+343
|\ | | | | Sidebar file actions
| * Make file actions work from sidebarVincent Petry2015-08-127-211/+272
| | | | | | | | | | | | | | | | | | | | | | | | | | The favorite icon in the sidebar now triggers the file action and also updates itself according to the model's state when triggered from the file row. The thumbnail triggers the default action. Currently only one FileInfoModel is used for the selection and state synchronization between views. FileList reload now auto-closes the sidebar.
| * Introduce FileInfoModelVincent Petry2015-08-121-0/+71
| | | | | | | | | | FileInfoModel is a backbone model that will make it possible to track changes and update views accordingly
* | Merge pull request #18231 from owncloud/fix-show-shared-storage-full-temporaryVincent Petry2015-08-131-3/+2
|\ \ | | | | | | Show storage full warning for shared storages temporary
| * | Show strage full warning for shared storages temporaryMorris Jobke2015-08-121-3/+2
| |/ | | | | | | | | | | | | * removed the setDefault call because then it will always be reshown * was added with ba475d486258c0b7ea86cd766814053df6c69170 * fixes #18208
* / replace tipsys with tooltipsHendrik Leppelsack2015-08-123-7/+13
|/
* Fixed file actions menu to close when reclicking triggerVincent Petry2015-08-112-44/+35
| | | | | | FileActionsMenu is now a backbone view. The trigger and highlight handling is now done in the FileActions.showMenu() method using events.
* Inline actions using default renderer are now always permanentVincent Petry2015-08-101-0/+1
| | | | | | | | Default renderer like the favorite icon can decide whether to use the permanent class or not. Fixed sharing code to properly update the icon according to sharing state modifications.
* Added bubble style, applied to file actions menuVincent Petry2015-08-101-1/+1
|
* Updated unit tests for file actions and actions menuVincent Petry2015-08-102-11/+11
|
* Make file action menu icon permanentVincent Petry2015-08-101-3/+5
|
* Implement file actions dropdownVincent Petry2015-08-104-138/+370
| | | | | | File actions now have two types "inline" and "dropdown". The default is "dropdown". The file actions will now be shown in a dropdown menu.
* Merge pull request #17656 from owncloud/files-rightsidebarVincent Petry2015-08-105-21/+687
|\ | | | | Basic work for right sidebar
| * replace tipsy with tooltipHendrik Leppelsack2015-08-071-1/+1
| |
| * fix tipsy gravity after rebaseArthur Schiwon2015-08-071-1/+1
| |
| * fix position of elements in right sidebarJan-Christoph Borchardt2015-08-071-2/+1
| |
| * Use own tabs impl in files sidebarVincent Petry2015-08-072-15/+53
| | | | | | | | Also change style.
| * rename sidebar element and use css and js utility functions to coreArthur Schiwon2015-08-072-12/+6
| |
| * sidebar shall not overlap but shrink the contnetArthur Schiwon2015-08-072-2/+6
| |
| * Main view does not commands detail and tab views to render. Fixes JS tests.Arthur Schiwon2015-08-073-5/+20
| | | | | | | | | | | | | | | | | | | | For a predictive behaviour we need to determine who is allowed to call render methods on the views. Either, the main view is solely allowed to call render and views do not do anything about output until then. Or, the main view relies on the concrete views to be ready when things are about to be shown. The latter approach has the advantage that concrete views know when they have to update themselves (e.g. new data arrives or information change), but the main view has now idea of the inner workings.
| * Added unit tests for right sidebarVincent Petry2015-08-072-4/+3
| |
| * Improve layout, fix mime iconVincent Petry2015-08-073-12/+20
| |
| * Disable right sidebar in public file list pageVincent Petry2015-08-071-5/+12
| |
| * Right sidebar now has its own scrollbarVincent Petry2015-08-072-0/+18
| |
| * Styling fixes + hightlight in files sidebarVincent Petry2015-08-072-0/+8
| | | | | | | | | | Sidebar scrolls with contents Highlight currently show file
| * More fixes to the right sidebarVincent Petry2015-08-073-54/+56
| | | | | | | | | | Sidebar now works in all file list views. Moved owner to share tab.
| * Improved right sidebarVincent Petry2015-08-074-71/+165
| | | | | | | | | | | | | | | | Added owner info. Added animation, but causes scrollbal. Default file action now when clicking on name directly. Fixed icon. Added empty share tab.
| * Basic work for right sidebarVincent Petry2015-08-075-0/+480
| | | | | | | | Adds right sidebar with registrable panels (still WIP)
* | Make sure to hide empty content message when mask is shownVincent Petry2015-08-071-0/+1
|/