summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js
Commit message (Collapse)AuthorAgeFilesLines
* add admin documentation hints to Federated Cloud Sharing and cronJan-Christoph Borchardt2015-04-091-0/+1
|
* Merge pull request #13525 from owncloud/s2s-fixscanfileforbrokenstorageMorris Jobke2015-01-281-1/+1
|\ | | | | Catch storage exception in scanner for remote shares
| * Catch storage exception in scanner for remote sharesVincent Petry2015-01-261-1/+1
| | | | | | | | | | | | | | | | Whenever an exception occurs during scan of a remote share, the share is checked for availability. If the storage is gone, it will be removed automatically. Also, getDirectoryContent() will now skip unavailable storages.
* | Merge pull request #13679 from owncloud/public-disablesharejspluginThomas Müller2015-01-271-1/+1
|\ \ | | | | | | Disable JS plugin for sharing in public mode
| * | Disable JS plugin for sharing in public modeVincent Petry2015-01-261-1/+1
| |/ | | | | | | | | This removes the logic that registers the share action and modifies the rows. Share actions aren't needed in the public file list.
* / Only reload file list after remote share accept request returnsVincent Petry2015-01-261-2/+4
|/ | | | | When accepting a remote share, an ajax request is sent to the server. Only once this request returns should the file list be reloaded.
* Merge pull request #13432 from owncloud/animate_gifs_public_sharingThomas Müller2015-01-211-1/+11
|\ | | | | show animated gifs on public sharing page
| * show animated gifs on public sharing pageGeorg Ehrke2015-01-191-1/+11
| |
* | Add unit test for external share JS dialogVincent Petry2015-01-211-57/+77
| | | | | | | | | | | | Moved external share JS code into a small plugin to make it testable. Added unit test for the external share dialog logic + ajax calls.
* | External share dialog must properly read entered passwordVincent Petry2015-01-211-1/+2
|/
* Download the current public folder onlyOlivier Paroz2015-01-141-1/+6
| | | | | | | From within a shared/public directory, when drilling down folders, some users want to be able to download what they're currently looking at, not the whole shared folder. The whole archive is always a click away anyway since a user can click on the home button.
* make Share button localized againVolkan Gezer2015-01-111-1/+1
| | | | it seems we have forgotten to use named FileAction
* Check for version before mounting a public linkMorris Jobke2015-01-051-1/+1
| | | | | | * ownCloud 7.0.0 is needed - version of merge of server <-> server sharing - https://github.com/owncloud/core/pull/8399 * adjust error message
* Next step in server-to-server sharing next generation, see #12285Bjoern Schiessle2014-12-191-30/+65
| | | | | | | | | | | | | | Beside some small improvements and bug fixes this will probably the final state for OC8. To test this you need to set up two ownCloud instances. Let's say: URL: myPC/firstOwnCloud user: user1 URL: myPC/secondOwnCloud user: user2 Now user1 can share a file with user2 by entering the username and the URL to the second ownCloud to the share-drop-down, in this case "user2@myPC/secondOwnCloud". The next time user2 login he will get a notification that he received a server-to-server share with the option to accept/decline it. If he accept it the share will be mounted. In both cases a event will be send back to user1 and add a notification to the activity stream that the share was accepted/declined. If user1 decides to unshare the file again from user2 the share will automatically be removed from the second ownCloud server and user2 will see a notification in his activity stream that user1@myPC/firstOwnCloud has unshared the file/folder from him.
* add empty alt text to decorative preview of public share imageJan-Christoph Borchardt2014-12-181-1/+1
|
* improve empty states for sharing and shared links as wellJan-Christoph Borchardt2014-12-171-3/+7
|
* use empty state for 'Shared with you' as wellJan-Christoph Borchardt2014-12-171-1/+3
|
* Merge pull request #12795 from owncloud/files-layoutchangesMorris Jobke2014-12-131-0/+1
|\ | | | | Move file thumbnail element into the label tag
| * Move file thumbnail into the label elementVincent Petry2014-12-111-0/+1
| |
* | Simple Plugin system for JavascriptVincent Petry2014-12-014-40/+42
|/
* Remove delete button in shared with others listVincent Petry2014-11-191-2/+10
| | | | | | | | | Whenever a file is shared with others or with link, a delete button used to be visible that triggered a direct deletion. This button has been removed to avoid accidental deletion from people who might believe it was an unshare button. Unsharing is still possible inside the share dropdown.
* Refactor file sharing public link handlingLukas Reschke2014-11-141-10/+5
| | | | | | | fixes download issue introduced by #10755 Conflicts: apps/files_sharing/public.php
* Merge pull request #9177 from owncloud/jsdocexperimentVincent Petry2014-11-134-9/+75
|\ | | | | Improved JS Docs + added build script for JS Docs
| * Improved Javascript docs for JSDocVincent Petry2014-10-314-9/+75
| | | | | | | | | | | | Added namespaces so that JSDoc can find them. Fixed a few warnings. Improved some comments.
* | Keep the share permissions from mountpointsRobin Appelman2014-10-311-1/+2
| |
* | Dont' use mountpoint permissions as share permissions for external storagesRobin Appelman2014-10-311-0/+4
|/
* Fix SVG iconsLukas Reschke2014-10-161-1/+1
| | | | | | | | | | | | FIXME: Ugly hack to prevent SVG of being returned if the SVG provider is not enabled. This is required because the preview system is designed in a bad way and relies on opt-in with asterisks (i.e. image/*) which will lead to the fact that a SVG will also match the image provider. Conflicts: lib/private/preview.php
* Use SVG previews for public sharingLukas Reschke2014-09-301-11/+20
| | | | Fixes https://github.com/owncloud/core/pull/11367#issuecomment-57306037 and https://github.com/owncloud/core/issues/9218
* fix button text l10nVolkan Gezer2014-09-221-1/+1
|
* Show original path information in trashbin and sharing viewsRobin McCorkell2014-09-111-0/+6
| | | | Path will only be shown if in subdirectory, not in root.
* Client side sort for sharing overviewVincent Petry2014-08-151-0/+2
| | | | | Since the server doesn't support sorting, use client side sort directly instead of calling reload() first.
* fix tiny thumbnails in public preview/share modeDan Jones2014-08-061-0/+1
|
* update attributes for share with user list, file should always have delete ↵Bjoern Schiessle2014-07-281-0/+3
| | | | permissions, this means unshare in this context, and the overview page is always a root view
* Fix preview animation on uploadingVincent Petry2014-07-171-1/+0
| | | | | When adding/uploading files, the preview is now animated. When loading a list of files directly the preview is displayed directly.
* reduce share action text to the user name onlyThomas Müller2014-07-141-1/+1
|
* Added mountType attribute and adapted Delete action textVincent Petry2014-07-141-0/+1
| | | | | | | | | | | | | | Added mountType attribute for files/folder to indicated whether they are regular, external or shared. The client side then adapts the "Delete" action hint text based on this information. Only the mount roots must have the delete icon hint adapted. To make this detectable on the client side, the mountType can now be null, "shared", "shared-root", "external" or "external-root". This also gives room to icon customization on the client side.
* Propagate file action changes to the file listsVincent Petry2014-07-091-0/+40
| | | | | | | | | Whenever an app needs to register an event late, it does that on the original file actions object. Since the file actions that the file list work on is a merged list, not the original one, the registration event needs to be propagated there as well.
* Merge pull request #9499 from owncloud/shares-hidetokenrecipientMorris Jobke2014-07-071-1/+3
|\ | | | | Do not show recipient for link shares in file list
| * Do not show recipient for link shares in file listVincent Petry2014-07-071-1/+3
| | | | | | | | | | | | | | | | In the "Shared with link" section, the share_with field can contain a value when a password was set. This fix prevents this value to be shown as it is not intended for the end user.
* | Merge pull request #9415 from owncloud/external-sharedialogMorris Jobke2014-07-071-4/+31
|\ \ | | | | | | Improved external share dialog
| * | Improved external share dialogVincent Petry2014-07-071-4/+31
| |/ | | | | | | | | Changed title, label and buttons. Removed icon.
* / Fixed shared list sortingVincent Petry2014-07-071-3/+2
|/ | | | | Use Array.sort instead of underscore's sortBy() as they don't use the same method/function signature.
* Merge pull request #9434 from owncloud/files-reloadpromiseissueMorris Jobke2014-07-041-7/+2
|\ | | | | Fix reload call for all subclasses
| * Fix reload call for all subclassesVincent Petry2014-07-041-7/+2
| | | | | | | | All subclasses must also properly return the ajax call object.
* | Merge pull request #9426 from owncloud/design-remoteshare-confirmMorris Jobke2014-07-041-1/+1
|\ \ | | | | | | use icon-confirm instead of text for accepting remote share, works better with translations
| * | use icon-confirm instead of text for accepting remote share, works better ↵Jan-Christoph Borchardt2014-07-041-1/+1
| |/ | | | | | | with translations
* / Return and use isPreviewAvailable for share previewsVincent Petry2014-07-041-5/+4
|/ | | | | Since the mime type is known, now isPreviewAvailable is returned as well and used by the JS side to properly render mime icon and previews.
* Merge pull request #9311 from owncloud/storage-not-availableVincent Petry2014-07-021-1/+1
|\ | | | | Handle storages not being available in webui and webdav
| * Fixed remote share password param detectionVincent Petry2014-07-011-1/+1
| |
* | Merge pull request #9245 from owncloud/server2server-sharing-design-fixesMorris Jobke2014-07-021-1/+0
|\ \ | | | | | | drop unneeded code