aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #10902 from owncloud/fix-ellepsisLukas Reschke2014-09-161-0/+2
|\ | | | | Adding link to ellipsis and fixing styling
| * Adding link to ellipsis and fixing stylingClark Tomlinson2014-09-161-0/+2
| |
* | Merge pull request #7254 from owncloud/core-sortalgoLukas Reschke2014-09-161-1/+1
|\ \ | | | | | | Fixed JS sort comparator to be consistent between JS and PHP
| * | Fixed file list sortingVincent Petry2014-08-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now using a natural sort algorithm that is more consistent between JS and PHP (although not perfect in some corner cases) - added OC.Util.naturalSortComparator that uses the same algo that was used for the user list - changed user list and files list to use OC.Util.naturalSortComparator - removed toLowerCase() and changed the comparator to use String.localeCompare() - added unit tests - added OC_NaturalSort that is used by OCP\Util::naturalSortCompare()
* | | Show original path information in trashbin and sharing viewsRobin McCorkell2014-09-111-0/+6
| |/ |/| | | | | Path will only be shown if in subdirectory, not in root.
* | Merge pull request #10860 from owncloud/scrolltofixClark Tomlinson2014-09-053-27/+46
|\ \ | | | | | | Scroll to file on search or add
| * | Scroll to new file/folder after addingVincent Petry2014-09-042-5/+10
| | | | | | | | | | | | | | | When creating a new file from the menu, the list now scrolls to that file.
| * | Fixed scrollto for search resultsVincent Petry2014-09-042-22/+36
| | | | | | | | | | | | | | | | | | | | | | | | Now passing the "scrollto" URL argument to the file list class which will also automatically scroll and highlight the matching element. This code is triggered by the search box when in a different folder and also by the activity app.
* | | Added permission check for drag and dropVincent Petry2014-09-042-1/+25
|/ / | | | | | | | | | | | | | | When dropping files onto a read-only folder, a notification is now shown instead of attempting to upload. This for both the drag for upload and drag from inside the file list cases.
* | Highlight every uploaded files and scroll down to the last onepdessauw2014-09-032-0/+58
| |
* | Implementing moment.jsClark Tomlinson2014-08-281-1/+1
| | | | | | | | | | | | | | | | Updating Usages Removing unused method Adding JS Doc
* | remove obsolete 'Download preparing' message for zip downloads, fix #3755Jan-Christoph Borchardt2014-08-191-1/+0
| |
* | Client side sort for sharing overviewVincent Petry2014-08-151-5/+21
| | | | | | | | | | Since the server doesn't support sorting, use client side sort directly instead of calling reload() first.
* | Merge pull request #10374 from ogasser/compare_upload_limit_against_biggest_fileJan-Christoph Borchardt2014-08-141-4/+7
|\ \ | | | | | | Compare upload limit against biggest file
| * | Compare upload limit against biggest fileOliver Gasser2014-08-121-4/+7
| | | | | | | | | | | | | | | When uploading multiple files from the web interface, compare the PHP upload limit against the largest file, not against the sum of all files.
* | | Merge pull request #10295 from owncloud/file_actions_error_handlingBjörn Schießle2014-08-141-0/+4
|\ \ \ | |/ / |/| | file actions improved error handling
| * | add error message if user wants to rename a file which no longer existsBjoern Schiessle2014-08-111-0/+4
| |/
* / Fix alert textVolkan Gezer2014-08-121-1/+1
|/
* trigger lazy loading earlier, fix #9823Jan-Christoph Borchardt2014-08-081-1/+1
|
* Merge pull request #9703 from owncloud/files-preview-animateMorris Jobke2014-07-241-2/+4
|\ | | | | [OC 7] Fix preview animation on uploading
| * Fix preview animation on uploadingVincent Petry2014-07-171-2/+4
| | | | | | | | | | When adding/uploading files, the preview is now animated. When loading a list of files directly the preview is displayed directly.
* | Merge pull request #9683 from owncloud/fix_#8819_sortingVincent Petry2014-07-221-4/+18
|\ \ | |/ |/| Fix #8819 sorting
| * Sorting triangles pointing up for ascending, down for descendingRemco Brenninkmeijer2014-07-211-2/+2
| |
| * Before I get spanked ;)Remco Brenninkmeijer2014-07-171-1/+1
| |
| * While busy cleaning, also removed extra entersRemco Brenninkmeijer2014-07-171-1/+0
| |
| * Corrected (Netbeans?) inserted spacesRemco Brenninkmeijer2014-07-171-16/+16
| |
| * Fixed comments from PVince81Remco Brenninkmeijer2014-07-161-6/+5
| |
| * Show sorting icons when hovering overRemco Brenninkmeijer2014-07-161-7/+18
| |
| * Changed default sorting except for names.Remco Brenninkmeijer2014-07-081-1/+6
| |
* | Added mountType attribute and adapted Delete action textVincent Petry2014-07-142-5/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Added mountType attribute for files/folder to indicated whether they are regular, external or shared. The client side then adapts the "Delete" action hint text based on this information. Only the mount roots must have the delete icon hint adapted. To make this detectable on the client side, the mountType can now be null, "shared", "shared-root", "external" or "external-root". This also gives room to icon customization on the client side.
* | Propagate file action changes to the file listsVincent Petry2014-07-093-31/+92
|/ | | | | | | | | Whenever an app needs to register an event late, it does that on the original file actions object. Since the file actions that the file list work on is a merged list, not the original one, the registration event needs to be propagated there as well.
* Merge pull request #9445 from owncloud/filelist-auth-erroricewind19912014-07-041-2/+9
|\ | | | | Reload the page when the files app encounters an authentication error
| * Add machine readable error messages to OC\JSONRobin Appelman2014-07-041-2/+9
| | | | | | | | | | | | | | | | | | | | Reload the files app in case of authentication errors, expired tokens or disabled app Reloading will triger the full server side handeling of those errors formatting fix missing semicolon + some jshint warnings
* | Merge pull request #9434 from owncloud/files-reloadpromiseissueMorris Jobke2014-07-041-1/+3
|\ \ | |/ |/| Fix reload call for all subclasses
| * Fix reload call for all subclassesVincent Petry2014-07-041-1/+3
| | | | | | | | All subclasses must also properly return the ajax call object.
* | Fix FileActions merging overrideVincent Petry2014-07-041-10/+6
|/ | | | | | When merging FileActions, the register() functio needs to correctly override the previously merged action handler without affecting the original one.
* shared view: remove whitespace glitch on rightJan-Christoph Borchardt2014-07-021-1/+1
|
* Merge pull request #9373 from owncloud/design-fix-modifiedVincent Petry2014-07-021-2/+7
|\ | | | | shade color for modified dates again, fix #9363
| * simplify formula and add commentMorris Jobke2014-07-021-2/+3
| |
| * shade color for modified dates again, fix #9363Jan-Christoph Borchardt2014-07-021-1/+5
| |
* | Merge pull request #9311 from owncloud/storage-not-availableVincent Petry2014-07-021-11/+12
|\ \ | |/ |/| Handle storages not being available in webui and webdav
| * If loading a directory fails, navigate back to the previous directoryRobin Appelman2014-06-301-11/+12
| |
* | Use fileActionsReady to re-render sharing iconsVincent Petry2014-07-012-15/+25
| | | | | | | | | | | | | | | | | | Whenever file actions are modified, either by registering new actions or when appending a new page of entries, the sharing app is now notified so it can correctly refresh the sharing icon status. Additionally, the core's loadIcons() method is also used to load the existing shares and also refresh the sharing icons afterwards.
* | Fix fileActionsReady event after deferred file actions updateVincent Petry2014-07-011-1/+2
|/
* Remove missed console.log in file listVincent Petry2014-06-271-1/+0
|
* Merge pull request #9254 from owncloud/fileactions-deferredMorris Jobke2014-06-273-5/+76
|\ | | | | Sync file list with file actions
| * Sync file list with file actionsVincent Petry2014-06-273-5/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Whenever file actions are registered later, now the file lists are automatically notified. Added FileActions.addUpdateListener() to be able to receive such notifications. This removes the need for apps to manually call FileActions.display() after registering new actions. This fixes issues with race conditions when file actions are registered after the file list was already rendered.
* | Merge pull request #9174 from owncloud/breadcrumbfixJan-Christoph Borchardt2014-06-273-86/+113
|\ \ | |/ |/| Breadcrumb width calculation fix
| * Breadcrumb width calculation fixVincent Petry2014-06-273-86/+113
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Rewrote the breadcrumb calculation to be more readable. Breadcrumb now has a setMaxWidth() method to set the maximum allowed width which is used to fit the breadcrumbs. The breadcrumb width is now based on the container width, passed through setMaxWidth() by the FileList class. Now using fixed widths for the test crumbs to simulate consistent widths across browsers which rendering engines might usually yield different results.
* | Merge pull request #9170 from owncloud/files-renamevalidationblurLukas Reschke2014-06-231-4/+12
|\ \ | | | | | | Fix blurring of invalid file name on rename