summaryrefslogtreecommitdiffstats
path: root/apps/files/index.php
Commit message (Collapse)AuthorAgeFilesLines
* update license headers and authorsMorris Jobke2015-06-251-1/+0
|
* 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
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-05-191-1/+0
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* remove encryption specific code from files appBjoern Schiessle2015-04-071-3/+0
|
* Removing left overs from old encryption appThomas Müller2015-04-071-1/+0
|
* Removing files_encryption left oversThomas Müller2015-04-071-4/+0
|
* Update license headersJenkins for ownCloud2015-03-261-13/+22
|
* Revert "Updating license headers"Morris Jobke2015-02-261-21/+13
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-13/+21
|
* Remove unneeded addTranslations() callsVincent Petry2015-01-141-1/+0
|
* move search results below filelist, show hint when results are off screen, ↵Jörn Friedrich Dreyer2015-01-021-0/+1
| | | | use js plugin mechanism
* put Favorites second in list, after 'All files'Jan-Christoph Borchardt2014-12-171-1/+1
|
* Fixed small code style issuesVincent Petry2014-12-151-5/+5
|
* Use star icon for favoritesVincent Petry2014-12-151-0/+2
|
* Added favorites feature to the files appVincent Petry2014-12-151-0/+17
|
* Merge pull request #11214 from owncloud/issue/10836Morris Jobke2014-12-091-0/+1
|\ | | | | Add an option to disallow sending sharing emails to non-owncloud users
| * Add an option to disallow sending sharing emails to non-owncloud usersJoas Schilling2014-12-091-0/+1
| | | | | | | | Fix #10836
* | Fix namespace of Files_Encryption outside of the appJoas Schilling2014-12-091-1/+1
|/
* Added OC.L10N namespace with translation functionsVincent Petry2014-10-291-0/+1
| | | | | | | | | | | Added addTranslations and fixed de.js file Fixed de.js to use OC.L10N.register() and use to correct expected format. Added JS unit tests for OC.L10N class Include translations JS script for all apps
* set "allow users to send mail notification for shared files default" setting ↵Bjoern Schiessle2014-06-031-1/+1
| | | | to "no" now that we have the activity app
* drop allowZIPdownload and maxZIPSize as optionsMorris Jobke2014-06-021-1/+0
|
* Fixed navigation orderVincent Petry2014-05-301-0/+5
|
* Fix whitespace issuesRobin McCorkell2014-05-161-2/+2
|
* Fixed many issues, clean upVincent Petry2014-05-151-0/+5
| | | | | | | | | | | | | | | - 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-35/+11
| | | | | | | | | | | | | | | | | - 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/+3
| | | | | | | | | - 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-10/+30
| | | | | | | 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/+6
| | | | | | - 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
* Fix file summary to use the whole file listVincent Petry2014-04-281-0/+1
| | | | | | - 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
* Merge pull request #8015 from owncloud/storageinfo-reuseVincent Petry2014-04-041-2/+2
|\ | | | | Allow reusing FileInfo for getStorageInfo
| * Allow reusing FileInfo for getStorageInfoRobin Appelman2014-04-021-2/+2
| |
* | Merge pull request #6968 from owncloud/files-ajaxloadMorris Jobke2014-04-031-38/+3
|\ \ | | | | | | Ajaxify files list for files + trashbin + public page
| * | Files, trashbin, public apps use ajax/JSON for the file listVincent Petry2014-04-021-38/+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
* / Reuse known free space in the files appRobin Appelman2014-04-021-1/+1
|/
* Fix dirInfo check when dir does not existVincent Petry2014-04-011-1/+1
|
* Merge pull request #7724 from owncloud/mobileThomas Müller2014-03-281-0/+1
|\ | | | | [WIP] Mobile optimization for base layout and Files app
| * mobile: first mobile fixes for Files. We still need to hide Rename and VersionsJan-Christoph Borchardt2014-03-141-0/+1
| |
* | drop file cache migration OC5 -> OC6Thomas Müller2014-03-181-73/+62
|/
* Merge pull request #7257 from owncloud/filelist-fileinfoVincent Petry2014-02-191-2/+3
|\ | | | | use a FileInfo object of the directory when generting the filelist
| * use a FileInfo object of the directory when generting the filelistRobin Appelman2014-02-181-2/+3
| |
* | Remove usage of legacy OC_AppconfigRobin Appelman2014-02-131-3/+5
|/
* Merge branch 'master' into pr-exceed_upload_limit_msgPellaeon Lin2014-01-301-2/+0
|\ | | | | | | | | | | Conflicts: apps/files/templates/index.php apps/files_sharing/templates/public.php
| * Remove unused $freeSpaceRobin Appelman2014-01-271-2/+0
| |
* | Use $storageInfo['free']Pellaeon Lin2014-01-291-1/+1
| |
* | Comments to clarifyPellaeon Lin2014-01-161-2/+2
| |
* | Display different messages for uploadLimit and freeSpacePellaeon Lin2013-12-081-0/+4
|/
* public upload now also works with encryption enabledBjoern Schiessle2013-11-211-1/+0
|
* Files app backend now normalizes paths before rendering templatesVincent Petry2013-11-141-1/+2
| | | | | | | | Before rendering breadcrumbs or the file list, the paths are now normalized. This prevents the UI to show "." breadcrumbs in case the path contains sections with "/./" Fixes #5848
* Merge pull request #5310 from owncloud/hide_filestable-header_when_emptyChristopher Schäpers2013-10-221-1/+7
|\ | | | | 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