summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Fixed many issues, clean upVincent Petry2014-05-1528-276/+535
| | | | | | | | | | | | | | | - 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-1535-2940/+3687
| | | | | | | | | | | | | | | | | - 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-157-7/+118
| | | | | | | | | - 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-157-60/+70
| | | | | | | 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-157-3/+52
| | | | | | - 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
* Fixed trashbin to use correct classVincent Petry2014-05-151-1/+1
| | | | | It seems that \OC_Filesystemview has been removed. Now using the correct class \OC\Files\View()
* Merge pull request #8589 from fibsifan/files_external_sftp_portRobin McCorkell2014-05-151-4/+4
|\ | | | | rename URL-fields to Host for SFTP/FTP and SMB external Storage backends
| * changing label "URL" to "Host"fibsifan2014-05-151-4/+4
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-154-1/+19
|/
* Merge pull request #8584 from Bagera/masterjbtbnl2014-05-141-1/+1
|\ | | | | avoid row resize on filename edit
| * Set row height in files tableBagera2014-05-141-2/+2
| | | | | | | | Sets row height to avoid resize when name is edited
| * fixes #7949Bagera2014-05-131-1/+1
| | | | | | | | Sets height to form to avoid resizing when filename link is not shown
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-143-8/+93
| |
* | Merge pull request #8582 from owncloud/remove-outdated-update-scLukas Reschke2014-05-141-46/+0
|\ \ | | | | | | We do not support updates from 4.5 > 7.0 or even 3.0 > 7.0
| * | We do not support updates from 4.5 > 7.0Lukas Reschke2014-05-131-46/+0
| |/
* | @returns -> @returnThomas Müller2014-05-133-12/+12
| |
* | @breif -> @briefThomas Müller2014-05-132-3/+3
|/
* Merge pull request #8398 from owncloud/enc_backup_keysBjörn Schießle2014-05-132-2/+13
|\ | | | | backup the encryption key after the encryption was disabled
| * backup the encryption key after the encryption was disabled so that the userBjoern Schiessle2014-05-132-2/+13
| | | | | | | | can restore them if needed
* | Extract mount point merging logic into separate functionRobin McCorkell2014-05-131-11/+25
| |
* | Merge pull request #8556 from owncloud/kill-legacy-code-masterThomas Müller2014-05-1227-94/+94
|\ \ | | | | | | Kill legacy code master
| * | remove legacy aka deprecated code: OC_FilesystemViewThomas Müller2014-05-1224-86/+86
| | |
| * | remove legacy aka deprecated code: OC_CacheThomas Müller2014-05-122-2/+2
| | |
| * | remove legacy aka deprecated code: OC_FilesystemThomas Müller2014-05-124-6/+6
| | |
* | | Merge pull request #8538 from owncloud/make-my-ide-less-complain-about-ldapLukas Reschke2014-05-1213-384/+689
|\ \ \ | |/ / |/| | Use proper PHPDoc and variable names in the LDAP lib
| * | Use array as typeLukas Reschke2014-05-121-1/+1
| | |
| * | That's bool and not always trueLukas Reschke2014-05-111-1/+1
| | |
| * | Use WizardResult|false instead of mixedLukas Reschke2014-05-111-2/+2
| | |
| * | Use @return instead of @returnsLukas Reschke2014-05-113-9/+9
| | |
| * | Fix TypoLukas Reschke2014-05-111-1/+1
| | | | | | | | | | | | I guess that should be `default` and not `defautl`, wondering how this ever worked.
| * | Use proper PHPDoc and variable names in the LDAP libLukas Reschke2014-05-1112-378/+683
| | | | | | | | | | | | My IDE was so sad about this that it marked the whole file in red and yellow and forced me to fix this.
* | | Merge pull request #8041 from owncloud/files-sortcolumnsVincent Petry2014-05-1212-74/+507
|\ \ \ | | | | | | | | File list sorting by clicking on column headers
| * | | Clear selection on reload (when changing sort)Vincent Petry2014-04-292-2/+9
| | | |
| * | | typos, indentation and remove of unused codeThomas Müller2014-04-283-7/+7
| | | |
| * | | html input tag has no closing tagThomas Müller2014-04-281-2/+3
| | | |
| * | | $RUNTIME_APPTYPES is no longer used - left over from pre OC4Thomas Müller2014-04-281-5/+0
| | | |
| * | | Added unit test in files app for sort function in helper classVincent Petry2014-04-282-6/+113
| | | | | | | | | | | | | | | | | | | | Added unit test for the Helper class in the files app that tests the different sort orders.
| * | | Set default sort of trashbin to timestamp descendingVincent Petry2014-04-282-4/+2
| | | |
| * | | Add sorting to files list, trashbin and public filesVincent Petry2014-04-2810-57/+382
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-127-4/+29
| | | |
* | | | $owner is not defined hereLukas Reschke2014-05-111-1/+1
| |/ / |/| | | | | Fixes https://github.com/owncloud/core/issues/8539
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-114-5/+8
| | |
* | | Merge pull request #8520 from owncloud/jslint_polishing_in_file_uploadLukas Reschke2014-05-101-45/+61
|\ \ \ | | | | | | | | polish jslint for files-upload.js
| * | | polish jslint for files-upload.jsJörn Friedrich Dreyer2014-05-091-45/+61
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-1014-0/+104
|/ / /
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-094-1/+38
| | |
* | | Merge pull request #8499 from owncloud/shareextstoragemountpointfixVincent Petry2014-05-082-6/+61
|\ \ \ | | | | | | | | Fix sharing of ext storage mount points
| * | | Added unit test for sharing ext storage mount pointsVincent Petry2014-05-081-2/+55
| | | |
| * | | Fix sharing of ext storage mount pointsVincent Petry2014-05-081-4/+6
| | |/ | |/| | | | | | | | | | When sharing an ext storage mount point, it will now use the name of the mount point instead of an empty string for the target path.
* | | Merge pull request #8293 from owncloud/files_external_fix_readDataVincent Petry2014-05-081-19/+18
|\ \ \ | | | | | | | | Fix issue with personal mount points and sharing