summaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/upload.php
Commit message (Collapse)AuthorAgeFilesLines
* update licence headers via scriptMorris Jobke2015-10-051-0/+1
|
* allow ".." in folder namesIndividual IT Services2015-09-141-1/+1
| | | | ".." are valid in folder names, only ".." by itself is invalid fix for #18987
* update license headers and authorsMorris Jobke2015-06-251-1/+0
|
* Verify if path existsLukas Reschke2015-06-181-0/+4
| | | | We need to check if the path exists and throw an error instead of handling this situation ungraciously.
* Update license headersJenkins for ownCloud2015-03-261-1/+33
|
* Revert "Updating license headers"Morris Jobke2015-02-261-32/+1
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-1/+32
|
* Manually type-case all AJAX filesLukas Reschke2015-02-131-3/+3
| | | | | | This enforces proper types on POST and GET arguments where I considered it sensible. I didn't update some as I don't know what kind of values they would support :see_no_evil: Fixes https://github.com/owncloud/core/issues/14196 for core
* Get rid of `stripslashes()`Lukas Reschke2015-01-131-2/+2
| | | | This conversions are actually totally unneeded and probably left-overs from ages where the safe_mode was still a valid thing.
* Send the proper original name for uploaded filesRobin Appelman2015-01-121-2/+2
|
* show readonly message in file conflict dialog, make it always selectedJörn Friedrich Dreyer2014-12-111-6/+18
|
* Merge pull request #12421 from ↵Morris Jobke2014-11-261-3/+3
|\ | | | | | | | | owncloud/issue/6101-remove-namespace-permission-constants Issue/6101 remove namespace permission constants
| * Replace deprecated constant with new class constantJoas Schilling2014-11-251-3/+3
| |
* | we no longer need to keep the session open for encryptionBjoern Schiessle2014-11-251-6/+2
|/
* Use public api for getting l10nRobin Appelman2014-08-311-1/+1
|
* kill OC::$sessionJörn Friedrich Dreyer2014-08-291-1/+1
| | | | | | | | | | | | maintain deprecated \OC::$session when getting or setting the session via the server container or UserSession restore order os OC::$session and OC::$CLI remove unneded initialization of dummy session write back session when $useCustomSession is true log warning when deprecated app is used
* set incognitoMode to true, getUser should always return false during public ↵Bjoern Schiessle2014-08-181-1/+3
| | | | upload
* Fixed uploading by drag and drop into folderVincent Petry2014-06-191-19/+21
|
* php upload errors are written to logThomas Müller2014-05-221-1/+3
|
* 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
| |
* | Files, trashbin, public apps use ajax/JSON for the file listVincent Petry2014-04-021-26/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | 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.
* | close the session on all file operationsThomas Müller2014-03-101-0/+1
|/
* 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-291-2/+4
| | | | | | | | | | 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
* Append file etag to preview URLsVincent Petry2013-10-281-0/+2
| | | | Fixes #5534
* 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 unneccessary lib in namespaceJörn Friedrich Dreyer2013-09-201-2/+2
|
* namespaces use upcasefirst partsJörn Friedrich Dreyer2013-09-201-2/+2
| | | | | 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
| * adding comma to get cleaner diffs in the futureThomas Müller2013-09-181-1/+1
| |
| * add permissions of the file to the json responseThomas Müller2013-09-181-1/+2
| |
* | fix upload of multiple filesJörn Friedrich Dreyer2013-09-061-23/+38
| |
* | refactor replace and autorename resolution in upload.phpJörn Friedrich Dreyer2013-09-061-39/+33
| |
* | Merge branch 'master' into fix_3728_with_file_exists_dialogJörn Friedrich Dreyer2013-09-041-10/+16
|\| | | | | | | | | | | | | | | | | 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
| * backport of #4357 to masterThomas Müller2013-08-271-10/+14
| |
* | reduced complexity, added listing conflicts to dialogJörn Friedrich Dreyer2013-08-221-0/+1
| |
* | progress fixesJörn Friedrich Dreyer2013-08-161-4/+5
| |
* | fix whitespace, check selected files before starting uploadJörn Friedrich Dreyer2013-08-141-8/+31
|/
* Merge branch 'master' into fixing-3942-masterThomas Müller2013-07-061-1/+1
|\ | | | | | | | | Conflicts: apps/files/ajax/upload.php
| * proper fix for getting the shared item if no user is logged inThomas Müller2013-07-051-4/+5
| |
| * php 5.3 compliant nowThomas Müller2013-07-051-1/+2
| |
| * get the real physical folder name for anonymous uploadThomas Müller2013-07-051-2/+7
| |