summaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8837 from owncloud/issue/8720Morris Jobke2014-06-033-11/+11
|\ | | | | Fix cursor and background of app navigation
| * Fix testsJoas Schilling2014-06-031-8/+8
| |
| * Use active instead of hover for active sidebar optionJoas Schilling2014-06-031-2/+2
| | | | | | | | Fix #8720
| * Do not overwrite cursor in sidebarJoas Schilling2014-06-031-1/+1
| |
* | Merge pull request #8840 from owncloud/share_settingsThomas Müller2014-06-031-1/+1
|\ \ | | | | | | by default don't show option to send mail notifications for shares
| * | set "allow users to send mail notification for shared files default" setting ↵Bjoern Schiessle2014-06-031-1/+1
| | | | | | | | | | | | to "no" now that we have the activity app
* | | remove specific sidebar size from Files appJan-Christoph Borchardt2014-06-031-8/+0
|/ /
* / fix empty file handling optionMorris Jobke2014-06-031-9/+11
|/
* Merge pull request #8821 from owncloud/kill-zip-download-restrictionJan-Christoph Borchardt2014-06-039-48/+15
|\ | | | | drop allowZIPdownload and maxZIPSize as options
| * add OCP\Config:deleteSystemValueMorris Jobke2014-06-021-3/+3
| |
| * bump versionMorris Jobke2014-06-021-1/+1
| |
| * drop allowZIPdownload and maxZIPSize as optionsMorris Jobke2014-06-028-47/+14
| |
* | Merge pull request #8820 from owncloud/design-detailsFrank Karlitschek2014-06-021-4/+11
|\ \ | | | | | | Design details
| * | move Deleted Files to bottom of sidebarJan-Christoph Borchardt2014-06-021-0/+6
| | |
| * | more subtle hover effect on sortable column, text instead of backgroundJan-Christoph Borchardt2014-06-021-1/+1
| | |
| * | fix misalignment of modified dates, shift to rightJan-Christoph Borchardt2014-06-021-1/+1
| | |
| * | remove unused table sizing CSSJan-Christoph Borchardt2014-06-021-2/+3
| |/
* / display "<1 kB" for really small filesMorris Jobke2014-06-022-2/+2
|/ | | | | * added parameters for humanFileSize to trigger that behaviour * add unit tests for that
* [tx-robot] updated from transifexJenkins for ownCloud2014-06-0161-64/+64
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-313-4/+21
|
* Merge pull request #8695 from owncloud/jserrorfixesLukas Reschke2014-05-301-2/+3
|\ | | | | Fixed undefined object error that appears after a delay
| * Fixed undefined object error that appears after a delayVincent Petry2014-05-231-2/+3
| | | | | | | | Now binding properly with the file list instance object.
* | Merge pull request #8779 from owncloud/sel-webdav-onclickVincent Petry2014-05-301-0/+3
|\ \ | | | | | | select webdav address on click
| * | select webdav address on clickVolkan Gezer2014-05-301-0/+3
| | |
* | | Merge pull request #8663 from owncloud/files-dndissueLukas Reschke2014-05-304-6/+156
|\ \ \ | | | | | | | | Fixed drag and drop from external files, added tests
| * | | Fix dropping files below the tableVincent Petry2014-05-224-5/+15
| | | |
| * | | Fixed drag and drop from external files, added testsVincent Petry2014-05-212-5/+145
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixed detection whether the drop zone is inside the currently visible table - Now dragging outside the table does nothing instead of uploading, because the user might drop on the sidebar - Added unit tests for the drop handler
* | | | Sharing overview fixes and unit testsVincent Petry2014-05-305-15/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixed renaming and fileActionsReady event - Added unit tests for shares list - Fixed public page with defer - Fixed file actions in sharing overview - Fixed sharing counterpart list (10 entries max) - Fixed file path attribute to be used in download action - Fix sharing list headers - OC.Share icons now operate on fileList instance - Fix OC.Share.updateIcon when more than one list in DOM
* | | | Fix table header colorsVincent Petry2014-05-301-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Table headers should be 999 even when using links (introduced by the sorting feature) When selecting with checkboxes, they must appear black.
* | | | Distinguish legacy file actions from regular file actionsVincent Petry2014-05-306-42/+132
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Legacy file actions are registered by legacy apps through window.FileActions.register(). These actions can only be used by the main file list ("all files") because legacy apps can only deal with a single list / container. New file actions of compatible apps must be registered through OCA.Files.fileActions. These will be used for other lists like the sharing overview. Fixed versions and sharing actions to use OCA.Files.fileActions, which makes them available in the sharing overview list.
* | | | Added "dir" in file actions handler context and fixed versionsVincent Petry2014-05-304-4/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added "dir" in file actions handler context so that handlers can know what the path of the file was without having to look it up from the file list. Fixed versions app to use the context.dir instead of the old $('#dir') element. This makes the versions popup work in the sharing overview.
* | | | Fixed navigation orderVincent Petry2014-05-301-0/+5
| | | |
* | | | Add unit tests for fileActionsReadyVincent Petry2014-05-301-0/+14
| | | |
* | | | Added unit test for file action context argumentVincent Petry2014-05-301-4/+32
| | | |
* | | | Fixed file actions for sharing viewsVincent Petry2014-05-303-18/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FileActions can now be clone to be use for separate file list views without having the side-effect of affecting the main file list view. Added "Open" action in sharing overview file lists to redirect to the regular file list when clicking on a folder.
* | | | Improved FileActions with contextVincent Petry2014-05-302-4/+17
| | | | | | | | | | | | | | | | | | | | A context hash is now passed to file action handlers which makes it possible to have file list specific file actions.
* | | | Added sharing overview page (WIP)Vincent Petry2014-05-301-4/+6
| | | | | | | | | | | | | | | | | | | | - added sharing overview entries in the sidebar - use OCS Share API to get the list of files
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-303-6/+11
| | | |
* | | | Merge pull request #8773 from owncloud/l10n-tipsy-deleteLukas Reschke2014-05-291-1/+1
|\ \ \ \ | |_|/ / |/| | | show delete hint text on hovering trash
| * | | show delete hint text on hovering trashVolkan Gezer2014-05-281-1/+1
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-291-1/+2
|/ / /
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-284-6/+36
| | |
* | | Adjust core apps to use "requiremin" instead of "require"Vincent Petry2014-05-271-2/+2
| | | | | | | | | | | | Also added a few missing authors.
* | | Merge pull request #8728 from owncloud/sharing_fix_reshareVincent Petry2014-05-271-10/+4
|\ \ \ | | | | | | | | allow resharing of files with only share permissions
| * | | allow resharing of files with only share permissionsBjoern Schiessle2014-05-261-10/+4
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-279-9/+18
|/ / /
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-2659-123/+68
| | |
* | | Merge pull request #8705 from wakeup/masterThomas Müller2014-05-251-1/+1
|\ \ \ | | | | | | | | fix typo
| * | | fix typoVolkan Gezer2014-05-241-1/+1
| | | | | | | | | | | | Suggested by [mnestis](https://www.transifex.com/accounts/profile/mnestis/) on transifex
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-251-15/+15
|/ / /