summaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexJenkins for ownCloud2014-04-2967-339/+339
|
* typos, naming, remove unused code, identationThomas Müller2014-04-283-53/+39
|
* Fixed drag and drop into folder and onto breadcrumbVincent Petry2014-04-283-82/+211
| | | | | Fixed drag and drop code to use FileList.getSelectedFiles() instead of the visible DOM elements.
* Fixed selection summary calculation issueVincent Petry2014-04-282-3/+27
|
* Cleanup of event handlersVincent Petry2014-04-281-32/+32
| | | | | Now using _.bind() for event handlers so we can use "this" which is more readable than a static access to FileList.
* Cleanup and fix trashbin "clear all files" operationVincent Petry2014-04-281-5/+1
|
* Fixed drag shadow file sortingVincent Petry2014-04-281-0/+1
|
* Fixed selection to be based on FileList.filesVincent Petry2014-04-284-159/+287
| | | | | | | | | | The file selection is now based on the internal model array FileList.files instead of the visible checkboxes. This makes it possible to virtually select files that haven't been rendered yet (select all, then deselect a visible one) Added more unit tests for selection (with shift and ctrl as well)
* Make sure there are always enough elements visible on the pageVincent Petry2014-04-282-0/+18
|
* Fixed insertion of filesVincent Petry2014-04-284-40/+169
| | | | | | | | | Removed "insert" flag, inserting is by default for FileList.add(). Added "animate" flag to FileList.add(). Added logic to correctly detect when to insert/append elements whenever the insertion point is visible or not. Fixed "render next page" logic to work correctly when many pages of files have been added.
* Fixed file sorting to work with scrollingVincent Petry2014-04-282-106/+150
| | | | | | | | | The FileList.files model is now updated with file operations. Adding files to the list will add to the model first, then to the DOM. If the insertion point isn't visible yet, the file won't be added to the DOM until the user scrolls down. Updated unit tests to include checking for the correct insertion point.
* Fix file selection for infinite scrollingVincent Petry2014-04-285-217/+497
| | | | | | | - moved file selection code to FileList - fix selection summary when all files are selected - nextPage now auto-selects files if "select all" checkbox is checked - fixed trashbin to use the same selection logic as FileList
* Fix file summary to use the whole file listVincent Petry2014-04-286-136/+314
| | | | | | - moved the summary code into a new class FileSummary - FileSummary is calculated only once, then updated with add/remove - added new OC.Util namespace for JS utility functions
* Added infinite scrolling (in-memory list)Vincent Petry2014-04-281-5/+60
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-04-271-1/+1
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-04-263-0/+4
|
* merge master into webdav-injectionRobin Appelman2014-04-2579-280/+75
|\
| * [tx-robot] updated from transifexJenkins for ownCloud2014-04-2537-65/+20
| |
| * Merge pull request #8026 from owncloud/remove_shared_folderBjörn Schießle2014-04-248-143/+24
| |\ | | | | | | remove the "Shared" folder
| | * always allow to rename the share mount pointBjoern Schiessle2014-04-232-1/+15
| | |
| | * we no longer need to handle the Shared folder different from any other folderBjoern Schiessle2014-04-237-140/+8
| | |
| | * don't overwrite shared folder iconBjoern Schiessle2014-04-231-2/+1
| | |
| * | [tx-robot] updated from transifexJenkins for ownCloud2014-04-2412-2/+14
| | |
| * | Merge pull request #8233 from owncloud/fix-newdialog-ieThomas Müller2014-04-231-1/+1
| |\ \ | | | | | | | | fix shift of icons in 'New' menu in IE8/9, fix #7987
| | * | fix shift of icons in 'New' menu in IE8/9, fix #7987Jan-Christoph Borchardt2014-04-161-1/+1
| | | |
| * | | Adjust renaming of directories, fixes #8280Robin McCorkell2014-04-231-1/+2
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Directories will not be considered to have an extension, even if a dot is found. Stop Scrutinizer being annoyed But the spaced version looked good! Stop jsHint being annoyed These code quality tools are really pestering
| * | [tx-robot] updated from transifexJenkins for ownCloud2014-04-2370-68/+14
| | |
* | | merge master into webdav-injectionRobin Appelman2014-04-229-79/+133
|\| |
| * | Merge pull request #8283 from owncloud/translatable-max-in-uploadJörn Friedrich Dreyer2014-04-222-2/+2
| |\ \ | | | | | | | | make max. text translatable
| | * | make max. text translatableVolkan Gezer2014-04-212-2/+2
| | | |
| * | | [tx-robot] updated from transifexJenkins for ownCloud2014-04-222-1/+2
| | | |
| * | | [tx-robot] updated from transifexJenkins for ownCloud2014-04-211-1/+1
| |/ /
| * | Merge pull request #8169 from owncloud/change-to-showAndreas Fischer2014-04-201-1/+1
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Change from showHTML to show * owncloud/change-to-show: Change from showHTML to show
| | * | Change from showHTML to showLukas Reschke2014-04-111-1/+1
| | | | | | | | | | | | There is no need to use `showHTML` here.
| * | | [tx-robot] updated from transifexJenkins for ownCloud2014-04-171-1/+1
| | |/ | |/|
| * | Merge pull request #8104 from owncloud/lukepolo-masterThomas Müller2014-04-154-74/+127
| |\ \ | | |/ | |/| Added the ability to Drag and Drop folders [chrome]
| | * add link to further discussion about that folder checkThomas Müller2014-04-151-0/+1
| | |
| | * fix single file upload in firefoxThomas Müller2014-04-101-1/+5
| | |
| | * In cases folder drag and drop is not supported a proper message is displayedThomas Müller2014-04-091-5/+12
| | |
| | * use FileList.findFileElThomas Müller2014-04-091-1/+2
| | |
| | * Merge branch 'master' into lukepolo-masterThomas Müller2014-04-096-23/+50
| | |\ | | | | | | | | | | | | | | | | Conflicts: apps/files/js/filelist.js
| | * | js style fixes according to our jshintrc rulesThomas Müller2014-04-071-58/+56
| | | |
| | * | fix folder upload in jsThomas Müller2014-04-071-16/+21
| | | |
| | * | adding parentId to file info arrayThomas Müller2014-04-071-1/+2
| | | |
| | * | remove unused exit()Thomas Müller2014-04-071-1/+0
| | | |
| | * | Merge branch 'master' of https://github.com/lukepolo/core-1 into lukepolo-masterThomas Müller2014-04-073-13/+50
| | |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/js/file-upload.js
| | | * | Fixed issue with drag and drop not in the root directory, for folders and filesLuke Policinski2014-02-201-6/+7
| | | | |
| | | * | Feature Added : Ability to drag and drop in ChromeLuke Policinski2014-02-192-8/+8
| | | | |
| | | * | Feature Added : Ability to drag and drop in ChromeLuke Policinski2014-02-193-13/+48
| | | | |
* | | | | merge master into webdav-injectionRobin Appelman2014-04-15101-1221/+2198
|\| | | |