summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-282-4/+8
|
* Update license headersLukas Reschke2015-10-268-8/+8
|
* Throw exception on `getPath` if file does not existLukas Reschke2015-10-251-2/+12
| | | | | | | | | | Currently the `getPath` methods returned `NULL` in case when a file with the specified ID does not exist. This however mandates that developers are checking for the `NULL` case and if they do not the door for bugs with all kind of impact is widely opened. This is especially harmful if used in context with Views where the final result is limited based on the result of `getPath`, if `getPath` returns `NULL` PHP type juggles this to an empty string resulting in all possible kind of bugs. While one could argue that this is a misusage of the API the fact is that it is very often misused and an exception will trigger an immediate stop of execution as well as log this behaviour and show a pretty error page. I also adjusted some usages where I believe that we need to catch these errors, in most cases this is though simply an error that should hard-fail.
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-232-4/+6
|
* Merge pull request #17641 from owncloud/fix_objectstore_renameJörn Friedrich Dreyer2015-10-192-15/+20
|\ | | | | don't move files in cache twice, fixes renaming for objectstores
| * Fix listing of trash files in testRobin Appelman2015-10-161-0/+2
| |
| * Fix trashbin handling of unknown/unlimited free spaceRobin Appelman2015-10-161-2/+3
| |
| * dont assume home storage is local in trash testRobin Appelman2015-10-161-13/+15
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-192-22/+26
| |
* | Increase the 2nd digit of shipped appsJoas Schilling2015-10-172-2/+4
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-172-0/+4
|/
* Merge pull request #19647 from owncloud/trashbin-removesidebarThomas Müller2015-10-141-1/+2
|\ | | | | Remove sidebar for trashbin view
| * Remove sidebar for trashbin viewVincent Petry2015-10-081-1/+2
| |
* | Merge pull request #19714 from owncloud/trash-deletesectionposition-2Thomas Müller2015-10-141-0/+18
|\ \ | | | | | | Revert "Revert "Move trashbin specific CSS that modifies sidebar""
| * | Revert "Revert "Move trashbin specific CSS that modifies sidebar""Thomas Müller2015-10-121-0/+18
| | | | | | | | | | | | This reverts commit 0738ddfb768c541e8a6b112fb2cd12d15676a0ab.
* | | Merge pull request #19701 from owncloud/trash-restoreactioninlineThomas Müller2015-10-141-13/+21
|\ \ \ | | | | | | | | Make trashbin's "Restore" an inline action
| * | | Make trashbin's "Restore" an inline actionVincent Petry2015-10-121-13/+21
| | |/ | |/|
* | | [tx-robot] updated from transifexJenkins for ownCloud2015-10-142-4/+4
| |/ |/|
* | Revert "Move trashbin specific CSS that modifies sidebar"Thomas Müller2015-10-121-18/+0
| |
* | Move trashbin specific CSS that modifies sidebarVincent Petry2015-10-121-0/+18
|/ | | | | Only when trashbin is enabled, its sidebar nav element must be fixed at the bottom.
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-072-0/+12
|
* update licence headers via scriptMorris Jobke2015-10-0517-4/+14
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-036-10/+30
|
* Merge pull request #19500 from owncloud/fix_trash_with_encryption2Thomas Müller2015-10-022-18/+26
|\ | | | | [trashbin] fix broken versions on restore
| * first copy to owner and then move to current user because the encryptionBjoern Schiessle2015-10-012-18/+26
| | | | | | | | wrapper always expect to work on the owner storage
* | display checkboxes properly after file restoreHendrik Leppelsack2015-10-011-2/+2
|/
* Change small thumbnails to 32 pxMorris Jobke2015-09-301-1/+1
| | | | | * fixes #16913 * fixes issues in IE8 where the thumbnail is too big
* fix checkbox in trashbinHendrik Leppelsack2015-09-281-1/+1
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-09-282-4/+4
|
* Add the method to the mockJoas Schilling2015-09-251-0/+1
|
* Replaces if ($file === '.' || $file === '..') by ↵Martin2015-09-221-1/+1
| | | | if(\OC\Files\Filesystem::isIgnoredDir($file)). Eases to find where this operation is used.
* Properly translate file actionsVincent Petry2015-09-221-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
* Log deleted filesVictor Dubiniuk2015-09-161-0/+4
|
* Add PHPDocLukas Reschke2015-09-162-2/+16
|
* Updates according to reviewVictor Dubiniuk2015-09-162-11/+23
|
* Fix testsVictor Dubiniuk2015-09-161-3/+6
|
* Add expiration cronjobVictor Dubiniuk2015-09-168-1/+212
|
* Remove languages which are no longer maintained on transifexThomas Müller2015-08-2610-70/+0
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-08-262-0/+22
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-08-254-2/+6
|
* Fix trashbin sidebarVincent Petry2015-08-252-0/+30
| | | | | Do not display size as it is not available. Use display name instead of name to remove the ".d123456" suffix.
* Merge pull request #18065 from owncloud/new-trashbin-retentionThomas Müller2015-08-126-34/+400
|\ | | | | New trashbin retention
| * Fix testsVictor Dubiniuk2015-08-101-7/+1
| |
| * Migrate settingsVictor Dubiniuk2015-08-103-20/+93
| |
| * Enhance trashbin expiration settingsVictor Dubiniuk2015-08-105-26/+325
| |
* | Merge pull request #17709 from owncloud/fileactions-dropdownJan-Christoph Borchardt2015-08-111-1/+0
|\ \ | | | | | | Move file actions to dropdown
| * | Implement file actions dropdownVincent Petry2015-08-101-1/+0
| | | | | | | | | | | | | | | | | | File actions now have two types "inline" and "dropdown". The default is "dropdown". The file actions will now be shown in a dropdown menu.
* | | Merge pull request #18175 from owncloud/automatic-db-prefix-query-builderThomas Müller2015-08-102-2/+2
|\ \ \ | |_|/ |/| | Automatic db prefix query builder
| * | Remove unnecessary DB prefixes from existing query builder usagesJoas Schilling2015-08-102-2/+2
| |/