summaryrefslogtreecommitdiffstats
path: root/apps/files/list.php
Commit message (Collapse)AuthorAgeFilesLines
* Add a public replacement for OC::$server->getCarl Schwan2022-05-101-3/+6
| | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* list.php files are only invoked via ViewController and APIControllerJoas Schilling2021-12-011-1/+1
| | | | | | | | Both of them actually check that the user is logged in before and also the list.php files themselves would break with getUserSession()->getUser()->getUID() which they contain. Signed-off-by: Joas Schilling <coding@schilljs.com>
* Remove isIE and associated legacy scriptsJohn Molakvoæ (skjnldsv)2021-11-301-2/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-041-3/+3
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* load share settings from the share manager in more placesRobin Appelman2021-05-121-1/+5
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Drop \OCP\Util::isIeChristoph Wurst2021-03-091-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update all license headers for Nextcloud 21Christoph Wurst2020-12-161-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Make sure every file ends with an empty newlineChristoph Wurst2020-04-091-1/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-051-1/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Rollback to default list viewJohn Molakvoæ (skjnldsv)2018-11-151-1/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Add grid toggle for every files viewJohn Molakvoæ (skjnldsv)2018-11-061-2/+3
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Disable grid for ieJohn Molakvoæ (skjnldsv)2018-11-051-1/+4
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Default to gridJohn Molakvoæ (skjnldsv)2018-10-181-1/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Remember toggle and events handlerJohn Molakvoæ (skjnldsv)2018-10-181-0/+3
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Remove upload_limit in files app as it is not needed with PUT upload (#26069)Vincent Petry2016-11-021-2/+0
| | | | | | | The web UI now uses for PUT uploads which aren't restricted by PHP's upload_max_filesize and post_max_size Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Fix apps/Joas Schilling2016-07-211-1/+2
|
* Add app:check-code for already compatible appsMorris Jobke2016-06-271-3/+0
| | | | | | * admin_audit, comments, federation * removed not needed call to OC_Util::checkAdminUser() (is already done by the request handler before)
* Happy new year!Thomas Müller2016-01-121-1/+1
|
* Update license headersJenkins for ownCloud2015-03-261-13/+12
|
* Revert "Updating license headers"Morris Jobke2015-02-261-11/+14
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-14/+11
|
* drop allowZIPdownload and maxZIPSize as optionsMorris Jobke2014-06-021-1/+0
|
* Fixed many issues, clean upVincent Petry2014-05-151-15/+3
| | | | | | | | | | | | | | | - fixed upload and storage statistics - fixed infinite scroll to use the correct contain for scroll detection - fixed unit test that sometimes fail for rename case - controls are now sticky again - fixed selection overlay to be aligned with the table - fixed "select all" checkbox that had id conflicts - fixed public page - fixed global actions permissions detection - fix when URL contains an invalid view id - viewer mode now hides the sidebar (ex: text editor) - added unit tests for trashbin - clean up storage info in template (most is retrieved via ajax call now)
* Namespacing for FileList, FileActions and trashbin appVincent Petry2014-05-151-0/+50
- FileList is now an instantiable class - FileActions is now in namespace - added App class for trashbin app - moved trashbin overrides into classes extending FileList - replaced many static calls with "this." or "self." to make the classes reusable/extendable - new URL parameter "view" to specify which view is shown, for example "files" or "trashbin" - added OC.Util.History utility class in core for handling history - moved URL handling/routing to OCA.Files.App - popstate will correctly update the current view and notify the view of the URL change so it can update the current dir - added JS unitt tests for the trashbin app - fixed public app to work with the new namespaces