summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/lib/helper.php
Commit message (Collapse)AuthorAgeFilesLines
* Move files_trashbin to PSR-4 (#24570)Joas Schilling2016-05-121-121/+0
|
* use the cache for trash listingRobin Appelman2016-05-031-46/+38
|
* Merge pull request #21544 from owncloud/trashbin-permissionsThomas Müller2016-01-151-0/+3
|\ | | | | set etag and permission fields for trashbin entries
| * set etag and permission fields for trashbin entriesRobin Appelman2016-01-081-0/+3
| |
* | Happy new year!Thomas Müller2016-01-121-3/+3
|/
* Use proper public API for OC_Helper::getFileNameMimeTypeMorris Jobke2015-12-171-1/+1
|
* Update license headersLukas Reschke2015-10-261-1/+1
|
* update licence headers via scriptMorris Jobke2015-10-051-0/+1
|
* make sure to add the correct file size to the file info, otherwise we will ↵Bjoern Schiessle2015-09-211-0/+4
| | | | not show the preview for every filetype
* Set proper mimetype for directoriesRoeland Jago Douma2015-08-051-1/+1
|
* update license headers and authorsMorris Jobke2015-06-251-1/+0
|
* removing encryption preview checkClark Tomlinson2015-05-181-3/+0
|
* fix references to legacy encryption app nameClark Tomlinson2015-05-181-1/+1
|
* Update license headersJenkins for ownCloud2015-03-261-1/+25
|
* Revert "Updating license headers"Morris Jobke2015-02-261-24/+1
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-1/+24
|
* Add getMountPoint to FileInfoRobin Appelman2014-12-171-2/+4
|
* Replace deprecated constant with new class constantJoas Schilling2014-11-251-1/+1
|
* Show original path information in trashbin and sharing viewsRobin McCorkell2014-09-111-0/+11
| | | | Path will only be shown if in subdirectory, not in root.
* make sure that we always use the right userBjoern Schiessle2014-06-181-2/+2
|
* Fixed trashbin to use correct classVincent Petry2014-05-151-1/+1
| | | | | It seems that \OC_Filesystemview has been removed. Now using the correct class \OC\Files\View()
* Add sorting to files list, trashbin and public filesVincent Petry2014-04-281-3/+7
|
* Files, trashbin, public apps use ajax/JSON for the file listVincent Petry2014-04-021-57/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Improve sorting performance of large lists of filesRobin Appelman2014-03-191-2/+6
|
* fix mimetype detection, introduce fake etag to identify preview imagesBjoern Schiessle2014-03-101-1/+2
|
* only enable previews if the encryption is disabledBjoern Schiessle2014-03-101-1/+5
|
* if file is not in db, fall back to restore file to the users rootBjoern Schiessle2014-03-101-24/+31
|
* make it possible to select foldersBjoern Schiessle2013-12-021-0/+2
|
* Merge branch 'master' into appframework-masterThomas Müller2013-09-251-3/+3
|\ | | | | | | | | | | Conflicts: apps/files/lib/helper.php apps/files_trashbin/lib/helper.php
| * remove unneccessary lib in namespaceJörn Friedrich Dreyer2013-09-201-2/+2
| |
| * 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!
* | use \OC::$server->getPreviewManager() instead of \OCP\PreviewThomas Müller2013-09-171-1/+1
|/
* Ajax calls for "files" and "files_trashbin" appsVincent Petry2013-09-131-0/+97
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