summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
Commit message (Collapse)AuthorAgeFilesLines
* Files, trashbin, public apps use ajax/JSON for the file listVincent Petry2014-04-0212-333/+187
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #7872 from owncloud/trash-disablestoragestatsBjörn Schießle2014-03-281-0/+5
|\ | | | | Do not retrieve storage stats for trash bin
| * Do not retrieve storage stats for trash binVincent Petry2014-03-281-0/+5
| |
* | Merge pull request #7107 from owncloud/load-apps-proper-masterThomas Müller2014-03-281-6/+0
|\ \ | | | | | | Load apps proper master
| * \ Merge branch 'master' into load-apps-proper-masterThomas Müller2014-03-2166-251/+334
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/ajax/rawlist.php cron.php ocs/v1.php
| * | | remove superfluous $RUNTIME_APPTYPESThomas Müller2014-02-061-6/+0
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-03-271-0/+1
| |_|/ |/| |
* | | Merge pull request #7768 from owncloud/trashempty-nocacheicewind19912014-03-241-17/+26
|\ \ \ | |_|/ |/| | Use a more efficient way to determine that the trashbin is empty that doesn't rely on the cache
| * | catch the case where files_trashbin/files doesn't existRobin Appelman2014-03-241-1/+4
| | |
| * | More robust way to check if the folder is emptyRobin Appelman2014-03-171-3/+6
| | |
| * | Use a more efficient way to determine that the trashbin is empty that ↵Robin Appelman2014-03-171-20/+23
| | | | | | | | | | | | doesn't rely on the cache
* | | Improve sorting performance of large lists of filesRobin Appelman2014-03-191-2/+6
|/ /
* | [tx-robot] updated from transifexJenkins for ownCloud2014-03-131-0/+15
| |
* | Merge pull request #7668 from owncloud/trashbin_predeleteVincent Petry2014-03-121-0/+1
|\ \ | | | | | | add preDelete hook for files_trashbin app
| * | add preDelete hook for files_trashbin appGeorg Ehrke2014-03-111-0/+1
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-03-1249-0/+49
|/ /
* | [tx-robot] updated from transifexJenkins for ownCloud2014-03-118-6/+21
| |
* | fix mimetype detection, introduce fake etag to identify preview imagesBjoern Schiessle2014-03-101-1/+2
| |
* | get trash size from file cacheBjoern Schiessle2014-03-104-77/+10
| |
* | 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-104-72/+62
| |
* | Fixed trashbin titleVincent Petry2014-02-201-1/+31
| |
* | Merge pull request #7195 from owncloud/files-selectallVincent Petry2014-02-193-79/+109
|\ \ | | | | | | Do not send file list for select all on Download/delete
| * | Trashbin select all now doesn't send file listVincent Petry2014-02-173-79/+109
| |/ | | | | | | | | | | | | | | - Fixed "delete" and "restore" actions to not send the file list when all files are selected - When some files are selected, sends the current dir - Removed "dirListing" attribute as the backend is able to compute the value based on the current dir
* | Merge branch 'master' into scrutinizer_documentation_patchesThomas Müller2014-02-181-1/+1
|\ \ | | | | | | | | | | | | Conflicts: lib/private/migration/content.php
| * \ Merge pull request #7190 from owncloud/appconfig-legacy-appsThomas Müller2014-02-181-1/+1
| |\ \ | | | | | | | | Remove usage of legacy OC_Appconfig
| | * | Remove usage of legacy OC_AppconfigRobin Appelman2014-02-131-1/+1
| | |/
* | | Merge branch 'master' into scrutinizer_documentation_patchesThomas Müller2014-02-142-2/+2
|\| | | | | | | | | | | | | | Conflicts: lib/private/appconfig.php
| * | Merge pull request #6726 from owncloud/fix_6630Vincent Petry2014-02-142-2/+2
| |\ \ | | |/ | |/| don't urldecode get var, php does this automatically
| | * Fixed double file encoding for previewsVincent Petry2014-01-301-1/+1
| | |
| | * don't urldecode get var, php does this automaticallyGeorg Ehrke2014-01-301-1/+1
| | |
* | | polish documentation based on scrutinizer patchesJörn Friedrich Dreyer2014-02-061-11/+22
|/ /
* / Fixed image preview in trashbin subdirsVincent Petry2014-01-301-2/+12
|/
* increase size of mimetype columnBjoern Schiessle2014-01-232-9/+9
|
* When reading the size of "files" mountpoints need to be excludedVincent Petry2014-01-201-1/+1
| | | | | | | | | | | The versions and trashbin app are now passing "includeMountPoints=false" to "getFileInfo()" to make sure that the calculated total size doesn't include mount points like Shared or external storage. This is because the default call (legacy) used to return the size of mount points as well. Fixes #6731
* remove old codeBjoern Schiessle2014-01-151-3/+0
|
* copy files to owner trash recursivelyBjoern Schiessle2014-01-151-3/+6
|
* remove ru_RU - it has bee removed from transifexThomas Müller2014-01-131-6/+0
|
* Fixed various file name escaping issues in core appsVincent Petry2014-01-101-7/+7
| | | | | | | - 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
* Merge pull request #6290 from owncloud/files-androidcontentdispositionThomas Müller2014-01-071-51/+0
|\ | | | | Files androidcontentdisposition
| * Moved content disposition code+workarounds to OCP\ResponseVincent Petry2013-12-101-51/+0
| | | | | | | | | | | | | | | | | | Added new OC\Response API called setContentDispositionHeader() that contains the needed workarounds for UTF8 and IE. Refactored download code to use the new API. Removed unused trashbin download file.
* | [tx-robot] updated from transifexJenkins for ownCloud2014-01-071-2/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-01-061-2/+1
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-01-051-2/+1
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-01-021-2/+10
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2013-12-291-4/+4
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2013-12-191-0/+1
| |
* | always show 'Deleted Files' breadcrumbBjoern Schiessle2013-12-131-4/+4
| |
* | toggle select all checkboxBjoern Schiessle2013-12-121-0/+8
|/
* config switch to disable auto expire for the trash binBjoern Schiessle2013-12-041-1/+6
|