aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Hypergrid (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-194-19/+41
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-034-522/+227
|
* HG: Hopefully this fixes the issues with port 80 once and for all.Diva Canto2012-11-071-1/+1
|
* Revert "Added request.Proxy=null everywhere, as discussed in ↵Diva Canto2012-09-302-2/+0
| | | | | | | | http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow." But the patch is here, in case anyone wants to try it. This reverts commit 531edd51d82ecd6a842a2611c99e9919634491ef.
* Added request.Proxy=null everywhere, as discussed in ↵Diva Canto2012-09-302-0/+2
| | | | | | http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow. Thanks R.Gunther (rigun@rigutech.nl) https://lists.berlios.de/pipermail/opensim-users/2012-September/010986.html
* Where necessary, rename OpenSim/Services/Connectors/*.cs files to reflect ↵Justin Clark-Casey (justincc)2012-05-092-0/+0
| | | | | | | | the actual class names. This is usually because the file name was singular (*Service*) but the class name was plural (*Services*). This is to make configuration easier rather than having to look in the c# code itself to find the slightly different name of the connector. This does not affect existing configuration since the files are being renamed rather than the classes.
* Remember to dispose of the bitmap opened from a file in ↵Justin Clark-Casey (justincc)2012-04-201-4/+11
| | | | GatekeeperServiceConnector.GetMapImage()
* HG Friends: reroute the status notifications to the HGFriends service, so ↵Diva Canto2012-03-212-0/+53
| | | | 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-8/+59
| | | | 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.
* Added GetUUID(first, last) on UserAgentsService so that we can finally make ↵Diva Canto2012-03-171-1/+60
| | | | direct user connections.
* Add url to logging if SynchronousRestFormsRequester.MakRequest() throws an ↵Justin Clark-Casey (justincc)2012-02-071-6/+9
| | | | exception in service connectors
* minor: remove mono compiler warningJustin Clark-Casey (justincc)2012-01-071-1/+1
|
* Profile UpdatesBlueWall2012-01-031-0/+54
| | | | Update basic profile to use the replaceable interface, making configuration less error-prone. Add support to query avatar's home user account and profile service for regions usng the updated OpenProfileModule with Hypergrid.
* HG: more adjustments for making HG Simian work. Added server_uri as new key ↵Diva Canto2011-12-292-1/+4
| | | | on get_agent_home in UAS.
* HG: more / love for XmasDiva Canto2011-12-241-2/+25
|
* HG: AAdded a few missing /'s at the end of URLsDiva Canto2011-12-231-1/+1
|
* HG minor bug fix and marked one method obsolete in UAS.Diva Canto2011-12-161-0/+1
|
* HG: Added HEAD method to Helo service. This is the preferred method, but its ↵Diva Canto2011-12-041-0/+2
| | | | wide use will have to wait a few releases. So the sims are still calling GET for now.
* HG: Renamed one methodDiva Canto2011-12-041-1/+1
|
* Increase information in logging for UserAgentServiceConnector.Justin Clark-Casey (justincc)2011-09-081-12/+12
| | | | Done for http://opensimulator.org/mantis/view.php?id=5669
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2011-07-161-35/+36
|
* Only send AgentOnline to the client if the friendsOnline list has elements. ↵Diva Canto2011-06-111-1/+1
| | | | Also, increased the timeout on UserAgentServiceConnector, StatusNotification again.
* More tweaking on the UserAgentServiceConnector: add constructor that does ↵Diva Canto2011-06-101-13/+22
| | | | not do DNS lookup, and use that for friends notification.
* Decreased timeout of HG StatusNotification to 4secs. ↵Diva Canto2011-06-101-1/+1
| | | | http://opensimulator.org/mantis/view.php?id=5516
* This hopefully fixes all issues with online/offline notifications across ↵Diva Canto2011-06-071-2/+53
| | | | grids. http://opensimulator.org/mantis/view.php?id=5528
* Commented a few extra debug messages.Diva Canto2011-05-261-2/+0
|
* HG IM in grid mode working fairly well. Unknown target user references ↵Diva Canto2011-05-261-0/+61
| | | | looked back in source user's User Agent service.
* HG: Instant Message working. Tested on HG standalones only. Needs a lot more ↵Diva Canto2011-05-251-0/+58
| | | | testing.
* Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto2011-05-241-1/+65
| | | | window, but can't test because this mechanism doesn't seem to work without a profile service.
* HG friends: Status notifications working. Also initial logins get the online ↵Diva Canto2011-05-231-0/+91
| | | | friends in other grids.
* More on HG Friends. Added Delete(string, string) across the board. Added ↵Diva Canto2011-05-221-0/+50
| | | | 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.
* Fixed permissions bug related to friends in PermissionsModule. Added ↵Diva Canto2011-05-211-28/+9
| | | | 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/+175
| | | | correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
* Oops, forgot this one.Diva Canto2011-05-021-1/+1
|
* Canonicalize URL endings for the UserAgentServiceConnector.Diva Canto2011-01-061-1/+5
|
* HG map tile fetch: handle cached images appropriately.Diva Canto2011-01-061-4/+12
|
* Cleaned up debugging messages in the WebRequest handlersMic Bowman2011-01-031-1/+1
|
* Standardize the way WebRequests are made in the SimulationServiceConnector. ↵Mic Bowman2010-12-291-29/+35
| | | | | | Added debugging calls for tracking performance of web requests.
* More on mantis #5270Diva Canto2010-12-141-2/+3
|
* Changed logging level for message about failure to retrieve a map image from ↵Marck2010-12-131-1/+1
| | | | a linked region.
* Show map tile for hyperlinks. Perform Check4096 before adding a hyperlink.Marck2010-12-131-14/+15
| | | | | | Configuration option AssetService in section [GridService] must be set to enable this functionality. Map tiles do currently not show for hyperlinks set in simulators that are connected to grids, see Mantis #5270.
* Normalized ALL URLs with trailing /'s hopefully. Fixed show hyperlinks ↵Diva Canto2010-12-091-1/+1
| | | | command. mantis #5259
* Fixed some inconsistency with trailing /. Made debug messages consistent. ↵Diva Canto2010-12-051-14/+14
| | | | Changed the stored region names of HG regions. Increased the size of regionName in DB.
* * change the data exchanged within hypergrid transactionsJonathan Freedman2010-10-212-14/+23
|
* * remove some spurious debug infoJonathan Freedman2010-10-201-15/+15
|
* Merge branch 'master' of git://opensimulator.org/git/opensimJonathan Freedman2010-10-051-2/+6
|\
| * Added viewer's channel, mac, and id0 to agent circuit data. Also moved ↵Diva Canto2010-10-031-2/+6
| | | | | | | | client ip address to agent circuit data, so that it's always there.
* | * additional serveruri cleanupJonathan Freedman2010-10-031-8/+6
| |
* | * refactor refactor refactor ServerURI 4 lyfeJonathan Freedman2010-10-021-12/+19
|/
* Formatting cleanup.Jeff Ames2010-09-121-1/+1
|