aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/share.js
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #7943 from hjort/masterVincent Petry2014-04-011-3/+3
|\ | | | | Correction: failure on sharing when user ID was prefixed by zero
| * Correction: failure on sharing when user ID was prefixed by zeroRodrigo Hjort2014-03-281-3/+3
| |
* | Merge pull request #7724 from owncloud/mobileThomas Müller2014-03-281-4/+4
|\ \ | |/ |/| [WIP] Mobile optimization for base layout and Files app
| * add spans around replaced 'Shared' indicators to make text hide on mobileJan-Christoph Borchardt2014-03-141-4/+4
| |
* | Merge pull request #7557 from owncloud/issue/7297Vincent Petry2014-03-191-1/+13
|\ \ | |/ |/| Do not allow setting an expiration date in the past
| * Use tipsy to display error when selecting a date in the pastJoas Schilling2014-03-191-2/+10
| |
| * Do not allow setting an expiration date in the pastJoas Schilling2014-03-051-1/+5
| | | | | | | | Fix #7297
* | fix some spaces to tabs issues reported by ScrutinizerJan-Christoph Borchardt2014-03-051-2/+2
|/
* add expire date to link share if possibleBjoern Schiessle2014-01-241-1/+5
|
* Fixed various file name escaping issues in core appsVincent Petry2014-01-101-3/+7
| | | | | | | - 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
* Show stars as placeholderganomi2013-11-261-1/+1
|
* Check which permissions are possible to re-share a fileBjoern Schiessle2013-11-181-1/+16
|
* allow to share a file/folder as public link also if one of it parents was ↵Bjoern Schiessle2013-10-301-2/+4
| | | | already shared as link
* Merge pull request #5396 from owncloud/fix-sharing-codeMorris Jobke2013-10-291-9/+23
|\ | | | | Fix sharing error message - id -> file name
| * also add new parameter to function callsMorris Jobke2013-10-291-4/+4
| |
| * pass the name of the item source from the browser to the server - no need to ↵Thomas Müller2013-10-231-5/+19
| | | | | | | | get the data via complicated db queries
* | Merge pull request #5497 from owncloud/ie8-placeholdershimThomas Müller2013-10-231-0/+3
|\ \ | | | | | | Ie8 placeholdershim
| * | Fixed sharing dropdown placeholders in IE8/9Vincent Petry2013-10-231-0/+3
| |/ | | | | | | Added jquery.placeholder shim to handle input field placeholders in IE8/9
* | Merge pull request #5435 from owncloud/share-improvementsThomas Müller2013-10-231-36/+18
|\ \ | |/ |/| Share improvements
| * Fixed share dropdown checkbox wrappingVincent Petry2013-10-231-10/+15
| | | | | | | | | | | | | | The "show cruds" button is now embedded into the last label/checkbox group and wraps with it. Added ellipsis to prevent long names to exceed the dropdown's width.
| * better wording for share input field and share linkJan-Christoph Borchardt2013-10-231-2/+2
| |
| * shorten string to 'notify by email', cut 'user'Jan-Christoph Borchardt2013-10-201-1/+1
| |
| * remove hover hide/show stuff for share dropdown to make things more obviousJan-Christoph Borchardt2013-10-201-26/+3
| |
* | Merge pull request #5446 from frisco82/fixNotifyUserFrank Karlitschek2013-10-211-11/+10
|\ \ | | | | | | Fix notify user checkbox
| * | fix notify user, and made js more resiliant to changesRamiro Aparicio2013-10-211-11/+10
| |/
* | Merge pull request #5120 from frisco82/sendEmailJSVincent Petry2013-10-211-4/+4
|\ \ | | | | | | Fix disabled status after sending a share link email
| * | Fix disabled status after sending the emailRamiro Aparicio2013-10-041-4/+4
| | |
* | | Merge pull request #5444 from frisco82/fixDisplayGroupVincent Petry2013-10-211-5/+7
|\ \ \ | | | | | | | | Fix display name for user after sharing
| * | | fix user displayName not being shown after add, added class for improved ↵Ramiro Aparicio2013-10-211-5/+7
| | |/ | |/| | | | | | | styling, fix strong for groups when english is not being used
* / | Fixed share with link checkbox missing as regular userVincent Petry2013-10-211-12/+1
|/ / | | | | | | | | | | | | | | | | Instead of loading the app config setting "shareapi_allow_links" using a synchronous ajax call that fails when the user is not an admin, this fix puts the flag directly in the template so it doesn't need to be loaded afterwards. Fixes #5440
* | Merge pull request #5338 from frisco82/fixGroupDisplayMorris Jobke2013-10-181-1/+4
|\ \ | | | | | | Show (group) after groups in share dropdown
| * | Show (group) after groups in share dropdownRamiro Aparicio2013-10-141-1/+4
| | |
* | | readability: single line -> multiple linesMorris Jobke2013-10-181-4/+10
| | |
* | | Fix accidental deletion of ifMichael Gapczynski2013-10-181-0/+1
| | |
* | | Don't show links option in dropdown if disabledMichael Gapczynski2013-10-181-1/+6
| | |
* | | Added missing var in share.jsVincent Petry2013-10-171-0/+1
| | |
* | | Fixed sharing status update for new/uploaded filesVincent Petry2013-10-171-39/+57
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Prevent share dropdown to close too early with autocompleteVincent Petry2013-10-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | When clicking on an autocomplete result in the sharing dropdown, it will mistakenly be detected as being clicked outside and would trigger the sharing dropdown closing. This fix adds a check to detect clicks inside the autocomplete and prevent closing the dropdown in that case. This fixes #4142
* | Fixed label for sharing notification to be clickableVincent Petry2013-10-071-1/+1
| | | | | | | | | | Fixed the sharing notification checkbox label in the file sharing dropdown, which makes it possible to click on the label directly.
* | Prevent scroll up when click on links in sharing dropdownVincent Petry2013-10-071-0/+2
| | | | | | | | | | | | | | | | | | When clicking on a link that points to "#" in the sharing dropdown, and the current view is scrolled down, the browser will scroll the page up to the top (anchor behavior). This fix cancels the click event when clicking on "unshare" link or "show crud" link.
* | Merge branch 'master' into sharing_mail_notification_masterBjoern Schiessle2013-10-021-2/+2
|\| | | | | | | | | Conflicts: lib/private/util.php
| * Merge pull request #4887 from owncloud/sharing_disable_public_uploadBjörn Schießle2013-09-261-2/+2
| |\ | | | | | | check only permission from link-share to decide if public upload is enabled or disabled
| | * we can leave the loop if the permission of the link share was checkedBjoern Schiessle2013-09-171-3/+1
| | |
| | * check only permission from link-share to decide if public upload is enabled ↵Bjoern Schiessle2013-09-171-1/+3
| | | | | | | | | | | | or disabled
* | | some small js fixesBjoern Schiessle2013-09-241-4/+5
| | |
* | | Merge branch 'master' into sharing_mail_notification_masterBjoern Schiessle2013-09-231-2/+13
|\| | | | | | | | | | | | | | Conflicts: lib/public/share.php
| * | Merge pull request #4896 from owncloud/sharing_allow_disable_passwordBjörn Schießle2013-09-231-1/+12
| |\ \ | | | | | | | | sharing, allow user to disable password protection
| | * | initialize variableBjoern Schiessle2013-09-201-0/+1
| | | |
| | * | calculate correct permissions while toggle the password protectionBjoern Schiessle2013-09-201-1/+11
| | |/
| * / css selectors never have a : before []Jörn Friedrich Dreyer2013-09-191-1/+1
| |/