aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid (follow)
Commit message (Collapse)AuthorAgeFilesLines
* GridManager.GetRegions() now returns a List, not a Dictionary. Also removed ↵Mike Mazur2008-10-291-40/+35
| | | | some trailing whitespace.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-10-271-1/+1
|
* - Added BaseHttpServer.StopHomer Horwitz2008-10-221-21/+34
| | | | | | | - Added "register" command to MessagingServer to re-register with the UserServer after that crashed/was restarted.
* * Apply a modified version of the part of ↵Justin Clarke Casey2008-10-132-3/+53
| | | | | | | | | | | | | | http://opensimulator.org/mantis/view.php?id=2361 that allows region registration to be enabled/disabled on the grid server * Region registration is enabled by default in the configuration unless the user chooses otherwise * On the console * show status - shows grid status * enable-reg - enables region registration to the grid * disable-reg - disables region registration * Enabling or disabling region registration will not affect any other grid functions or regions already on the grid
* Mantis#2340. Thank you kindly, Sacha Magne for a patch that:Charles Krinke2008-10-061-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
* Update svn properties, minor formatting cleanup.Jeff Ames2008-10-051-1/+1
|
* * Check in the second part of ↵Justin Clarke Casey2008-10-041-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
* Add the missing bits for the new region-search:Homer Horwitz2008-10-032-0/+71
| | | | | | | | | | | | | | | | - Added lookup in the data-layer - MySQL works - SQLite doesn't have a grid-db, so it won't work there - I added MSSQL-code to the best of my knowledge; but I don't know MSSQL :-) - Added the plumbing up to OGS1GridServices. This speaks with the grid-server via XMLRPC. - Modified MapSearchModule to use the new data. It's backward compatible; if used with an old grid-server, it just returns one found region instead of a list. - Refactored a bit. Note: This updates data, grid-server and region code. No new files.
* * refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey2008-10-033-9/+3
| | | | for consistency's sake
* * refactor: make startup a template methodJustin Clarke Casey2008-10-035-17/+5
|
* Mantis #2314Melanie Thielker2008-10-022-3/+42
| | | | | | | Thank you, sacha magne, for a patch to add login level and message commands to the user server
* Add a user server XMLRPC method to set the MOTD and the minimum GodLevelMelanie Thielker2008-10-012-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
* * Apply http://opensimulator.org/mantis/view.php?id=2295Justin Clarke Casey2008-09-291-1/+1
| | | | | | | | | | * Updated MSSQL to reflect resend changes * Added the new columns in prims table. * Created a implementation for getting gestures. * Remove configurable table names for user. * Thanks Ruud Lathorp
* Mantis#2289. Thank you kindly, SMeans for a patch that:Charles Krinke2008-09-281-1/+0
| | | | | | Corrects the spurious reference to MySQL namespace in GridManager.cs.
* * Patch from JHurlimanTeravus Ovares2008-09-264-4/+4
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz2008-09-244-2/+62
| | | | | | | | | 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.
* More ScriptEngine cleanupTedd Hansen2008-09-1730-10956/+0
|
* * Add "reset user password" command to user serverJustin Clarke Casey2008-09-151-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.
* * refactor: collapse UpdateUserProfileProperties() into existing ↵Justin Clarke Casey2008-09-151-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.
* * Complete refactoring accidentally left unfinished so that all server help ↵Justin Clarke Casey2008-09-152-9/+16
| | | | requests flow through the ShowHelp() method
* MessageServer gets the agent position (positionx/y/z) as float, not as int inHomer Horwitz2008-09-141-3/+3
| | | | | | the login_to_simulator message. Changed parsing accordingly (#2190).
* Mantis #2124Melanie Thielker2008-09-141-12/+12
| | | | | | | Thank you, RuudL, for a patch that brings MSSQL up to the same implementation level as MySQL.
* * Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey2008-09-121-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.
* Note to self: VisualSVN not fully compatible with OpenSim prebuild :)Tedd Hansen2008-09-1211-932/+0
|
* Cut of remote server as AppDomains and even WCF can do it better (better ↵Tedd Hansen2008-09-121-1/+0
| | | | means less code in this case)
* From: alan_webb@us.ibm.comSean Dague2008-09-091-0/+3
| | | | | | | Make CHANGED constants consistent with LSL, and consistent across the code base
* Update svn properties, formatting cleanup.Jeff Ames2008-09-091-15/+15
|
* * On a failing login, don't bother trying the default region if it's the ↵Justin Clarke Casey2008-09-071-4/+8
| | | | same as the original login region
* * Increase expect_user XMLRPC timeout from 6 to 30 secondsJustin Clarke Casey2008-09-071-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
* * Improve login failure handling.Justin Clarke Casey2008-09-071-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)
* * refactor: Remove duplication in UserLoginService where most of the ↵Justin Clarke Casey2008-09-071-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...
* * minor: for now, print out the exception if logging into the initially ↵Justin Clarke Casey2008-09-071-3/+3
| | | | selected region fails, rather than swallowing it
* * minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey2008-09-071-1/+0
| | | | | | | | process easier * documentation
* Mantis #2133Melanie Thielker2008-09-064-4/+4
| | | | | | | Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-0617-152/+152
| | | | | | | * 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.
* Mantis#2048. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-09-051-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.
* * minor: Tiny doc addition to trigger another build that hopefully won't failJustin Clarke Casey2008-08-301-0/+1
| | | | | | * I can't see why the last compile failed - hoping it's some kind of glitch
* * Ditto, UserServer/Main.csAdam Frisby2008-08-301-25/+23
|
* * More cleanup, including UserManager.Adam Frisby2008-08-302-119/+138
|
* * Initial inspection of UserLoginService.cs, cleaned up source code slightly ↵Adam Frisby2008-08-301-34/+27
| | | | to make it easier to work with.
* Update svn properties, formatting cleanup.Jeff Ames2008-08-281-1/+1
|
* * minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey2008-08-251-1/+0
| | | | than displays information directly
* * This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares2008-08-251-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)
* Mantis#2041. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-241-21/+22
| | | | | | The attached patch fixes that your home-location icon is displayed on the region you logged in, not on your home-region.
* Mantis#2036. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-231-3/+15
| | | | | | Not enough logging. Added IP endpoing of request to the log messages on lookup-failure
* Mantis#2036. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-231-4/+10
| | | | | | This patch adds some more informative logging if the region isn't found.
* Formatting cleanup.Jeff Ames2008-08-1816-70/+60
|
* * Move GridInfoService into Framework.Communications and eliminate ↵Justin Clarke Casey2008-08-161-1/+0
| | | | Common.Communications for now (since this was the only class in that project)
* Plumb in the partner and the account title fields for profile info.Melanie Thielker2008-08-151-0/+29
|
* Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames2008-08-151-1/+1
|