aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/files.js
Commit message (Collapse)AuthorAgeFilesLines
* Do not send file list for select all on Download/deleteVincent Petry2014-02-131-10/+13
| | | | | | | | - When all files are selected, do not send the whole file list - Download will trigger download for the parent folder, also works with root - Delete will send "allfiles" to the server that will find the file list or the passed directory by itself
* Fix implied evals and doubled definition of variableMorris Jobke2014-02-071-1/+1
| | | | | | | fixes #7119 fixes #7120 fixes #7121 fixes #7122
* Merge pull request #7011 from owncloud/jshintThomas Müller2014-02-041-12/+33
|\ | | | | Added .jshintrc
| * Fixed file name validation unit test + added newlineVincent Petry2014-01-301-7/+15
| | | | | | | | | | - fixed file name validation unit test - added "\n" as forbidden character in isFileNameValid()
| * Added .jshintrcVincent Petry2014-01-301-5/+18
| | | | | | | | | | | | - Also fixes a few JSHint warnings in files app - Added "global" comment on top of files app to suppress warning and also inform devs about what globals are use
* | Merge branch 'master' into pr-exceed_upload_limit_msgPellaeon Lin2014-01-301-13/+48
|\| | | | | | | | | | | Conflicts: apps/files/templates/index.php apps/files_sharing/templates/public.php
| * merge master into mobile-styleJan-Christoph Borchardt2014-01-291-5/+37
| |\
| | * Merge pull request #6184 from owncloud/6051-ux-files-Move-File-SpinnerMorris Jobke2014-01-241-5/+37
| | |\ | | | | | | | | #6051 [ux][files] Move File Spinner
| | | * Fixed indention.zombiehugs2013-12-041-1/+1
| | | | | | | | | | | | | | | | As per @kabum request, indention on line 694 has been fixed.
| | | * #6051 [ux][files] Move File Spinnerzombiehugs2013-12-041-5/+37
| | | | | | | | | | | | | | | | | | | | | | | | Added spinner to file icon when moving to new folder or out of folder. Commit is related to #6051
| * | | Merge branch 'master' into mobile-styleThomas Müller2014-01-231-7/+10
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/js/files.js apps/files_sharing/css/public.css apps/files_sharing/js/public.js apps/files_sharing/templates/public.php
| | * | Merge pull request #6719 from tripflex/fix_pubup_progbarMorris Jobke2014-01-221-1/+1
| | |\ \ | | | | | | | | | | Fix public upload progress bar
| | | * | change publicUploadButtonMock to public_uploadMyles McNamara2014-01-201-1/+1
| | | |/ | | | | | | | | Changed jQuery selector for public preview to public_upload to correctly show preview
| | * | Merge pull request #6827 from rnveach/fix_6730Morris Jobke2014-01-201-1/+2
| | |\ \ | | | | | | | | | | Fix 6730
| | | * | fixed selector string and removed all checkbox if it was selectedrnveach2014-01-171-1/+2
| | | |/
| | * / Fixed various file name escaping issues in core appsVincent Petry2014-01-101-6/+8
| | |/ | | | | | | | | | | | | | | | | | | - Refactored file tr lookup into FileList.findFileEl that uses filterAttr to avoid escaping issues in jQuery selectors - Fixed versions and sharing app to properly escape file names in attributes
| * / fixing preview generationThomas Müller2014-01-151-1/+1
| |/
* / Update #free_space on getstoragestats AJAX callPellaeon Lin2013-12-111-0/+1
|/
* Selection summary is now displayed properlyVincent Petry2013-11-111-1/+1
| | | | Fixes #5775
* Fixed storage stats to be based on current directoryVincent Petry2013-11-061-7/+19
| | | | | | | | Previously, the storage statistics were always for the root dir. This means that the upload button would always show the limit for the root dir, even when uploading to a shared dir or external storage. This fix adds a "dir" argument to getstoragestats.php.
* Update quota value in client after scan and uploadVincent Petry2013-11-061-12/+31
| | | | | | After uploading, the quota value wasn't refreshed. This fix refreshes the quota value after files have been scanned or uploaded.
* calling getstoragestats.php only if a user is logged in because this call ↵Thomas Müller2013-11-051-17/+19
| | | | requires a user to be logged in
* Merge pull request #5582 from owncloud/files-previewcachingThomas Müller2013-11-051-29/+56
|\ | | | | Append file etag to preview URLs
| * Fixed preview URL + size while dragging an existing fileVincent Petry2013-10-281-2/+3
| |
| * Append file etag to preview URLsVincent Petry2013-10-281-27/+53
| | | | | | | | Fixes #5534
* | prefer closest over parentJörn Friedrich Dreyer2013-10-311-1/+1
| | | | | | closest will search up the tree
* | use data-file to retrieve filenameJörn Friedrich Dreyer2013-10-311-1/+1
|/ | | | forward port of https://github.com/owncloud/core/pull/5647#discussion-diff-7341163 trust me, I know what I'm doing
* Merge branch 'master' into ↵Jörn Friedrich Dreyer2013-10-231-2/+10
|\ | | | | | | | | | | | | prevent_user_from_creating_or_renaming_to_an_existing_filename Conflicts: apps/files/js/filelist.js
| * Fixed ugly white space while loading file thumbnailVincent Petry2013-10-221-2/+10
| | | | | | | | | | | | | | Preview images are now pre-loaded before being set on the file element. This fixes #5135 and prevents a white space to be displayed while the thumbnails is being loaded.
* | prevent user from creating or renaming sth. to an existing filenameJörn Friedrich Dreyer2013-10-221-99/+99
|/ | | | | | | | - show tooltip when violating naming constraints while typing - when target filename exists on server fallback to dialog to interrupt the users flow because something unexpected went wrong - fixes #5062 - also fixes some whitespace and codestyle issues in files js - uses css selector over filterAttr in touched js files
* give getSelectedFilesTrash() a unique name for the trash.js to avoid ↵Bjoern Schiessle2013-10-181-5/+5
| | | | confusions with the same function in files.js
* Disabled ajax mode for public files viewVincent Petry2013-10-141-1/+3
| | | | | | Ajax loading is not supported yet for public files view. This fix disabled the history API, ajax loading and ajax directory switch in public mode until it is implemented properly.
* Merge pull request #5134 from owncloud/trashbin-homeiconbrokenVincent Petry2013-10-091-3/+6
|\ | | | | Do not call changeDirectory() when no dir set on breadcrumb
| * Do not call changeDirectory() when no dir set on breadcrumbVincent Petry2013-10-041-3/+6
| | | | | | | | | | | | | | | | | | | | | | Some apps like the files_trashbin app do not set a directory on its "home" breadcrumb link. This fix makes sure that the click event doesn't do anything in that case and lets the browser open the link. This fixes the "home" icon in the trashbin app which now correctly reopens the files app.
* | Merge pull request #4921 from owncloud/file_conflicts_dialog_fixesVicDeo2013-10-071-4/+4
|\ \ | | | | | | File conflicts dialog fixes
| * | remove double uri encodingJörn Friedrich Dreyer2013-10-071-4/+4
| |/
* / Fix breadcrumb to reinit dnd after ajax nav #5064Vincent Petry2013-10-071-6/+8
|/ | | | | | | Now correctly reinitializing the breadcrumb drop zone after ajax navigation. This also fixes dropping onto the "files" app icon.
* Shortened notification message that was too longVincent Petry2013-10-041-1/+1
| | | | | | The message for invalid private key was too long and didn't fit in the notification box. This fix reduces the message to fit properly by removing the extra information.
* Merge branch 'master' into encryption_improved_error_messages_4617Bjoern Schiessle2013-09-301-1/+5
|\
| * implement previews for public uploadGeorg Ehrke2013-09-231-1/+5
| |
* | Merge branch 'master' into encryption_improved_error_messages_4617Bjoern Schiessle2013-09-231-39/+28
|\| | | | | | | | | Conflicts: settings/ajax/changepassword.php
| * Merge branch 'master' into fix_3728_with_file_exists_dialogJörn Friedrich Dreyer2013-09-191-0/+5
| |\ | | | | | | | | | | | | Conflicts: apps/files/js/filelist.js
| | * initial scrollto implementation:Jörn Friedrich Dreyer2013-09-171-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | use places/folder icon, move link construction to JS, only show icon on hover, use 'searchresult' as css class name, add filter/unfilter methods, highlight searched files in current filelist only filter when correct FileList is present
| * | fix race condition in lazy preview loadingJörn Friedrich Dreyer2013-09-191-12/+18
| | |
| * | fixing typos and l10nThomas Müller2013-09-191-2/+2
| | |
| * | use 96x96 as 64x64 thumbnails in conflicts dialog, 64x64 looks very blocky ↵Jörn Friedrich Dreyer2013-09-191-4/+8
| | | | | | | | | | | | ... maybe something is wrong there
| * | Merge branch 'master' into fix_3728_with_file_exists_dialogJörn Friedrich Dreyer2013-09-171-93/+115
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/css/files.css apps/files/js/file-upload.js apps/files/js/filelist.js apps/files/js/files.js apps/files_sharing/js/public.js core/js/jquery.ocdialog.js core/js/oc-dialogs.js
| * | separate uploading code from progress code, add progress capability detectionJörn Friedrich Dreyer2013-09-051-16/+16
| | |
| * | Merge branch 'master' into fix_3728_with_file_exists_dialogJörn Friedrich Dreyer2013-09-041-203/+37
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/ajax/upload.php apps/files/js/file-upload.js apps/files/js/filelist.js apps/files/js/files.js apps/files/templates/part.list.php
| * | | architecture too complexJörn Friedrich Dreyer2013-08-211-7/+0
| | | |