summaryrefslogtreecommitdiffstats
path: root/apps/files/appinfo
Commit message (Collapse)AuthorAgeFilesLines
* Fix info.xml files of shipped appsJoas Schilling2018-02-161-23/+27
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Use ::class statement instead of stringMorris Jobke2018-01-291-1/+4
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Bump appsRoeland Jago Douma2018-01-141-2/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #7056 from ↵blizzz2017-11-101-0/+2
|\ | | | | | | | | nextcloud/oc-28415-enable-chunking-in-authenticated-web-upload [oc] Enable chunking for bigger files in authenticated web upload
| * Enable chunking for bigger files in authenticated web uploadVincent Petry2017-11-031-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds chunked uploads in the Web UI (for authenticated users, but not for public uploads). To do that the server endpoint used by the uploader is changed from WebDAV v1 to WebDAV v2. The chunking itself is done automatically by the jQuery-File-Upload plugin when the "maxChunkSize" parameter is set; in "fileuploadchunksend" the request is adjusted to adapt the behaviour of the plugin to the one expected by "uploads/" in WebDAV v2. The chunk size to be used by the Web UI can be set in the "max_chunk_size" parameter of the Files app configuration. By default it is set to 10MiB. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Update license headersMorris Jobke2017-11-062-2/+1
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Split multi-author entriesJoas Schilling2017-05-221-1/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Bump app versions as wellJoas Schilling2017-05-221-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Adjust version requirementJoas Schilling2017-05-221-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Remove update.php of files appMorris Jobke2017-04-121-98/+0
| | | | | | * contains only update steps for 8.1/8.2 to 9.0 update Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Allow multiple navigation links from info.xmlJoas Schilling2017-03-261-5/+7
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add files:scanAppData commandRoeland Jago Douma2017-03-221-1/+2
| | | | | | | | Fixes https://github.com/nextcloud/server/issues/3041 Add a dedicated command to scan the special appdata dir Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge some CSS files using our SCSS compilerLukas Reschke2017-03-211-1/+1
| | | | | | This saves around 4 requests on the average page load. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Force to specify the nameJoas Schilling2017-01-271-0/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add navigation via info.xml (#26785)Thomas Müller2016-12-222-12/+8
| | | | | | | | | | * Read navigation information from info.xml * Load files navigation elements from info.xml * Add comment about ignoring the exception Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Update app versions and requirementsJoas Schilling2016-12-131-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add an activity when managing favoritesJoas Schilling2016-12-041-0/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Remove the old activity extensionJoas Schilling2016-11-161-10/+0
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Provider for the files appJoas Schilling2016-11-161-0/+4
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Register the settings of the files app via info.xmlJoas Schilling2016-11-161-0/+8
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Move the favorites filter to IFilterJoas Schilling2016-11-162-3/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Move files filter to IFilterJoas Schilling2016-11-161-0/+6
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Use 11.0 instead 9.2Lukas Reschke2016-11-151-1/+1
| | | | | | As discussed we're changing the version from 9.2 to 11.0 to make some more sense. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Use Webdav PUT for uploads in the web browserVincent Petry2016-10-241-12/+0
| | | | | | | | | | | | | | - uses PUT method with jquery.fileupload for regular and public file lists - for IE and browsers that don't support it, use POST with iframe transport - implemented Sabre plugin to handle iframe transport and redirect the embedded PUT request to the proper handler - added RFC5995 POST to file collection with "add-member" property to make it possible to auto-rename conflicting file names - remove obsolete ajax/upload.php and obsolete ajax routes Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Make it possible to filter by tags with REPORT methodVincent Petry2016-10-191-6/+0
| | | | | | | | | | | Enhanced the REPORT method on the Webdav endpoint and added a "oc:favorite" filter rule. When set, it will return a flat list of results filtered with only favorite files. The web UI was also adjusted to use this REPORT method instead of the private API endpoint. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [9.2] Register commands in info.xml (#26248)Thomas Müller2016-10-112-34/+6
| | | | | | | | | | | | * Use DI to load console commands from the apps - class name to be defined in the info.xml * Load commands from info.xml * Fix unit test * Allow Di magic for IMountManager Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Do not error on maxUploadChangeRoeland Jago Douma2016-08-221-0/+5
| | | | | | | | | | The new admin page broke the updating of the max upload size. This is due to very old code there. * Now update is done in the background using js * Added proper route+controller to update Fixes #994
* move mail settings and file handling to additional ones, thus files_external ↵Arthur Schiwon2016-08-131-1/+0
| | | | gets its own section
* adjust files app, and integrate files_external into that sectionArthur Schiwon2016-08-112-3/+6
|
* Merge pull request #292 from nextcloud/recent-filesWilliam Bargent2016-07-252-2/+17
|\ | | | | Add "Recent" file listing
| * Add recent file listingRobin Appelman2016-07-221-2/+12
| |
| * add recent files api endpointRobin Appelman2016-07-221-0/+5
| |
* | Also increase the min versionJoas Schilling2016-07-221-1/+1
| |
* | bumb compatible app versions for core appsRobin Appelman2016-07-221-1/+1
|/
* Merge pull request #500 from nextcloud/bump_versionJoas Schilling2016-07-221-1/+1
|\ | | | | Bump version
| * Increase app versionsJoas Schilling2016-07-211-1/+1
| |
* | Update with robinJoas Schilling2016-07-211-1/+1
| |
* | Fix apps/Joas Schilling2016-07-214-8/+12
|/
* Update license headersLukas Reschke2016-05-264-8/+7
|
* Move Files app to PSR-4 (#24569)Joas Schilling2016-05-121-94/+0
| | | | | | * Move lib/ of Files app to PSR-4 * Move tests to PSR-4
* Background jobs from info.xml (#24582)Joas Schilling2016-05-123-32/+6
| | | | | | | | | | | | | | * Move background job registration of Federation to info.xml * Move background registration of Files app to info.xml * Move background job registration of files_sharing to info.xml * Move background job registration of files_trashbin to info.xml * Move background job registration of files_versions to info.xml * Move background job registration from user_ldap to info.xml
* Make permalinks work for trashed files (#24537)Vincent Petry2016-05-111-1/+2
| | | | 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-0/+15
| | | | | | | 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-0/+5
| | | | | | | | | | | | | | | | | | 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
* persist file sorting changesChristoph Wurst2016-04-132-1/+8
|
* Use proper shortcut methods in templatesMorris Jobke2016-04-061-1/+1
|
* Inject the Mount ManagerJoas Schilling2016-04-041-1/+2
|
* Display share status info in favorite listVincent Petry2016-03-171-1/+3
| | | | Returns the shareTypes share status info to the favorites file list.
* apps/files: Fix typos in comments (found and fixed by codespell)Stefan Weil2016-03-091-1/+1
| | | | | | This contribution is AGPL and MIT licensed. Signed-off-by: Stefan Weil <sw@weilnetz.de>
* Run cleanup of expired DB file locks to background jobMorris Jobke2016-03-043-1/+3
| | | | | | | | | | | | | * fixes #22819 The old way fired a DELETE statement on each destruction of the DBLockingProvider. Which could cause a lot of queries. It's enough to run this every 5 minutes in a background job, which in the end could result in file locks that exists 5 minutes longer - in the worst case and for not properly released locks. This makes the DB based locking a lot more performant and could result in a similar performance to the Redis based locking provider.