summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8407 from owncloud/scale-pics-on-public-sharing-masterThomas Müller2014-05-056-53/+78
|\ | | | | Images on public sharing get downscaled to increase use experience - thi...
| * load image via javascript and use $(document).width() to determine the ↵Thomas Müller2014-05-022-48/+62
| | | | | | | | proper side of the image to be returned
| * Images on public sharing get downscaled to increase use experience - this ↵Thomas Müller2014-05-025-9/+20
| | | | | | | | | | | | | | | | | | | | | | 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
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-055-0/+23
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-0479-37/+194
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-0334-35/+27
| |
* | 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
| |
* | Merge pull request #8400 from owncloud/download-button-public-folderThomas Müller2014-05-023-7/+14
|\ \ | | | | | | reintroduce download button on public shares
| * | disable download button if zip download is disabledThomas Müller2014-05-022-1/+4
| | |
| * | fix position and look of public download buttonJan-Christoph Borchardt2014-05-021-3/+0
| | |
| * | remove file name from upper right buttonThomas Müller2014-04-291-1/+1
| | |
| * | reintroduce download button on public sharesThomas Müller2014-04-291-3/+10
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-023-5/+35
| | |
* | | Merge pull request #8415 from owncloud/sharing_fix_renameBjörn Schießle2014-05-011-4/+7
|\ \ \ | | | | | | | | [sharing] return the new name if a mount point was renamed
| * | | return the new name if a mount point was renamedBjoern Schiessle2014-04-301-4/+7
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-05-0118-0/+128
| | | |
* | | | Merge pull request #8412 from owncloud/sharing_fix_part_file_renameLukas Reschke2014-04-303-9/+98
|\ \ \ \ | |/ / / |/| | | [sharing] fix rename of part files
| * | | get the correct owner path for part filesBjoern Schiessle2014-04-302-1/+92
| | | |
| * | | only update the values which really changedBjoern Schiessle2014-04-301-8/+6
| |/ /
* | | Merge pull request #8404 from owncloud/fix-checkboxesThomas Müller2014-04-301-5/+5
|\ \ \ | | | | | | | | Fixed too generic checkbox and link selectors
| * | | Fixed too generic checkbox and link selectorsVincent Petry2014-04-291-5/+5
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | It turns out that the sharing dropdown is embedded into the table row for some reason. This fix makes use of a more specific selector for the checkboxes and file name links to make sure it doesn't spill into any other potential elements like the sharing dialog.
* | | Merge pull request #8408 from owncloud/delete-spinnerMorris Jobke2014-04-302-0/+17
|\ \ \ | | | | | | | | Show spinner for all files when deleting all
| * | | Show spinner for all files when deleting allVincent Petry2014-04-292-0/+17
| |/ /
* / / [tx-robot] updated from transifexJenkins for ownCloud2014-04-3091-0/+621
|/ /
* | Merge pull request #8382 from owncloud/enc_fix_decrypt_allVincent Petry2014-04-292-10/+52
|\ \ | | | | | | fix shouldEncrypt() method and improved decryptAll() unit tests
| * | fix shouldEncrypt() method and improved decryptAll() unit testsBjoern Schiessle2014-04-282-10/+52
| |/
* | Merge pull request #8285 from owncloud/better_getmountby_handlingicewind19912014-04-292-2/+3
|\ \ | | | | | | Handle return values better from Filesystem::getMountBy*
| * | Better handle return values from Filesystem::getMountBy*Robin McCorkell2014-04-252-2/+3
| | | | | | | | | | | | | | | | | | getMountByStorageId and getMountByNumericId return an empty array on error, which should be detected to avoid possible errors. This commit also adds in some new logging points and throws to aid debugging
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-04-2969-339/+341
| | |
* | | typos, naming, remove unused code, identationThomas Müller2014-04-283-53/+39
| | |
* | | Fixed drag and drop into folder and onto breadcrumbVincent Petry2014-04-283-82/+211
| | | | | | | | | | | | | | | Fixed drag and drop code to use FileList.getSelectedFiles() instead of the visible DOM elements.
* | | Fixed selection summary calculation issueVincent Petry2014-04-282-3/+27
| | |
* | | Cleanup of event handlersVincent Petry2014-04-281-32/+32
| | | | | | | | | | | | | | | Now using _.bind() for event handlers so we can use "this" which is more readable than a static access to FileList.
* | | Cleanup and fix trashbin "clear all files" operationVincent Petry2014-04-282-6/+2
| | |
* | | Fixed drag shadow file sortingVincent Petry2014-04-281-0/+1
| | |
* | | Fixed selection to be based on FileList.filesVincent Petry2014-04-285-161/+289
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| | |
* | | Make sure there are always enough elements visible on the pageVincent Petry2014-04-282-0/+18
| | |
* | | Fixed insertion of filesVincent Petry2014-04-284-40/+169
| | | | | | | | | | | | | | | | | | | | | | | | | | | Removed "insert" flag, inserting is by default for FileList.add(). Added "animate" flag to FileList.add(). Added logic to correctly detect when to insert/append elements whenever the insertion point is visible or not. Fixed "render next page" logic to work correctly when many pages of files have been added.
* | | Fixed file sorting to work with scrollingVincent Petry2014-04-282-106/+150
| | | | | | | | | | | | | | | | | | | | | | | | | | | The FileList.files model is now updated with file operations. Adding files to the list will add to the model first, then to the DOM. If the insertion point isn't visible yet, the file won't be added to the DOM until the user scrolls down. Updated unit tests to include checking for the correct insertion point.
* | | Fix file selection for infinite scrollingVincent Petry2014-04-287-378/+625
| | | | | | | | | | | | | | | | | | | | | - 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-2810-138/+322
| | | | | | | | | | | | | | | | | | - 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
* | | Added infinite scrolling (in-memory list)Vincent Petry2014-04-281-5/+60
| | |
* | | drop files_irods from apps_externalThomas Müller2014-04-2882-8015/+0
| |/ |/|
* | Merge pull request #8327 from owncloud/l10n-files_external-fieldsThomas Müller2014-04-282-66/+67
|\ \ | | | | | | Add translatable mount configs
| * | fix single quote sanitizationVolkan Gezer2014-04-261-1/+1
| | |
| * | Add translatable mount configsVolkan Gezer2014-04-231-65/+66
| | | | | | | | | | | | Will close #8070
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-04-282-1/+2
| | |