aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/HypergridService/HGFriendsService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-1/+1
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-1/+2
|
* Improve efficiency of friends notification by only make one PresenceService ↵Justin Clark-Casey (justincc)2012-10-201-1/+1
| | | | | | call for all friends rather than one for each friend. However, large groups could still take a very long time since we still need to message each avatar on different simulators.
* Remove some mono compiler warningsJustin Clark-Casey (justincc)2012-06-301-13/+13
|
* HG Friends: reroute the status notifications to the HGFriends service, so ↵Diva Canto2012-03-211-0/+107
| | | | that they can scale better. They were previously being handled by the UAS; that is still there, but it's now obsolete and will be removed in a future release.
* HG Friends: allow the establishment of HG friendships without requiring ↵Diva Canto2012-03-201-0/+301
| | | | co-presence in the same sim. Using avatar picker, users can now search for names such as "first.last@grid.com:9000", find them, and request friendship. Friendship requests are stored if target user is offline. TESTED ON STANDALONE ONLY.
* More on HG Friends. Added Delete(string, string) across the board. Added ↵Diva Canto2011-05-221-86/+0
| | | | security to friendship identifiers so that they can safely be deleted across worlds. Had to change Get(string) to use LIKE because the secret in the identifier is not always known -- affects only HG visitors. BOTTOM LINE SO FAR: HG friendships established and deleted safely across grids, local rights working but not (yet?) being transmitted back.
* File to be removedDiva Canto2011-05-221-11/+0
|
* Fixed permissions bug related to friends in PermissionsModule. Added ↵Diva Canto2011-05-211-1/+3
| | | | FriendsData[] GetFriends(string principalID) to IFriendsData and FriendInfo[] GetFriends(string PrincipalID) to IFriendsService. Refactored some more in the FriendsModule. Made client get notification of local friends permissions upon HGLogin. HG Friends object permissions work.
* HG Friends working to some extent: friendships offered and accepted ↵Diva Canto2011-05-191-0/+95
correctly handled. Friends list showing correct foreign names. TODO: GrantRights.