Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | load image via javascript and use $(document).width() to determine the ↵ | Thomas Müller | 2014-05-02 | 1 | -44/+62 |
| | | | | proper side of the image to be returned | ||||
* | drop folder support on public shared folders | Thomas Müller | 2014-04-11 | 1 | -1/+7 |
| | |||||
* | remove obsolete code | Jörn Friedrich Dreyer | 2014-04-09 | 1 | -5/+0 |
| | |||||
* | Files, trashbin, public apps use ajax/JSON for the file list | Vincent Petry | 2014-04-02 | 2 | -35/+58 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | Improve jQuery element selector | Morris Jobke | 2014-02-20 | 1 | -1/+1 |
| | | | | | see https://github.com/owncloud/core/pull/7012/files#r9337198 http://24ways.org/2011/your-jquery-now-with-less-suck/ | ||||
* | uppercase text and fix dialog popup | Thomas Müller | 2014-02-20 | 1 | -4/+4 |
| | |||||
* | remove duplicate selectors and declaration | Thomas Müller | 2014-02-20 | 1 | -7/+6 |
| | |||||
* | update share owner | Thomas Müller | 2014-02-20 | 1 | -0/+8 |
| | |||||
* | Do not send file list for select all on Download/delete | Vincent Petry | 2014-02-13 | 1 | -5/+25 |
| | | | | | | | | - When all files are selected, do not send the whole file list - Download will trigger download for the parent folder, also works with root - Delete will send "allfiles" to the server that will find the file list or the passed directory by itself | ||||
* | merge master into mobile-style | Jan-Christoph Borchardt | 2014-01-29 | 1 | -9/+7 |
|\ | |||||
| * | Fixed download URL in public page | Vincent Petry | 2014-01-24 | 1 | -9/+7 |
| | | | | | | | | | | | | | | - Refactored download URL building to make it overridable - Added download URL override in public page - Added JS unit tests for download URL - Added OC.redirect() method to facilitate unit testing | ||||
* | | Instead of 'No preview available for ...' we simple display the mieme-type icon | Thomas Müller | 2014-01-23 | 1 | -8/+1 |
| | | |||||
* | | focus link text only on click in the input field - closes #6817 | Thomas Müller | 2014-01-23 | 1 | -1/+4 |
| | | |||||
* | | Merge branch 'master' into mobile-style | Thomas Müller | 2014-01-23 | 2 | -4/+4 |
|\| | | | | | | | | | | | | | | | Conflicts: apps/files/js/files.js apps/files_sharing/css/public.css apps/files_sharing/js/public.js apps/files_sharing/templates/public.php | ||||
| * | Merge pull request #6719 from tripflex/fix_pubup_progbar | Morris Jobke | 2014-01-22 | 1 | -1/+2 |
| |\ | | | | | | | Fix public upload progress bar | ||||
| | * | modify js to move upload wrapper, modify css to match core values | Myles McNamara | 2014-01-10 | 1 | -1/+2 |
| | | | |||||
| * | | Fixed various file name escaping issues in core apps | Vincent Petry | 2014-01-10 | 2 | -4/+4 |
| |/ | | | | | | | | | | | | | - Refactored file tr lookup into FileList.findFileEl that uses filterAttr to avoid escaping issues in jQuery selectors - Fixed versions and sharing app to properly escape file names in attributes | ||||
* / | remove unused js code and css rules | Thomas Müller | 2014-01-15 | 1 | -11/+0 |
|/ | |||||
* | Revert "[fix] Center Share Dropdown & Versions Dropdown" | zombiehugs | 2013-12-03 | 1 | -1/+1 |
| | | | | This reverts commit 1dbbfcf3dcd4de7f31344244b9f22217e4bfba72. | ||||
* | [fix] Center Share Dropdown & Versions Dropdown | zombiehugs | 2013-12-03 | 1 | -1/+1 |
| | | | | Center Share Dropdown & Versions Dropdown | ||||
* | pass the name of the item source from the browser to the server - no need to ↵ | Thomas Müller | 2013-10-23 | 1 | -2/+2 |
| | | | | get the data via complicated db queries | ||||
* | Added direct link in public share page | Vincent Petry | 2013-10-18 | 1 | -0/+2 |
| | | | | Fixes #1167 | ||||
* | Fixed sharing status update for new/uploaded files | Vincent Petry | 2013-10-17 | 1 | -3/+11 |
| | | | | | | | | | | | | | | | Creating new files, folders or uploading files now have their sharing icon updated accordingly. For this, the global share status list that is cached in OC.Share.statuses is reused for new files. Performance should improve as the sharing list is now only loaded once per navigation session. In OC.Share, split loadIcons into loadIcons + updateIcons. Fixes #4977 | ||||
* | Merge branch 'master' into fix_3728_with_file_exists_dialog | Jörn Friedrich Dreyer | 2013-09-17 | 2 | -13/+12 |
|\ | | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/css/files.css apps/files/js/file-upload.js apps/files/js/filelist.js apps/files/js/files.js apps/files_sharing/js/public.js core/js/jquery.ocdialog.js core/js/oc-dialogs.js | ||||
| * | Merge pull request #4838 from owncloud/refactor_upload_js | Thomas Müller | 2013-09-16 | 1 | -14/+13 |
| |\ | | | | | | | refactor upload js & html to always use only js to fill form data | ||||
| | * | refactor upload js & html to always use only js to fill form data | Jörn Friedrich Dreyer | 2013-09-13 | 1 | -14/+13 |
| | | | |||||
| * | | Ajax calls for "files" and "files_trashbin" apps | Vincent Petry | 2013-09-13 | 1 | -1/+1 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | Frontend: - The files app list now uses ajax calls to refresh the list. - Added support the browser back button (history API). - Added mask + spinner while loading file list Backend: - Added utility function in core JS for parsing query strings. - Moved file list + breadcrumb template data code to helper functions - Fixed some file paths in trashbin app to be similar to the files app | ||||
* | | Merge branch 'master' into fix_3728_with_file_exists_dialog | Jörn Friedrich Dreyer | 2013-09-04 | 2 | -5/+8 |
|\| | | | | | | | | | | | | | | | | | Conflicts: apps/files/ajax/upload.php apps/files/js/file-upload.js apps/files/js/filelist.js apps/files/js/files.js apps/files/templates/part.list.php | ||||
| * | Merge branch 'master' into oc_preview | Georg Ehrke | 2013-08-23 | 1 | -3/+3 |
| |\ | |||||
| | * | Merge pull request #4262 from owncloud/fix_jslint_kondou | Christopher | 2013-08-20 | 1 | -3/+3 |
| | |\ | | | | | | | | | Fix some JSLint warnings | ||||
| | | * | Merge branch 'master' into fix_jslint_kondou | kondou | 2013-08-18 | 1 | -2/+5 |
| | | |\ | | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/js/file-upload.js | ||||
| | | * | | Fix a syntax error & have if-conds in an own line | kondou | 2013-08-01 | 1 | -1/+1 |
| | | | | | |||||
| | | * | | Fix some JSLint warnings | kondou | 2013-07-31 | 1 | -4/+4 |
| | | | | | |||||
| * | | | | Merge master into oc_preview | Georg Ehrke | 2013-08-19 | 1 | -1/+4 |
| |\| | | | |||||
| | * | | | Add _many_ newlines at the end of files | kondou | 2013-08-18 | 1 | -1/+1 |
| | | |/ | | |/| | |||||
| | * | | fix #2711 using a custom event, also use css selectors over filterAttr | Jörn Friedrich Dreyer | 2013-08-08 | 1 | -2/+5 |
| | |/ | |||||
| * | | fix js error | Georg Ehrke | 2013-08-07 | 1 | -1/+1 |
| | | | |||||
| * | | implement previews of single shared files | Georg Ehrke | 2013-08-07 | 1 | -1/+1 |
| |/ | |||||
* / | progress fixes | Jörn Friedrich Dreyer | 2013-08-16 | 1 | -2/+5 |
|/ | |||||
* | adding tipsy to the upload button showing the max upload and restoring ↵ | Thomas Müller | 2013-07-05 | 1 | -0/+2 |
| | | | | client side upload size validation | ||||
* | Public upload feature | Roman Geber | 2013-06-25 | 1 | -1/+18 |
| | |||||
* | Use HTML5 data attribute + fix undefined variable | Lukas Reschke | 2013-01-26 | 1 | -0/+2 |
| | |||||
* | missing renames of publicListView to disableSharing | Thomas Mueller | 2013-01-23 | 1 | -1/+1 |
| | |||||
* | Whitespace cleanup | Bart Visscher | 2013-01-16 | 1 | -1/+1 |
| | |||||
* | moving sharing email code to core | Thomas Mueller | 2012-12-10 | 1 | -25/+1 |
| | |||||
* | restoring feature to send sharing link via email | Thomas Mueller | 2012-12-10 | 1 | -1/+23 |
| | |||||
* | Fix shared status icons | Michael Gapczynski | 2012-10-28 | 1 | -30/+4 |
| | |||||
* | don't show the share action in the file view for publically shared files. | Björn Schießle | 2012-10-10 | 1 | -1/+1 |
| | |||||
* | Fix closing the sharing dropdown by clicking on the share button | Michael Gapczynski | 2012-10-09 | 1 | -1/+1 |
| | |||||
* | register download action for directories | Björn Schießle | 2012-10-05 | 1 | -0/+6 |
| |