summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/templates
Commit message (Collapse)AuthorAgeFilesLines
* Add grid toggle for every files viewJohn Molakvoæ (skjnldsv)2018-11-061-1/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Use grid view in other file views tooJan-Christoph Borchardt2018-10-181-1/+1
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* Added a new action menu in files and trash list.Abijeet2018-06-181-13/+3
| | | | | | | | Uses the new file-multi-select-menu component. Towards #7647 Signed-off-by: Abijeet <abijeetpatro@gmail.com>
* Fixes the delete icon not appearing on certain resolutions.Abijeet2018-01-021-0/+4
| | | | | | | | Fixes #7539 Also fixes overlap of text on mobile devices by resorting to just icons on lower resolutions. Signed-off-by: Abijeet <abijeetpatro@gmail.com>
* Move checkboxes to their own columnDaniel Calviño Sánchez2017-10-191-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | The selection column is not only a visual column, but also a real column of the file list table. Unlike other columns whose width is reduced in space constrained screens the selection column must stay the same so the tapping area is large enough to be easily usable The selection column does not appear in the search results table, so its contents have to be explicitly aligned with those of the main table based on whether the main table has a selection column or not (using the "has-selection" CSS class in the same way as the "has-favorite" CSS class was being used when there was a column for favorite actions). In the tests the ":visible" selector can no longer be used. That selector matches elements with a width or height that is greater than zero, but the dimensions calculated in the unit tests are not reliable; the width of the link was zero before these changes, and now moving the checkbox to its own column causes the height of the link to become zero too, so it no longer matches the ":visible" selector even if it is not hidden. As hidding and showing the link is based on its "display" CSS property its value is the one checked now. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Move away from OC_L10NRoeland Jago Douma2016-10-281-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Make more action icons themable + style fixesVincent Petry2016-02-251-6/+4
| | | | | Action icons now appear properly in public link page. More actions are now CSS icons.
* Remove OC_Helper::imagePath and use the proper public interfaceMorris Jobke2016-01-241-2/+2
|
* fix checkbox in trashbinHendrik Leppelsack2015-09-281-1/+1
|
* use class for no results div instead of id. the elements are not unique.Jörn Friedrich Dreyer2015-01-061-1/+1
|
* filter trashbin and share viewsJörn Friedrich Dreyer2015-01-051-0/+6
|
* fix accessibility for deleted filesJan-Christoph Borchardt2014-12-181-3/+5
|
* apply empty state for 'Deleted files'Jan-Christoph Borchardt2014-12-171-1/+5
|
* Fixed many issues, clean upVincent Petry2014-05-151-2/+2
| | | | | | | | | | | | | | | - 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/+2
| | | | | | | | | | | | | | | | | - 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
* Added navigation manager in files app for the sidebarVincent Petry2014-05-151-7/+0
| | | | | | | 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/+3
| | | | | | - 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
* html input tag has no closing tagThomas Müller2014-04-281-2/+3
|
* Add sorting to files list, trashbin and public filesVincent Petry2014-04-281-8/+8
|
* Fix trashbin previews and "delete selected"Vincent Petry2014-04-281-1/+1
|
* Fix file summary to use the whole file listVincent Petry2014-04-281-0/+2
| | | | | | - moved the summary code into a new class FileSummary - FileSummary is calculated only once, then updated with add/remove - added new OC.Util namespace for JS utility functions
* Disable sharing in trashbin appVincent Petry2014-04-081-0/+1
|
* Files, trashbin, public apps use ajax/JSON for the file listVincent Petry2014-04-023-104/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Files app: - removed file list template, now rendering list from JSON response - FileList.addFile/addDir is now FileList.add() and takes a JS map with all required arguments instead of having a long number of function arguments - added unit tests for many FileList operations - fixed newfile.php, newfolder.php and rename.php to return the file's full JSON on success - removed obsolete/unused undo code - removed download_url / loading options, now using Files.getDownloadUrl() for that - server side now uses Helper::getFileInfo() to prepare file JSON response - previews are now client-side only Breadcrumbs are now JS only: - Added BreadCrumb class to handle breadcrumb rendering and events - Added unit test for BreadCrumb class - Moved all relevant JS functions to the BreadCrumb class Public page now uses ajax to load the file list: - Added Helper class in sharing app to make it easier to authenticate and retrieve the file's real path - Added ajax/list.php to retrieve the file list - Fixed FileActions and FileList to work with the ajax list Core: - Fixed file picker dialog to use the same list format as files app
* always show 'Deleted Files' breadcrumbBjoern Schiessle2013-12-131-4/+4
|
* make it possible to select foldersBjoern Schiessle2013-12-021-5/+8
|
* Deleting all files in trash now only sends a single flagVincent Petry2013-11-111-3/+1
| | | | | | | | To prevent having to send the list of all files for deletion, only set a flag "allfiles". This should make it a bit smoother when deleting 5000+ files. Also fixes some "empty trash" message issues.
* Moved IE8 inline styles in files.cssVincent Petry2013-10-111-1/+0
|
* Fixed delete icon alignment in IE8Vincent Petry2013-10-111-1/+1
| | | | | Removed old inline CSS that forced every td to have position:static in the files app. (#5056)
* fix trashbin layoutBjoern Schiessle2013-10-091-0/+3
|
* Fixed files_trashbin to also use hash URL part for IE8Vincent Petry2013-09-131-1/+2
|
* Ajax calls for "files" and "files_trashbin" appsVincent Petry2013-09-133-4/+6
| | | | | | | | | | | | | Frontend: - The files app list now uses ajax calls to refresh the list. - Added support the browser back button (history API). - Added mask + spinner while loading file list Backend: - Added utility function in core JS for parsing query strings. - Moved file list + breadcrumb template data code to helper functions - Fixed some file paths in trashbin app to be similar to the files app
* rename emptyfolder to emptycontentAlessandro Cosentino2013-08-311-1/+1
|
* move isMimeSupported out of template filesGeorg Ehrke2013-08-211-2/+6
|
* fix merge conflictsGeorg Ehrke2013-08-053-7/+7
|\
| * Use !== and === in files_trashbin-appkondou2013-07-103-7/+7
| |
* | add class='preview-icon' in trashbin app as wellGeorg Ehrke2013-07-291-1/+5
| |
* | merge conflicts ...Georg Ehrke2013-07-103-7/+4
|\|
| * Migrate to encodePathVictor Dubiniuk2013-07-092-6/+3
| |
| * use history icon in Deleted Files template as wellJan-Christoph Borchardt2013-06-171-1/+1
| |
* | fix for previews in trashbin appGeorg Ehrke2013-07-081-1/+1
| |
* | implement use of preview icons in thrashbin appGeorg Ehrke2013-07-081-1/+1
|/
* let the home icon link to the files view in the trash binBjörn Schießle2013-03-071-0/+20
|
* Corrects Files Layout in Trashbinraghunayyar2013-03-041-1/+1
|
* fix p() callBjörn Schießle2013-03-041-1/+1
|
* [files_trashbin] From echo to pLukas Reschke2013-02-272-34/+34
|
* Merge branch 'master' into trashbin_encryptionBjörn Schießle2013-02-251-1/+0
|\ | | | | | | | | | | Conflicts: apps/files_trashbin/index.php apps/files_trashbin/lib/trash.php
| * Whitespace fixesBart Visscher2013-02-221-1/+0
| |
* | Merge branch 'master' into trashbin_encryptionBjörn Schießle2013-02-212-5/+8
|\|
| * allow user to delete selected files from the trash bin permanentlyBjörn Schießle2013-02-191-0/+7
| |
| * remove obsolete variablesBjörn Schießle2013-02-191-5/+1
| |