aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/GridUser (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-6/+11
2012-10-04One more abstraction for GridUser so that it can be overridden in a sub-class.Diva Canto1-2/+7
2012-05-09Where necessary, rename OpenSim/Services/Connectors/*.cs files to reflect ↵Justin Clark-Casey (justincc)1-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.
2012-02-07Add url to logging if SynchronousRestFormsRequester.MakRequest() throws an ↵Justin Clark-Casey (justincc)1-6/+9
exception in service connectors
2012-01-16Allow retrival of multiple user records in one operation, analog to presenceMelanie1-0/+60
2011-04-12Moved 3 request handlers from OpenSim.Framework.Servers.HttpServer up to ↵Diva Canto1-1/+0
OpenSim.Framework -- just pasted them in WebUtil. This is so that code that uses the Service connectors don't need to include the HttpServer dll -- that was odd.
2010-09-29Part two of the previous commit, making IGridUserService.LoggedOut() more ↵John Hurliman1-1/+1
flexible without changing current behavior
2010-09-29Made IGridUserService.SetLastPosition() more flexible to allow different ↵John Hurliman1-1/+1
possible implementations. This doesn't change any behavior or any Robust code, but it simplifies the SimianGrid connector by using the standard OpenSim interface for setting last position now
2010-06-05* Bug fix in TP home: typo in unpacking of GridUserInfo.Diva Canto1-2/+0
* Bug fix in TPs across neighboring regions: bug was introduced when getting rid of crashed sessions.
2010-05-20Removed sessionID from GridUserservice again. Removed parcel crossing ↵Diva Canto1-2/+2
detection from Robust connector. Fixed Simian to continue to send those location updates upon parcel crossing, without changing the interface.
2010-05-20* Added sessionID to IGridUserService.SetLastPosition(), as some connectors ↵unknown1-1/+1
will want to track position against sessionID instead of userID * Updated SimianPresenceServiceConnector to use the new LoggedOut/SetHome/etc methods and only update session position on parcel crossing
2010-05-07GridUserService in place. Replaces the contrived concept of storing user's ↵Diva Canto1-2/+194
home and position info in the presence service. WARNING: I violated a taboo by deleting 2 migration files and simplifying the original table creation for Presence. This should not cause any problems to anyone, though. Things will work with the new simplified table, as well as with the previous contrived one. If there are any problems, solving them is as easy as dropping the presence table and deleting its row in the migrations table. The presence info only exists during a user's session anyway. BTW, the Meshing files want to be committed too -- EOFs.
2010-03-10Formatting cleanup. Add copyright notices.Jeff Ames1-2/+2
2010-03-05Justin, I must have been dyslexic when I wrote UserGridService as the name ↵Diva Canto1-0/+38
for it. GridUserService makes more sense; it's the user of the grid, "grid user". I changed it everywhere.