aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/list.php
Commit message (Collapse)AuthorAgeFilesLines
* Replace hardcoded status headers with calls to http_response_code()Morris Jobke2018-06-261-1/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Move calls to \OCP\JSON to private \OC_JSONRoeland Jago Douma2018-03-221-5/+5
| | | | | | They should be properly fixed at some point. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Remove deprecated URL functions for OCP\UtilRoeland Jago Douma2018-03-131-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Use proper method to log exceptionsMorris Jobke2018-03-121-3/+3
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Use ::class statement instead of stringMorris Jobke2018-01-291-3/+7
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* share api expanded by tags (#26583)Michael Jobst2017-04-111-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | * share api expanded by tags * Modified files_sharing JS Unit tests * modified tests. renamed request parameter. refactoring * Update Share20OCS.php Added missing function description * Update Helper.php Added missing function description * Update Helper.php implicit boolean conversion to !empty() * Update Share20OCSTest.php Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Storage 503 message improvementsVincent Petry2016-10-241-5/+5
| | | | | "Storage not available" is now "Storage temporarily not available". Exceptions are now logged in DEBUG level, not FATAL.
* Update with robinJoas Schilling2016-07-211-1/+1
|
* Fix apps/Joas Schilling2016-07-211-1/+2
|
* Update license headersLukas Reschke2016-05-261-1/+1
|
* Happy new year!Thomas Müller2016-01-121-1/+1
|
* update licence headers via scriptMorris Jobke2015-10-051-1/+0
|
* fix filepickerMorris Jobke2015-04-131-2/+24
| | | | | | * add ability to filter for mimetype * fixes #15526 * fixes #11563
* Update license headersJenkins for ownCloud2015-03-261-1/+24
|
* Revert "Updating license headers"Morris Jobke2015-02-261-23/+1
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-1/+23
|
* Manually type-case all AJAX filesLukas Reschke2015-02-131-2/+2
| | | | | | 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
* Only populate tags in main file listVincent Petry2014-12-181-0/+1
| | | | | | Moved populateTags to be done on the main file list. This prevents the public file list to go through the same code and cause an error when there is no user.
* log exceptions when listing filesJörn Friedrich Dreyer2014-10-081-0/+3
|
* 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
* More error catching in list.phpRobin Appelman2014-07-011-7/+22
|
* Handle StorageNotAvailableException in ajax/list.phpRobin Appelman2014-06-301-27/+37
|
* Add sorting to files list, trashbin and public filesVincent Petry2014-04-281-1/+4
|
* 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-021-18/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 branch 'master' into load-apps-proper-masterThomas Müller2014-03-211-2/+4
|\ | | | | | | | | | | | | Conflicts: apps/files/ajax/rawlist.php cron.php ocs/v1.php
| * close the session on all file operationsThomas Müller2014-03-101-0/+1
| |
| * use a FileInfo object of the directory when generting the filelistRobin Appelman2014-02-181-2/+3
| |
* | remove superfluous $RUNTIME_APPTYPESThomas Müller2014-02-061-6/+0
|/
* 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
* remove unneccessary lib in namespaceJörn Friedrich Dreyer2013-09-201-3/+3
|
* namespaces use upcasefirst partsJörn Friedrich Dreyer2013-09-201-3/+3
| | | | | 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!
* Fixed ajax support to also update the current dir permissionsVincent Petry2013-09-131-0/+4
|
* Ajax calls for "files" and "files_trashbin" appsVincent Petry2013-09-131-20/+18
| | | | | | | | | | | | | Frontend: - The files app list now uses ajax calls to refresh the list. - Added support the browser back button (history API). - Added mask + spinner while loading file list Backend: - Added utility function in core JS for parsing query strings. - Moved file list + breadcrumb template data code to helper functions - Fixed some file paths in trashbin app to be similar to the files app
* adding calls to \OCA\files\lib\Helper::determineIcon($i) in files, trashbin ↵Thomas Müller2013-09-121-0/+1
| | | | and sharing
* Fix spacing of all touched lines.Andreas Fischer2013-08-171-1/+1
|
* Compare result are already true/falseBart Visscher2013-08-171-1/+1
|
* merge master into filesystemRobin Appelman2012-11-231-1/+1
|\
| * Do the url encoding once, only in breadcrumbs templateBart Visscher2012-11-161-1/+1
| | | | | | | | fixes issue #438
* | move some stuff to the new apiRobin Appelman2012-10-261-1/+1
|/
* adding space between) and {Thomas Mueller2012-09-071-2/+2
|
* Whitespace fixes in appsBart Visscher2012-08-291-2/+2
|
* apply coding styleThomas Mueller2012-08-291-2/+2
|
* remove superfluous ?> at the end of .php files (left out apps/*/templates)Jörn Friedrich Dreyer2012-07-091-2/+0
|
* Make some apps compatibleLukas Reschke2012-06-111-1/+1
|
* removing executable bit - againThomas Mueller2012-05-151-0/+0
|
* ported the oc_template classFrank Karlitschek2012-05-061-2/+2
|
* ported oc_jsonFrank Karlitschek2012-05-031-2/+2
|
* some more portingFrank Karlitschek2012-05-011-1/+1
|