aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
Commit message (Collapse)AuthorAgeFilesLines
* adding PK to table encryptionThomas Müller2014-06-062-1/+10
| | | | | | | | | | | | | | | | | | | | adding auto increment/PK to table files_trash adding PK to table ldap_user_mapping and ldap_group_members adding PK to table ldap_group_mapping truncate permissions table to allow smooth creation of primary key adding unit test for creating an auto increment column on a table which already contains data remove unneeded table files_trashsizes fix unit test no need to truncate *PREFIX*permissions On Oracle adding auto increment columns is not working out of the box - Oracle migrations are to be done manually
* table files_trashsizes was still used in some locations -> removedThomas Müller2014-06-052-33/+2
|
* Merge pull request #8471 from owncloud/versioning_no_longer_track_the_sizeThomas Müller2014-06-042-4/+3
|\ | | | | [versioning] let the file cache track the size of the versions
| * use OC_DB::dropTable()Thomas Müller2014-06-021-2/+1
| |
| * return size '0' if the trashbin folder doesn't exists yetBjoern Schiessle2014-06-021-2/+2
| |
* | Merge pull request #8849 from owncloud/trash_expire_fixThomas Müller2014-06-041-8/+9
|\ \ | | | | | | get files in trash from file cache
| * | fixing typoThomas Müller2014-06-041-1/+1
| | |
| * | get files in trash from file cacheBjoern Schiessle2014-06-031-7/+8
| |/
* / [tx-robot] updated from transifexJenkins for ownCloud2014-06-041-1/+1
|/
* Distinguish legacy file actions from regular file actionsVincent Petry2014-05-303-16/+17
| | | | | | | | | | | | | | Legacy file actions are registered by legacy apps through window.FileActions.register(). These actions can only be used by the main file list ("all files") because legacy apps can only deal with a single list / container. New file actions of compatible apps must be registered through OCA.Files.fileActions. These will be used for other lists like the sharing overview. Fixed versions and sharing actions to use OCA.Files.fileActions, which makes them available in the sharing overview list.
* Fixed navigation orderVincent Petry2014-05-301-1/+1
|
* Fixed file actions for sharing viewsVincent Petry2014-05-301-2/+4
| | | | | | | | FileActions can now be clone to be use for separate file list views without having the side-effect of affecting the main file list view. Added "Open" action in sharing overview file lists to redirect to the regular file list when clicking on a folder.
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-301-1/+1
|
* Adjust core apps to use "requiremin" instead of "require"Vincent Petry2014-05-271-1/+1
| | | | Also added a few missing authors.
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-251-1/+1
|
* Remove all occurences of @brief and @returns from PHPDocMorris Jobke2014-05-192-12/+12
| | | | * test case added to avoid adding them later
* Merge pull request #8585 from owncloud/phpdoc-improvements-appsAndreas Fischer2014-05-192-33/+33
|\ | | | | | | | | | | | | | | | | | | | | | | PHPDoc improvements /apps * owncloud/phpdoc-improvements-apps: Fix whitespace issues Reduce double-space with single-space. Remove spaces around | operator in doc block. Fix more missing or broken PHPDoc PHPDoc fixes for user_ldap Fix PHPDoc in /apps
| * Fix more missing or broken PHPDocRobin McCorkell2014-05-161-2/+2
| |
| * Fix PHPDoc in /appsRobin McCorkell2014-05-161-31/+31
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-181-0/+8
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-1753-104/+54
|/
* Merge pull request #6260 from owncloud/jan-navigation-filesidebarVincent Petry2014-05-1611-342/+712
|\ | | | | Files app navigation sidebar
| * Fixed many issues, clean upVincent Petry2014-05-158-65/+156
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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-1510-305/+606
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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-152-3/+6
| | | | | | | | | | | | | | | | | | - 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-153-45/+12
| | | | | | | | | | | | | | 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-152-0/+8
| | | | | | | | | | | | - 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
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-161-1/+7
|/
* 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()
* remove legacy aka deprecated code: OC_FilesystemViewThomas Müller2014-05-121-3/+3
|
* Merge pull request #8041 from owncloud/files-sortcolumnsVincent Petry2014-05-124-14/+22
|\ | | | | File list sorting by clicking on column headers
| * html input tag has no closing tagThomas Müller2014-04-281-2/+3
| |
| * Set default sort of trashbin to timestamp descendingVincent Petry2014-04-281-0/+1
| |
| * Add sorting to files list, trashbin and public filesVincent Petry2014-04-283-12/+18
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-122-2/+5
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-111-1/+1
| |
* | Merge pull request #8407 from owncloud/scale-pics-on-public-sharing-masterThomas Müller2014-05-051-2/+3
|\ \ | | | | | | Images on public sharing get downscaled to increase use experience - thi...
| * | Images on public sharing get downscaled to increase use experience - this ↵Thomas Müller2014-05-021-2/+3
| |/ | | | | | | | | | | | | | | | | | | | | will speed up loading time - adding keep aspect to core/ajax/preview.php - remove duplicate method Preview::show() - no more hard coded mimetype of preview - remove .png from the preview urls - keep old route preview.png for backwards compatibility - aspect preserving previews are now cached
* | Merge pull request #8377 from youngguns-nl/issue_8376Vincent Petry2014-05-021-1/+9
|\ \ | |/ |/| RecursiveDirectoryIterator does not work on NFS
| * refs #8376; spaces=>tabsSjors van der Pluijm2014-04-291-1/+1
| |
| * refs #8376; added comment and applied patch on other filesSjors van der Pluijm2014-04-281-1/+9
| |
* | Cleanup and fix trashbin "clear all files" operationVincent Petry2014-04-281-1/+1
| |
* | Fixed selection to be based on FileList.filesVincent Petry2014-04-281-2/+2
| | | | | | | | | | | | | | | | | | | | The file selection is now based on the internal model array FileList.files instead of the visible checkboxes. This makes it possible to virtually select files that haven't been rendered yet (select all, then deselect a visible one) Added more unit tests for selection (with shift and ctrl as well)
* | Fix trashbin previews and "delete selected"Vincent Petry2014-04-282-4/+4
| |
* | Fix file selection for infinite scrollingVincent Petry2014-04-282-161/+128
| | | | | | | | | | | | | | - moved file selection code to FileList - fix selection summary when all files are selected - nextPage now auto-selects files if "select all" checkbox is checked - fixed trashbin to use the same selection logic as FileList
* | Fix file summary to use the whole file listVincent Petry2014-04-283-2/+7
|/ | | | | | - 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 #8247 from owncloud/l10n-files_trasbin-fixThomas Müller2014-04-221-4/+4
|\ | | | | Fix localization issues of files_trashbin
| * Fix localization issues of files_trashbinVolkan Gezer2014-04-171-4/+4
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-04-191-0/+5
| |
* | Merge pull request #8189 from Xenopathic/misc_fixesRobin McCorkell2014-04-171-14/+14
|\ \ | |/ |/| Various fixes