aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-11-22Move user server -> message server notifications into a separate threadMelanie Thielker1-1/+86
to make the user server more responsive
2008-11-11* minor: remove log message that gives wrong user server 'version'Justin Clarke Casey1-2/+0
2008-10-06Mantis#2340. Thank you kindly, Sacha Magne for a patch that:Charles Krinke1-4/+5
adding default_loginLevel in USerServer.xml to set a default login level to acces to the grid. Fixing one bug in login_reset
2008-10-05Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
2008-10-04* Check in the second part of ↵Justin Clarke Casey1-7/+12
http://opensimulator.org/mantis/view.php?id=2334 since enough time has passed such that servers following head have probably updated * This patch aims to store look at data when an avatar logs off in grid mode * However, in my short test it doesn't appear to be working yet - numbers are being stored but they don't look correct * But this doesn't appear to cause any login problems * Thanks tyre
2008-10-03* refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey1-3/+1
for consistency's sake
2008-10-03* refactor: make startup a template methodJustin Clarke Casey1-3/+1
2008-10-02Mantis #2314Melanie Thielker2-3/+42
Thank you, sacha magne, for a patch to add login level and message commands to the user server
2008-10-01Add a user server XMLRPC method to set the MOTD and the minimum GodLevelMelanie Thielker2-0/+44
required to log in. set_login_params accepts avatar_uuid and password of a user with god level 200 or more, and allows setting either or both the login_motd or login_level
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz1-2/+32
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.
2008-09-15* Add "reset user password" command to user serverJustin Clarke Casey1-2/+55
* Some copy and pasting has occurred because it's difficult to properly refactor some bits at present. I'm very ashamed and it will disappear at some future point.
2008-09-15* refactor: collapse UpdateUserProfileProperties() into existing ↵Justin Clarke Casey1-1/+1
UpdateUserProfile * the methods were identical except that the Properties one did a check for the user profile beforehand. However, every caller was doing this already anyway.
2008-09-15* Complete refactoring accidentally left unfinished so that all server help ↵Justin Clarke Casey1-6/+9
requests flow through the ShowHelp() method
2008-09-12* Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey1-133/+106
* This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
2008-09-09Update svn properties, formatting cleanup.Jeff Ames1-15/+15
2008-09-07* On a failing login, don't bother trying the default region if it's the ↵Justin Clarke Casey1-4/+8
same as the original login region
2008-09-07* Increase expect_user XMLRPC timeout from 6 to 30 secondsJustin Clarke Casey1-1/+1
* This may possibly (est. 20% change) help the situation that we see on OSGrid meetings when a region stops accepting logins, which appears to be because it never receives the expect_user request
2008-09-07* Improve login failure handling.Justin Clarke Casey1-18/+13
* Now it should properly inform the user and stop a login if a region server could not be contacted in order to expect a user (the last commit didn't actually quite work correctly)
2008-09-07* refactor: Remove duplication in UserLoginService where most of the ↵Justin Clarke Casey1-260/+170
emergency region login code is a cut and paste job of the preceding normal region login code * also, properly tell the user if no region can be contacted, rather than letting the login proceed only to fail later when authentication fails on the region side * copying and pasting code... it makes me cry inside... so sad...
2008-09-07* minor: for now, print out the exception if logging into the initially ↵Justin Clarke Casey1-3/+3
selected region fails, rather than swallowing it
2008-09-07* minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey1-1/+0
process easier * documentation
2008-09-06Mantis #2133Melanie Thielker1-1/+1
Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares4-65/+65
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-09-05Mantis#2048. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-8/+28
The attached patch (against r6075) fixes it for grid-mode. If the home-region isn't available, the stored regionHandle will be used to compute the region-coordinates of the home. This will be wrong if the home-region has moved, of course, but without the region being online we can't request the RegionInfo of it for finding out. Doing that (before the patch) and accessing the (null) RegionInfo led to a NullReferenceException, which prevented logging in to the last location.
2008-08-30* minor: Tiny doc addition to trigger another build that hopefully won't failJustin Clarke Casey1-0/+1
* I can't see why the last compile failed - hoping it's some kind of glitch
2008-08-30* Ditto, UserServer/Main.csAdam Frisby1-25/+23
2008-08-30* More cleanup, including UserManager.Adam Frisby2-119/+138
2008-08-30* Initial inspection of UserLoginService.cs, cleaned up source code slightly ↵Adam Frisby1-34/+27
to make it easier to work with.
2008-08-28Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-08-25* minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey1-1/+0
than displays information directly
2008-08-25* This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares1-1/+1
currently on Forge in a nice, friendly modular format. * There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain.. * Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)
2008-08-24Mantis#2041. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-21/+22
The attached patch fixes that your home-location icon is displayed on the region you logged in, not on your home-region.
2008-08-18Formatting cleanup.Jeff Ames3-22/+19
2008-08-16* Move GridInfoService into Framework.Communications and eliminate ↵Justin Clarke Casey1-1/+0
Common.Communications for now (since this was the only class in that project)
2008-08-15Plumb in the partner and the account title fields for profile info.Melanie Thielker1-0/+29
2008-08-15Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames1-1/+1
2008-08-14Adds UserFlags and GodLevel to the user data store and plumbs then in.Melanie Thielker1-0/+25
This will have no effect unless both the UGAI and the region are this revision or later
2008-08-14Mantis #1953Melanie Thielker1-6/+17
Thank you, HomerHorwitz, for a patch that changes login location handling to use the sim UUID if it has already been stored.
2008-08-14Mantis #1946Melanie Thielker1-0/+7
Thank you, HomerHorwitz, for a patch that corrects and improves TP to landmark and home position handling.
2008-08-13Mantis #1936Melanie Thielker1-1/+0
Thank you, gsky, for a patch that corrects the threading model to use the multithreaded apartment in the grid servers and region server.
2008-08-09* Reinstate grid receive and send keys to user server configJustin Clarke Casey1-1/+2
* Looks like these weren't so unused after all - oops! * Remove message from grid server config
2008-08-09* minor: remove unused grid send/receive keys from user server configurationJustin Clarke Casey1-10/+6
2008-07-28moving GridInfo application plugin into a common standalone/gridDr Scofield1-0/+7
service, adding a plain REST GET handler returning XML (no LLSD), adding appropriate add handler calls to OpenSimBase and UserServer.
2008-07-24* refactor: Remove now redundant inventory server url being passed to ↵Justin Clarke Casey1-7/+2
GetInventorySkeleton
2008-07-24* refactor: move remaining user service -> inventory service OGS1 calls into ↵Justin Clarke Casey2-22/+14
the specific inter service class
2008-07-24* Separate out OGS1 calls used between services (rather than from region to ↵Justin Clarke Casey1-2/+2
services) into a separate assembly to parallel OpenSim.Region.Communications.OGS1
2008-07-24* minor: Rename IInterGridInventoryServices since it's inter service rather ↵Justin Clarke Casey1-3/+3
than inter grid
2008-07-23thanks lulurun for a security patch that blocks unathorized access to the ↵Johan Berntsson2-0/+40
inventory server (see http://opensimulator.org/wiki/Security_vulnerability_brought_by_non-check_inventory_service)
2008-07-22* refactor: move new inventory service call by user server to OGS1 with all ↵Justin Clarke Casey2-7/+9
the other service calls * will post to mailing list about moving this shortly
2008-07-20Mantis#1796. Thank you kindly, StrawberryFride for a patch that:Charles Krinke1-19/+6
Agent table code (INSERT / UPDATE, etc) now added to MSSQL provider.