aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/controller/viewcontroller.php
Commit message (Collapse)AuthorAgeFilesLines
* Move Files app to PSR-4 (#24569)Joas Schilling2016-05-121-304/+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-17/+35
| | | | 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-2/+46
| | | | | | | 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
* Merge pull request #24081 from owncloud/migrate-deprecated-jquery-v1-functionsThomas Müller2016-04-201-1/+0
|\ | | | | migrate deprecated jQuery 1.x functions
| * replace $.parseJSON() by JSON.parse()Christoph Wurst2016-04-191-1/+0
| |
* | filter hidden files on the web interfaceChristoph Wurst2016-04-191-0/+3
|/ | | | | | | | | | | | | | | | | | 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/+1
|
* persist file sorting changesChristoph Wurst2016-04-131-3/+11
|
* load file sorting mode from the dbChristoph Wurst2016-04-131-0/+1
|
* Happy new year!Thomas Müller2016-01-121-1/+2
|
* Allow framing 'self'Lukas Reschke2015-12-021-1/+7
| | | | 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.
* Fix js file load orderThomas Müller2015-11-221-2/+2
|
* Move index.php from files to AppFrameworkLukas Reschke2015-11-161-0/+224
1. Allows it to use the more secure CSP rules of the AppFramework. 2. Adds some unit tests.