aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js
Commit message (Collapse)AuthorAgeFilesLines
* Fix prompting for passwordRobin Appelman2014-06-141-15/+16
|
* Improve detection of whether we're in the files appRobin Appelman2014-06-141-1/+1
|
* Add interface for adding a public share to a different ownCloud instanceRobin Appelman2014-06-142-2/+38
|
* Add interface for accpeting external sharesRobin Appelman2014-06-141-0/+53
|
* move mail template editor from core to standalone templateeditor repoJörn Friedrich Dreyer2014-06-131-78/+0
|
* access admin settings result message correctlyJörn Friedrich Dreyer2014-06-131-1/+1
|
* don't allow to share single files with delete permissions, user should only ↵Bjoern Schiessle2014-06-061-2/+7
| | | | be possible to unshare a single file but never to delete it
* Dont overwrite OCA.SharingRobin Appelman2014-06-051-1/+3
|
* Merge pull request #8861 from owncloud/share-overview-linklistVincent Petry2014-06-052-2/+46
|\ | | | | Added Shared with link sidebar section in files app
| * Fixed wording to "Shared by link"Vincent Petry2014-06-041-2/+2
| |
| * Added "Shared with link" sidebar section in files appVincent Petry2014-06-042-2/+46
| | | | | | | | | | | | | | Added section to only show link shares. Please note that the filtering is currently done on the client side which might not be the most efficient way of doing it.
* | Merge pull request #8824 from owncloud/mail_template_editing_in_webuiMorris Jobke2014-06-041-0/+78
|\ \ | | | | | | minimal mail template editor for administrators
| * | fixes during testThomas Müller2014-06-041-9/+8
| | |
| * | convert mail template editor to app framework for a restful apiJörn Friedrich Dreyer2014-06-031-19/+23
| | |
| * | minimal mail template editor for administrators, refs #7177Jörn Friedrich Dreyer2014-06-021-0/+75
| |/
* | Do not update action icon recipients for file listVincent Petry2014-06-041-0/+5
| | | | | | | | | | | | | | | | Since the files app doesn't have the recipient information on load it cannot initially render the recipients in the action icons. For this reason the action icon will not be updated with the recipients after changing the shares, for consistency.
* | Use recipient display names when updating shares in the UIVincent Petry2014-06-041-4/+6
| | | | | | | | | | | | | | | | | | | | | | Since OC.Share didn't have any array containing the list of shares for the current file, OC.Share.currentShares has been introduced to contain the full share item structure instead of the reduced one OC.Share.itemShares. The event "sharesChanged" is now passing OC.Share.currentShares, which itself includes the display name to be displayed for the recipients in the action icon.
* | Multiple fixes to sharing overviewVincent Petry2014-06-032-27/+40
| | | | | | | | | | - scrolling to next page now correctly renders share icons - reshareing/unsharing a reshare will now still keep "Shared by" label
* | Now using shareOwner for the share ownerVincent Petry2014-06-021-2/+2
| | | | | | | | Makes it consistent with the regular file list fileData
* | More unit tests and fixes for shareVincent Petry2014-06-021-103/+98
| |
* | Added unit tests for share.js and share iconVincent Petry2014-06-022-21/+16
| |
* | Update share action text to display owner/recipientsVincent Petry2014-06-023-99/+163
|/ | | | | - when a share was changed, update the share action text - added file data attribute "data-share-recipients"
* Removed "Share with" columnVincent Petry2014-05-301-3/+1
|
* Added owner display name in actionVincent Petry2014-05-301-0/+3
|
* Sharing overview fixes and unit testsVincent Petry2014-05-304-24/+75
| | | | | | | | | | | | - Fixed renaming and fileActionsReady event - Added unit tests for shares list - Fixed public page with defer - Fixed file actions in sharing overview - Fixed sharing counterpart list (10 entries max) - Fixed file path attribute to be used in download action - Fix sharing list headers - OC.Share icons now operate on fileList instance - Fix OC.Share.updateIcon when more than one list in DOM
* Mimetype for sharing overviewVincent Petry2014-05-301-1/+2
|
* Distinguish legacy file actions from regular file actionsVincent Petry2014-05-303-20/+31
| | | | | | | | | | | | | | 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.
* Small fixes to sharing overviewVincent Petry2014-05-301-0/+11
| | | | | | - Removed file size from file summary in sharing overview - Fixed document title - Fixed empty content text for shared overview
* Fixed sharing permissionsVincent Petry2014-05-301-2/+3
|
* Fixed file actions for sharing viewsVincent Petry2014-05-303-23/+51
| | | | | | | | 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.
* Group shares by typeVincent Petry2014-05-301-76/+75
|
* Added sharing overview page (WIP)Vincent Petry2014-05-302-0/+251
| | | | | - added sharing overview entries in the sidebar - use OCS Share API to get the list of files
* allow resharing of files with only share permissionsBjoern Schiessle2014-05-261-1/+10
|
* fix share label creationBjoern Schiessle2014-05-231-23/+26
|
* Merge pull request #8675 from owncloud/sharing-improvementsBjörn Schießle2014-05-231-2/+7
|\ | | | | Sharing improvements
| * prevent default action when clicking on the share notificationBjoern Schiessle2014-05-231-1/+6
| |
| * fileList needs be be declared before the if-statementBjoern Schiessle2014-05-221-1/+1
| |
* | Dont scale up the preview for publicly shared imagesRobin Appelman2014-05-221-1/+2
|/
* allow admin to disable sharing for specific groups of usersBjoern Schiessle2014-05-221-8/+24
|
* Fixed JS issues in public pageVincent Petry2014-05-202-23/+30
| | | | | - fixed subdir detection when uploading into subdir - add class detection before overriding to avoid JS errors
* Fixed many issues, clean upVincent Petry2014-05-152-7/+32
| | | | | | | | | | | | | | | - 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-152-75/+121
| | | | | | | | | | | | | | | | | - 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
* load image via javascript and use $(document).width() to determine the ↵Thomas Müller2014-05-021-44/+62
| | | | proper side of the image to be returned
* drop folder support on public shared foldersThomas Müller2014-04-111-1/+7
|
* remove obsolete codeJörn Friedrich Dreyer2014-04-091-5/+0
|
* Files, trashbin, public apps use ajax/JSON for the file listVincent Petry2014-04-022-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 selectorMorris Jobke2014-02-201-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 popupThomas Müller2014-02-201-4/+4
|
* remove duplicate selectors and declarationThomas Müller2014-02-201-7/+6
|
* update share ownerThomas Müller2014-02-201-0/+8
|