aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/templates/appnavigation.php
Commit message (Collapse)AuthorAgeFilesLines
* Content will come from the external appJoas Schilling2017-06-131-1/+0
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Remove useless translation and make it better on unlimitedJoas Schilling2017-06-131-5/+8
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Style quota entry in files viewJan-Christoph Borchardt2017-06-131-13/+16
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* Add quota to the files viewJoas Schilling2017-06-131-0/+13
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* filter hidden files on the web interfaceChristoph Wurst2016-04-191-3/+7
| | | | | | | | | | | | | | | | | | 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
* Consistently use rel=noreferrerLukas Reschke2016-03-201-1/+1
| | | | When linking to external entities we should consistently use rel=noreferrer
* standardize sizes for headingsJan-Christoph Borchardt2015-11-161-3/+1
|
* remove unneeded span around Settings text, fixes cursorJan-Christoph Borchardt2015-06-171-1/+1
|
* Allow files app nav entries to have a different icon classMorris Jobke2015-04-141-1/+1
|
* fix for IE8Morris Jobke2015-04-081-1/+1
|
* add icons to files sidebar, fix shade, fix position of settings icon and textJan-Christoph Borchardt2015-04-081-2/+7
|
* Fixing issue #15322 - showing Settings button next to gear iconJames Anslow2015-04-081-1/+1
|
* Move core apps from private to public functionsRoeland Jago Douma2015-04-011-1/+1
| | | | | | Apps still use OC_Helper and OC_Util functions even when public ones are already available. Sometimes the public one is even used in the same file.
* fix accessibility for deleted filesJan-Christoph Borchardt2014-12-181-2/+4
|
* use method to only visually hide elements, show only for screen readerJan-Christoph Borchardt2014-12-171-1/+1
|
* add text to Settings buttonJan-Christoph Borchardt2014-12-171-1/+3
|
* fix HTML structure by rmv. obsolete input end tagVolker E.2014-08-201-1/+1
|
* use slide toggle for files appBernhard Posselt2014-06-051-1/+1
|
* Namespacing for FileList, FileActions and trashbin appVincent Petry2014-05-151-2/+0
| | | | | | | | | | | | | | | | | - 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
* Files app navigation can now switchVincent Petry2014-05-151-2/+2
| | | | | | | | | - added new OCA.Files namespace for files classes - the sidebar can now switch between views/containers - the trashbin renders in its own container but currently doesn't work due to overrides - added app.js as entry point for JS code (ideally all other files should only contain classes and not trigger anything)
* Added navigation manager in files app for the sidebarVincent Petry2014-05-151-4/+4
| | | | | | | Apps can now register navigation items into the sidebar of the files app. For every sidebar item there is a container. The container's content is rendered based on the script name given at registration time.
* Added app navigation for files appVincent Petry2014-05-151-0/+19
- Added links to trashbin and shared dir - Moved "WebDAV" settings block to the app nav's settings section - Added sidebar support in trashbin app as well