summaryrefslogtreecommitdiffstats
path: root/apps/files/templates/index.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix some MissingDocblockType or InvalidDocblock warnings.Daniel Kesselberg2020-08-141-1/+1
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-101-1/+1
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add grid toggle for every files viewJohn Molakvoæ (skjnldsv)2018-11-061-0/+8
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Add an event so apps can add hidden fields to the files pageJoas Schilling2017-06-131-0/+4
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* remove 'send mail notification' option from sharing, replaced by ↵Bjoern Schiessle2016-11-021-2/+0
| | | | | | send-by-mail feature Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Move away from OC_L10NRoeland Jago Douma2016-10-281-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fix malformed attribute in files appVincent Petry2016-10-251-1/+1
|
* Improve the UX for "not found" perma linksJoas Schilling2016-06-071-0/+1
|
* filter hidden files on the web interfaceChristoph Wurst2016-04-191-0/+1
| | | | | | | | | | | | | | | | | | 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-131-0/+1
|
* load file sorting mode from the dbChristoph Wurst2016-04-131-0/+1
|
* Search results have to explicitly be added to the content area of the appThomas Müller2015-06-091-0/+1
|
* Add owner to the storage stats to enable better notificationsMorris Jobke2015-06-051-0/+2
| | | | | * getstoragestats.php returns now the owner and it's display name * show proper storage stats notifications for shared folders
* remove encryption specific code from files appBjoern Schiessle2015-04-071-1/+0
|
* Removing left overs from old encryption appThomas Müller2015-04-071-1/+0
|
* Add an option to disallow sending sharing emails to non-owncloud usersJoas Schilling2014-12-091-0/+1
| | | | Fix #10836
* Fix dropping files below the tableVincent Petry2014-05-221-1/+1
|
* Fixed many issues, clean upVincent Petry2014-05-151-1/+0
| | | | | | | | | | | | | | | - 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-111/+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-1/+1
| | | | | | | | | - 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-1/+7
| | | | | | | 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-3/+4
| | | | | | - 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
* typos, indentation and remove of unused codeThomas Müller2014-04-281-0/+1
|
* Add sorting to files list, trashbin and public filesVincent Petry2014-04-281-5/+7
|
* 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
* make max. text translatableVolkan Gezer2014-04-211-1/+1
|
* Files, trashbin, public apps use ajax/JSON for the file listVincent Petry2014-04-021-9/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* enable SVG->PNG fallback for 'New' menuJan-Christoph Borchardt2014-03-271-3/+3
|
* remove unneeded icon classJan-Christoph Borchardt2014-03-141-4/+4
|
* Update index.phpFrancesco Piraneo G.2014-03-111-1/+1
| | | On line #69 added id="selectedActionsList" to allow an easy adding of new actions customs apps wants to perform on selected files;
* use SVG icons from icons.css for New file menuJan-Christoph Borchardt2014-02-211-6/+11
|
* Merge branch 'master' into pr-exceed_upload_limit_msgPellaeon Lin2014-01-301-3/+9
|\ | | | | | | | | | | Conflicts: apps/files/templates/index.php apps/files_sharing/templates/public.php
| * merge master into mobile-styleJan-Christoph Borchardt2014-01-291-1/+1
| |\
| | * remove %webroot% from files appJan-Christoph Borchardt2014-01-231-1/+1
| | |
| * | fix input element closing tagMorris Jobke2014-01-171-2/+2
| | |
| * | no new menu on public uploadThomas Müller2014-01-151-0/+2
| | |
| * | reuse file upload as used within files app - remove public upload buttonThomas Müller2014-01-151-2/+6
| |/
* | #max_upload is needed after allPellaeon Lin2013-12-111-1/+1
| |
* | Display different messages for uploadLimit and freeSpacePellaeon Lin2013-12-081-2/+3
|/
* it is not possible to unshare filesBjoern Schiessle2013-12-061-14/+5
|
* Moved new file extension out of the translated stringVincent Petry2013-11-281-1/+1
|
* New file box now has default file name + extensionVincent Petry2013-11-281-2/+2
| | | | | | | | | | | Whenever a user creates a file or folder in the web UI, the input field will contain a default file name, pre-selected up to the extension for easier typing. The purpose is mostly to prevent users creating text files without an extension. Fixes #6045
* disable trahs in files_sharing/public.phpBjoern Schiessle2013-11-211-1/+1
|
* fix undefined index errors if public share viewBjoern Schiessle2013-11-211-2/+3
|
* Merge pull request #5435 from owncloud/share-improvementsThomas Müller2013-10-231-1/+1
|\ | | | | Share improvements
| * improve wording of permission noticeJan-Christoph Borchardt2013-10-201-1/+1
| |
| * beautify 'you dont have write permissions' notice, fix #2770Jan-Christoph Borchardt2013-10-201-1/+1
| |
* | Merge pull request #5310 from owncloud/hide_filestable-header_when_emptyChristopher Schäpers2013-10-221-5/+5
|\ \ | | | | | | Hide files list header, when theres no files to see
| * | Fixed empty content logicVincent Petry2013-10-211-1/+1
| | | | | | | | | | | | | | | - Remove obsolete code that used another approach for hiding emptycontent - Fixed logic for the showing of the empty content message
| * | Fix mind-boggling emptycontent logickondou2013-10-211-4/+4
| | |