summaryrefslogtreecommitdiffstats
path: root/core/ajax/share.php
Commit message (Collapse)AuthorAgeFilesLines
* Kill ajax/share.phpRoeland Jago Douma2016-08-181-375/+0
| | | | | Using this file will insert invalid shares. OCS has to be used exclusively!
* Update with robinJoas Schilling2016-07-211-1/+1
|
* Fix othersJoas Schilling2016-07-211-3/+4
|
* Update license headersLukas Reschke2016-05-261-3/+3
|
* Generate a valid URL for link notificationRoeland Jago Douma2016-03-151-2/+4
| | | | | | fixes #23197 * Updated unit test
* Update author informationLukas Reschke2016-03-011-1/+1
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Fix on shared groups assignment.Leonardo Diez2016-02-181-1/+1
|
* Remove modifying calls in ajax/share.phpRoeland Jago Douma2016-02-091-86/+0
| | | | | Those calls used the old sharing endpoint that created incompatible shares. Which eventually would lead to some weird bugs.
* Happy new year!Thomas Müller2016-01-121-2/+1
|
* User IUser::getEMailAddress() all over the placeThomas Müller2015-12-021-7/+13
|
* Remove invalid type-castLukas Reschke2015-10-291-4/+4
| | | | | | This is an `is_array` operation and not a `in_array` one. Thus this typecast is not required. Fixes https://github.com/owncloud/core/issues/20095
* Update license headersLukas Reschke2015-10-261-1/+1
|
* Fix for broken ajax/share.php endpointRoeland Jago Douma2015-10-231-3/+23
| | | | | Even more code mess :( All tests pass again. But I'm really not happy with this endpoint.
* update licence headers via scriptMorris Jobke2015-10-051-0/+1
|
* Merge pull request #13145 from owncloud/issue/11951-activity-sharing-emailThomas Müller2015-09-251-0/+31
|\ | | | | Publish an activity when sending a share link via email
| * Publish an activity when sending a share link via emailJoas Schilling2015-09-221-0/+31
| |
* | Add option to disable autocomplete in share dialogMorris Jobke2015-09-231-0/+10
|/
* Merge pull request #17565 from owncloud/fix/remote_shareRoeland Douma2015-07-131-1/+1
|\ | | | | allow remote shares for users with email as usernames
| * allow remote shares for users with email as usernamesFelix Böhm2015-07-101-1/+1
| |
* | Merge pull request #17163 from owncloud/update-licensesLukas Reschke2015-06-271-1/+2
|\ \ | | | | | | Update license headers
| * | update license headers and authorsMorris Jobke2015-06-251-1/+2
| | |
* | | Merge pull request #17008 from owncloud/fix-17006Björn Schießle2015-06-261-0/+2
|\ \ \ | | | | | | | | Improve splitting of username and remote adress when username contains an `@`
| * | | Use \OC\HintException and translate the hintJoas Schilling2015-06-221-0/+2
| |/ /
* | | Merge pull request #17165 from ↵Thomas Müller2015-06-261-0/+16
|\ \ \ | | | | | | | | | | | | | | | | owncloud/federated_cloud_sharing_search_address_book Search address book for federated cloud id
| * | | search address book for federated cloud idBjoern Schiessle2015-06-251-0/+16
| |/ /
* / / Fix for #17178Roeland Jago Douma2015-06-251-2/+9
|/ / | | | | | | | | | | If no array of arrays is submitted make sure we still keep $sharedUsers and $sharedGroups as arrays so the rest of the code keeps functioning as it should.
* | add support for limit request parameter to getShareWithCraig Morrissey2015-05-151-3/+5
| |
* | Use internally \OCP\ILogger instead of \OC\LogMorris Jobke2015-04-301-1/+1
| | | | | | | | | | | | * this is the preparation for some upcoming logger related changes * also fixes an issue in the public interface where we request an internal class as parameter
* | Add "Reply-To" support to sharing mails and refactor codeLukas Reschke2015-04-101-2/+16
| |
* | Merge pull request #15182 from rullzer/fix-8231Thomas Müller2015-04-101-0/+17
|\ \ | | | | | | ajax/share.php should return correct list of suggestions
| * | Make sure we do not return people that we already shared withRoeland Jago Douma2015-03-251-0/+17
| |/ | | | | | | | | We should use the provided list of users and groups that we already shared with to filter suggestions.
* | Merge pull request #15169 from rullzer/fix_displayNamesInGroupMorris Jobke2015-03-301-1/+1
|\ \ | | | | | | Groupmanagers displayNamesInGroup should actually search in displaynames
| * | Call the proper functionRoeland Jago Douma2015-03-241-1/+1
| |/ | | | | | | * Fix for #6967
* / Update license headersJenkins for ownCloud2015-03-261-18/+32
|/
* Revert "Updating license headers"Morris Jobke2015-02-261-33/+19
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-19/+33
|
* Manually type-case all AJAX filesLukas Reschke2015-02-131-38/+38
| | | | | | This enforces proper types on POST and GET arguments where I considered it sensible. I didn't update some as I don't know what kind of values they would support :see_no_evil: Fixes https://github.com/owncloud/core/issues/14196 for core
* kill ancient codeMorris Jobke2015-01-201-17/+0
|
* shareType and permissions are integersBjoern Schiessle2015-01-071-2/+2
|
* Next step in server-to-server sharing next generation, see #12285Bjoern Schiessle2014-12-191-1/+16
| | | | | | | | | | | | | | 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.
* Merge pull request #9512 from libasys/patch-2Lukas Reschke2014-09-091-1/+2
|\ | | | | Fix use Sharing Api with calendar
| * Fix use Sharing Api with calendarlibasys2014-07-081-2/+3
| | | | | | | | | | Without this fix it logs this error: Undefined index: itemSourceName at /opt/local/apache2/htdocs/oc7/core/ajax/share.php#44 I think the itemSourceName is only used with sharing files!
* | Use public api for getting l10nRobin Appelman2014-08-311-3/+3
| |
* | we need the recipient as a additional parameter to know for which share the ↵Bjoern Schiessle2014-08-131-2/+2
| | | | | | | | notification was send
* | in case $_POST['itemSourceName'] does not exist we simply default it to nullThomas Müller2014-08-011-1/+2
| |
* | add OCS api call to set expire date for link sharesBjoern Schiessle2014-07-251-11/+5
|/
* set minDate and maxDate in datepickerBjoern Schiessle2014-06-061-0/+2
|
* unify share settingsBjoern Schiessle2014-06-051-3/+3
|
* Automatically copy the share expiration date when new shares are createdJoas Schilling2014-05-191-1/+2
| | | | Fix #4823
* Merge pull request #5857 from owncloud/type-ahead-share-by-mail-masterThomas Müller2014-04-111-0/+28
|\ | | | | introduce auto completion on share email - integrated with the contactsm...