aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js
Commit message (Collapse)AuthorAgeFilesLines
* 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 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-202-1/+4
|\ \ \ | | | | | | | | Fix 6730
| * | | added trigger to redo selection text on a directory changernveach2014-01-171-0/+2
| | | |
| * | | fixed selector string and removed all checkbox if it was selectedrnveach2014-01-171-1/+2
| |/ /
* | | Fix to not destroy draggable when no draggable was setVincent Petry2014-01-141-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | When a dir has no delete permission, the draggable isn't initialized on files. This fix makes sure we don't try to destroy a draggable when it wasn't inited in the first place. Fixes #6254
* | | Fixed various file name escaping issues in core appsVincent Petry2014-01-104-28/+49
|/ / | | | | | | | | | | | | - 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
* / Fixed download file from URL error messagesVincent Petry2013-12-121-1/+6
|/ | | | | | | | - L10N now converted to string to make them work with json_encode - Added specific error message when server doesn't allow fopen on URLs - Fixed client side to correctly show error message in a notification - Added OCP\JSON::encode() method to encode JSON with support for the OC_L10N_String values
* Merge pull request #6090 from ganomi/summaryfixganomi2013-11-281-1/+1
|\ | | | | Fix filellist/rename/summary problem
| * Fix filellist/rename/summary problemganomi2013-11-271-1/+1
| | | | | | | | | | Fixes #6055 This contribution is MIT licensed!
* | Merge pull request #6089 from owncloud/files-mimetyperefreshafterrenameFrank Karlitschek2013-11-281-2/+17
|\ \ | | | | | | Redetect mime type whenever extension is renamed
| * | Update file list entry on renameVincent Petry2013-11-271-2/+17
| |/ | | | | | | | | | | Whenever a file is renamed, if the extension changes, the mime type and preview might change. This fix passes the updated info to the client that updates it.
* / New file box now has default file name + extensionVincent Petry2013-11-281-3/+13
|/ | | | | | | | | | | Whenever a user creates a file or folder in the web UI, the input field will contain a default file name, pre-selected up to the extension for easier typing. The purpose is mostly to prevent users creating text files without an extension. Fixes #6045
* Merge pull request #5641 from owncloud/filestrash-emptytrashBjörn Schießle2013-11-251-2/+3
|\ | | | | Deleting all files in trash now only sends a single flag
| * Deleting all files in trash now only sends a single flagVincent Petry2013-11-111-2/+3
| | | | | | | | | | | | | | | | To prevent having to send the list of all files for deletion, only set a flag "allfiles". This should make it a bit smoother when deleting 5000+ files. Also fixes some "empty trash" message issues.
* | Fixed delete action to show error message as notificationVincent Petry2013-11-191-1/+11
| |
* | fix filtering number like filenames in filelistJörn Friedrich Dreyer2013-11-181-1/+1
| | | | | | forward port of https://github.com/owncloud/core/commit/847ad6c40b951cbd3d187e3c72cb55dc3acd6951
* | Fixed total dirs/files message hiding conditionVincent Petry2013-11-131-3/+3
| | | | | | | | Fixes #5829
* | Merge pull request #5804 from owncloud/files-selectionsummaryMorris Jobke2013-11-111-1/+1
|\ \ | |/ |/| Selection summary is now displayed properly
| * Selection summary is now displayed properlyVincent Petry2013-11-111-1/+1
| | | | | | | | Fixes #5775
* | Merge pull request #5769 from owncloud/files-changedirjseventMorris Jobke2013-11-111-0/+6
|\ \ | |/ |/| Added JS event for when the user changes the directory
| * Added JS event for when the user changes the directoryVincent Petry2013-11-081-0/+6
| | | | | | | | | | This enables apps to detect directory changes which might be caused by the user using the browser back button.
* | Increased upload error delay to 10 secondsVincent Petry2013-11-081-6/+5
|/ | | | | | | Fixes #5662 Also made it use OC.Notification instead of directly access the notification HTML element.
* Fixed totalDirs JS errorVincent Petry2013-11-071-2/+2
|
* Merge pull request #5399 from frisco82/fixDownloadOverQuotaMorris Jobke2013-11-061-35/+30
|\ | | | | Do not count the size of shared folder on total
| * Do not count the size of shared folder on totalRamiro Aparicio2013-11-061-35/+30
| | | | | | | | | | | | Changed all array access to dot notation Split comment in a second line
* | Fixed storage stats to be based on current directoryVincent Petry2013-11-062-7/+26
| | | | | | | | | | | | | | | | 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-063-13/+33
| | | | | | | | | | | | 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-053-38/+66
|\ \ | | | | | | 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-283-36/+63
| |/ | | | | | | Fixes #5534
* | Merge pull request #5648 from owncloud/files-fixhidecontrolsinviewermodeMorris Jobke2013-10-311-0/+3
|\ \ | | | | | | Corretly hide "no permissions" message in controls in viewer mode
| * | Corretly hide "no permissions" message in controls in viewer modeVincent Petry2013-10-311-0/+3
| | | | | | | | | | | | Fixes #5622
* | | 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 pull request #5628 from owncloud/files-fixsummaryVicDeo2013-10-301-6/+7
|\ \ | | | | | | Fixed summary visibility check
| * | Fixed summary visibility checkVincent Petry2013-10-301-6/+7
| | | | | | | | | | | | | | | Now using the integer values to check whether to show the summary parts instead of trying to parse the html code.
* | | Prevent closing the create dropdown when right clicking in FirefoxVincent Petry2013-10-301-1/+5
|/ / | | | | | | | | | | | | Firefox sends a click event on the document when right clicking which makes pasting with right click into the field impossible. Fixes #5498
* / Added fix to correctly parse non-array error messagesVincent Petry2013-10-291-2/+7
|/ | | | Some apps like the antivirus app return messages in a non-array format.
* Merge branch 'master' into ↵Jörn Friedrich Dreyer2013-10-232-7/+22
|\ | | | | | | | | | | | | prevent_user_from_creating_or_renaming_to_an_existing_filename Conflicts: apps/files/js/filelist.js
| * Merge pull request #5310 from owncloud/hide_filestable-header_when_emptyChristopher Schäpers2013-10-221-4/+12
| |\ | | | | | | Hide files list header, when theres no files to see
| | * Fix mind-boggling emptycontent logickondou2013-10-211-1/+1
| | |
| | * Fix shared folder still showing fileheaderkondou2013-10-211-2/+2
| | |
| | * Improve updateEmptyContent logickondou2013-10-201-1/+1
| | |
| | * Create FileList.updateEmptyContent() and fix not showing emptycontent after ↵kondou2013-10-201-5/+10
| | | | | | | | | | | | deletion
| | * Hide files list header, when theres no files to seekondou2013-10-121-0/+3
| | |