aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/ajax
Commit message (Collapse)AuthorAgeFilesLines
...
* php upload errors are written to logThomas Müller2014-05-221-1/+3
|
* Add sorting to files list, trashbin and public filesVincent Petry2014-04-281-1/+4
|
* 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-071-8/+18
|\ | | | | | | | | Conflicts: apps/files/js/file-upload.js
| * Feature Added : Ability to drag and drop in ChromeLuke Policinski2014-02-191-2/+2
| |
| * Feature Added : Ability to drag and drop in ChromeLuke Policinski2014-02-191-8/+18
| |
* | Fixed dirInfo check for non existing dir in files ajax callVincent Petry2014-04-031-1/+1
| |
* | Files, trashbin, public apps use ajax/JSON for the file listVincent Petry2014-04-025-113/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Files app: - removed file list template, now rendering list from JSON response - FileList.addFile/addDir is now FileList.add() and takes a JS map with all required arguments instead of having a long number of function arguments - added unit tests for many FileList operations - fixed newfile.php, newfolder.php and rename.php to return the file's full JSON on success - removed obsolete/unused undo code - removed download_url / loading options, now using Files.getDownloadUrl() for that - server side now uses Helper::getFileInfo() to prepare file JSON response - previews are now client-side only Breadcrumbs are now JS only: - Added BreadCrumb class to handle breadcrumb rendering and events - Added unit test for BreadCrumb class - Moved all relevant JS functions to the BreadCrumb class Public page now uses ajax to load the file list: - Added Helper class in sharing app to make it easier to authenticate and retrieve the file's real path - Added ajax/list.php to retrieve the file list - Fixed FileActions and FileList to work with the ajax list Core: - Fixed file picker dialog to use the same list format as files app
* | Merge pull request #7107 from owncloud/load-apps-proper-masterThomas Müller2014-03-284-18/+0
|\ \ | | | | | | Load apps proper master
| * \ Merge branch 'master' into load-apps-proper-masterThomas Müller2014-03-2113-97/+85
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/ajax/rawlist.php cron.php ocs/v1.php
| * | | remove superfluous $RUNTIME_APPTYPESThomas Müller2014-02-064-18/+0
| | | |
* | | | Fix public upload to not close session when encryption is onVincent Petry2014-03-241-1/+4
| |/ / |/| | | | | | | | | | | The encryption app needs to create keys when uploading files, so the session needs to be kept open in such case.
* | | Merge pull request #7651 from owncloud/close-session-faster-masterThomas Müller2014-03-2012-8/+14
|\ \ \ | | | | | | | | Close session faster
| * \ \ Merge branch 'master' into close-session-faster-masterThomas Müller2014-03-191-44/+0
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/ajax/upgrade.php
| * | | | close the session on all file operationsThomas Müller2014-03-1013-9/+15
| | | | |
* | | | | Improve sorting performance of large lists of filesRobin Appelman2014-03-191-3/+2
| |/ / / |/| | |
* | | | drop file cache migration OC5 -> OC6Thomas Müller2014-03-181-44/+0
|/ / /
* | | Fixed log warning when deleting a single fileVincent Petry2014-03-071-1/+1
| | |
* | | don't allow to create a file or folder named 'Shared' in the root folder, ↵Bjoern Schiessle2014-03-051-1/+1
| | | | | | | | | | | | also exclude all combinations of lower and upper case letters
* | | Update rawlist to work with new fileinfo objectRobin Appelman2014-02-271-31/+28
| | |
* | | Merge pull request #6714 from owncloud/files-newfileinvalidcharsfixLukas Reschke2014-02-202-6/+12
|\ \ \ | |_|/ |/| | Added extra checks for invalid file chars in newfile.php and newfolder.php
| * | Added extra checks for invalid file chars in newfile.php and newfolder.phpVincent Petry2014-02-182-6/+12
| | | | | | | | | | | | | | | | | | | | | - added PHP utility function to check for file name validity - fixes issue where a user can create a file called ".." from the files UI - added extra checks to make sure newfile.php and newfolder.php also check for invalid characters
* | | Merge pull request #7195 from owncloud/files-selectallVincent Petry2014-02-191-1/+14
|\ \ \ | | | | | | | | Do not send file list for select all on Download/delete
| * | | Do not send file list for select all on Download/deleteVincent Petry2014-02-131-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* | | | use a FileInfo object of the directory when generting the filelistRobin Appelman2014-02-181-2/+3
| |/ / |/| |
* | | Send correct path on file upload when using public appJoas Schilling2014-02-121-4/+12
|/ / | | | | | | Fix issue #7152
* / Only add files to file list when uploading to current directoryJoas Schilling2014-02-071-2/+4
|/ | | | Fix Issue #6683
* Added error message for when target folder was removedVincent Petry2014-01-293-2/+22
| | | | | | | | | | Whent trying to upload/rename/create files in a folder that was removed or rename, the correct error message is now shown. In the case of upload of multiple files, the upload is cancelled. This situation can happen if the target folder was renamed or removed from another browser window or client.
* OC_Util::setupFS($user) will create a data dir for the given string - no ↵Thomas Müller2014-01-211-0/+1
| | | | matter if the user really exists - OCP\JSON::checkUserExists($owner); introduces a ready to use check which will bail out with an JSON error
* Fixed download file from URL error messagesVincent Petry2013-12-121-8/+20
| | | | | | | | - 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
* Files app backend now normalizes paths before rendering templatesVincent Petry2013-11-141-1/+1
| | | | | | | | Before rendering breadcrumbs or the file list, the paths are now normalized. This prevents the UI to show "." breadcrumbs in case the path contains sections with "/./" Fixes #5848
* Fixed storage stats to be based on current directoryVincent Petry2013-11-061-1/+7
| | | | | | | | 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.
* Added missing comma to make the next diff cleanerVincent Petry2013-10-311-1/+1
|
* Append file etag to preview URLsVincent Petry2013-10-282-1/+4
| | | | Fixes #5534
* Fix double not in newfile/newfolder language.Andreas Fischer2013-10-272-2/+2
|
* fix translationsJörn Friedrich Dreyer2013-10-232-10/+10
|
* cleanup array value assignmentJörn Friedrich Dreyer2013-10-231-8/+4
|
* cleanup precondition checking when creating new files / foldersJörn Friedrich Dreyer2013-10-232-19/+50
| | | | | | - use i18n - use trim when checking for empty file / folder name - use more verbose error descriptions
* use correct filename in error result jsonJörn Friedrich Dreyer2013-10-231-1/+1
|
* fixing undefined variable $newnameThomas Müller2013-10-221-1/+1
|
* prevent user from creating or renaming sth. to an existing filenameJörn Friedrich Dreyer2013-10-221-0/+15
| | | | | | | | - 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
* Fixed upload permissions distinction between public and logged in uploadVincent Petry2013-10-171-2/+7
| | | | Fixes #5370
* Fixed file permissions after public uploadVincent Petry2013-10-141-2/+2
| | | | Fixes #5328
* catch exceptions while uploading and pass on the error messageThomas Müller2013-10-081-23/+28
|
* Remove require in rawlist.phpkondou2013-10-021-4/+0
| | | | Thanks @tanghus for pointing out the unneccessity of it.
* Fix require in apps/files/ajax/rawlist.phpkondou2013-10-021-1/+1
|
* Merge branch 'master' into appframework-masterThomas Müller2013-09-255-23/+61
|\ | | | | | | | | | | Conflicts: apps/files/lib/helper.php apps/files_trashbin/lib/helper.php
| * remove unneccessary lib in namespaceJörn Friedrich Dreyer2013-09-205-10/+10
| |
| * namespaces use upcasefirst partsJörn Friedrich Dreyer2013-09-205-10/+10
| | | | | | | | | | when _ is left in namespace and files are named after their classes the autoloader will also find classes in the lib folder of an app its magic!
| * Merge branch 'master' into fix_3728_with_file_exists_dialogJörn Friedrich Dreyer2013-09-191-2/+4
| |\ | | | | | | | | | | | | Conflicts: apps/files/js/filelist.js