aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/tests/controller/ViewControllerTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Move Files app to PSR-4 (#24569)Joas Schilling2016-05-121-481/+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-191-2/+4
| | | | | | | | | | | | | | | | | | 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-131-1/+21
|
* 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-121-1/+1
|
* 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.