aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/tests/controller
Commit message (Collapse)AuthorAgeFilesLines
* Move Files app to PSR-4 (#24569)Joas Schilling2016-05-122-880/+0
| | | | | | * Move lib/ of Files app to PSR-4 * Move tests to PSR-4
* Make permalinks work for trashed files (#24537)Vincent Petry2016-05-111-12/+102
| | | | Opening a permalink that points to a trashed file will now display the file within the "Deleted Files" section in the files web UI.
* Add route to resolve fileid to files app URLVincent Petry2016-05-061-1/+102
| | | | | | | The following routes will redirect to the files app and display the matching folder. If the fileid is a file, it will scroll to it. - http://localhost/owncloud/index.php/f/$fileid - http://localhost/owncloud/index.php/files/?dir=somedir&fileid=$fileid
* filter hidden files on the web interfaceChristoph Wurst2016-04-192-2/+18
| | | | | | | | | | | | | | | | | | add checkbox to toggle show/hide hidden files persist show hidden setting fix settings menu layout test ApiController::showHiddenFiles don't show hidden files by default Store config in Backbone model and inject it into FileList Filter files only temporarily when rending the file list Fix file rename validation
* fix default value, update js/php testsChristoph Wurst2016-04-132-5/+72
|
* Display share status info in favorite listVincent Petry2016-03-171-3/+53
| | | | Returns the shareTypes share status info to the favorites file list.
* Update author informationLukas Reschke2016-03-011-0/+2
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Move the tag filter at the end for nowJoas Schilling2016-02-261-25/+25
|
* Fix unit tests for system tag filter sectionVincent Petry2016-02-091-6/+19
|
* Happy new year!Thomas Müller2016-01-122-2/+3
|
* Compute share permissions in the viewVincent Petry2015-12-081-3/+6
| | | | | The share permissions are now computed in the View/FileInfo instead of storing them directly/permanently on the storage
* Allow framing 'self'Lukas Reschke2015-12-021-0/+3
| | | | This is required by the pdf viewer, since the files app on master uses the AppFramework it had applied the more strict defaults which made it not work on master.
* Move index.php from files to AppFrameworkLukas Reschke2015-11-161-0/+250
| | | | | 1. Allows it to use the more secure CSP rules of the AppFramework. 2. Adds some unit tests.
* Update license headersLukas Reschke2015-10-261-2/+1
|
* Do not calculate non essential infoRoeland Jago Douma2015-10-131-6/+0
| | | | | | | | | | | | | There is no need to calculate a human readable date on the server side. We supply the mtime and a client can easily convert that himself if needed. This is already done most of the time since the date is often not in the exact right format. There is also no need to attach icon info. We have that available in javascript. And else the client should get the right icon based on the mimetype for its platform. * Updated tests
* update license headers and authorsMorris Jobke2015-06-251-0/+1
|
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-05-191-1/+0
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* Remove server timezone dependency from files list testJoas Schilling2015-04-071-3/+3
|
* Update license headersJenkins for ownCloud2015-03-261-4/+19
|
* No longer directly output OC_Image for thumbnailsRoeland Jago Douma2015-03-241-1/+34
| | | | | | * Only use public interfaces - Injected IPreview * Added unit tests
* Revert "Updating license headers"Morris Jobke2015-02-261-17/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-5/+17
|
* Check if the offset exists before accessingLukas Reschke2015-02-171-0/+243
This checks if the offset exists before accessing it and also adds unit tests to this function which would have catched this before :see_no_evil: Fixes https://github.com/owncloud/core/issues/14277