aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Major change to how appearance is managed, including changes in login and ↵diva2009-02-171-0/+10
| | | | user service/server. Appearance is now sent by the user service/server along with all other loginparams. Regions don't query the user service for appearance anymore. The appearance is passed along from region to region as the avie moves around. And, as before, it's stored back with the user service as the client changes the avie's appearance. Child agents have default appearances that are set to the actual appearance when the avie moves to that region. (as before, child agents are invisible and non-physical).
* Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames2009-02-131-1/+1
| | | | warnings. Fix some m_log declarations.
* * Renamed RegionProfileService to RegionProfileServiceProxy to better ↵lbsa712009-02-122-3/+3
| | | | | | | reflect actual use. * Added IRegionProfileService
* * Turned RegionProfileService non-staticlbsa712009-02-122-6/+9
|
* * Added RegionProfileService and moved RequestSimData to it.lbsa712009-02-121-4/+4
|
* * optimized usings.lbsa712009-02-125-8/+5
|
* Add proper handling for shared vs. unshared modules to the commandMelanie Thielker2009-02-101-7/+7
| | | | | | | | interface. Shared modules will now only get added once, so the command handler is called once per module, not once per scene. Removal of scenes has no adverse effects. Nonshared modules will be called for each scene.
* * Refactored UserLoginService.CustomiseResponse to be (almost) text-wide ↵lbsa712009-02-071-12/+36
| | | | identical to LocalLoginService.CustomiseResponse in order to be able to pull them up.
* Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker2009-02-071-24/+70
| | | | | | | | | line editing, context sensitive help (press ? at any time), command line history, a new plugin command system and new appender features thet let you type while the console is scrolling. Seamlessly integrates the ICommander interfaces.
* Thank you dslake for a patch that:lbsa712009-02-071-1/+1
| | | | | * fixes mantis #3092: User Server sets agent starting position to passed x/y/x instead of x/y/z
* * Add a second logoffuser message with the region secret. Teravus Ovares2009-01-131-1/+32
| | | | | * This ensures that the user will be logged off successfully by a properly permissioned user server
* * Fix an invalid seed cap that could be causing issues.Teravus Ovares2009-01-131-0/+4
| | | | | | * CapsUtil.GetRandomCapsObjectPath(); contains a / and the regionInfo.httpServerURI contains a / so that makes * response.SeedCapability = regionInfo.httpServerURI + CapsUtil.GetCapsSeedPath(capsPath); contain two "//" leading to a seed caps path definition like //CAPS/f7ba4238-ec86-4a2b-b3f6-4d9b56070000/, which is wrong
* * prune and regrade log messages relating to client login and logoutJustin Clarke Casey2009-01-061-1/+1
|
* * Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with ↵Justin Clarke Casey2009-01-061-1/+1
| | | | | | | | terminology used elsewhere * Last build break was probably a Bamboo failure - hopefully this should succeed
* * Move common string aggregation for caps seed path to a method in CapsUtilJustin Clarke Casey2009-01-061-2/+1
|
* * minor: Move GetRandomCapsPath() to a CapsUtil classJustin Clarke Casey2009-01-061-1/+2
|
* * Extend stub to test the successful login of a user on the local login serviceJustin Clarke Casey2009-01-051-0/+1
| | | | | | * Test does not do authentication
* * Check in login service tests beachheadJustin Clarke Casey2009-01-051-0/+1
|
* OpenUser_Main is now public. Fixes Mantis #2940. Thanks SirKimbaHomer Horwitz2008-12-301-1/+1
|
* Update svn properties, minor formatting cleanup.Jeff Ames2008-12-301-339/+339
|
* * Apply http://opensimulator.org/mantis/view.php?id=2927 with some changesJustin Clarke Casey2008-12-291-1/+1
| | | | | | | | | * This allows configuration of the assetset and library control file paths to be other than ./inventory/Libraries.xml and ./assets/AssetSets.xml * This is controlled via the LibrariesXMLFile and AssetSetsXMLFile configuration settings in [StandAlone] in OpenSim.ini (in standalone) and via the user and asset config xml files for grid mode * Thanks to SirKimba for the patch
* * ReCommit the OpenID patch with a few less dependencies.Teravus Ovares2008-12-202-0/+345
| | | | | | * Removes all references to ASP.NET (System.Web.UI,*) * Removes all references to System.Web.Mobile
* Revert OpenId until we can come to grips with the mono 2 requirementCharles Krinke2008-12-202-345/+0
| | | | | for System.Web.Mobile
* Mantis#2816. Thank you kindly, JHurliman for the beginnings of Charles Krinke2008-12-192-0/+345
| | | | | OpenID support in OpenSim for the UserServer.
* * reverted 7561 as the logger reference should always be private to the ↵lbsa712008-12-022-2/+2
| | | | class. Thanks sdague for the protip!
* Made BaseOpenSimServer.ShutdownSpecific() public. As the ↵MW2008-12-022-2/+1
| | | | OpenSimBase.Shutdown() includes a Environment.Exit(0); which is not always wanted when shutting down, like from a windows service.
* * Making log available for subclasseslbsa712008-12-011-1/+1
|
* * minor: Eliminate unused paramter in LocalUserServices constructorsJustin Clarke Casey2008-11-281-2/+2
|
* * refactor: move CreateUser into UserServiceAdminJustin Clarke Casey2008-11-283-47/+31
|
* * Opened the registration of http handlers up for subclassinglbsa712008-11-271-1/+1
|
* * Adding some virtual hooks and making some privaets protected for great ↵lbsa712008-11-253-8/+20
| | | | justice.
* 05:24:49 - [PRESENCE]: Logging off 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb ↵Melanie Thielker2008-11-233-1/+74
| | | | | | | | because the region they were in has gone Or, in other words, a region crash/restart no longer messes up presence.
* Plumb in the presence notifications and region shutdown/restart messagesMelanie Thielker2008-11-233-1/+168
| | | | | | | | | from the presence module to the message server, through the user server and on into the database. This should fix the "Already logged in" issue that grids see after a sim crashes, or a user crashes out of a sim. Not yet a 100% solution for friends, but getting there.
* Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke2008-11-231-56/+85
| | | | | | | | This patch adds the option of adding the email when you create a new user. This works in Gridmode as none Gridmode. This option is also added to RemoteAdminPlugin. With a new handler you can create a user with a email.
* Move user server -> message server notifications into a separate threadMelanie Thielker2008-11-221-1/+86
| | | | | | to make the user server more responsive
* * minor: remove log message that gives wrong user server 'version'Justin Clarke Casey2008-11-111-2/+0
|
* 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
* * refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey2008-10-031-3/+1
| | | | for consistency's sake
* * refactor: make startup a template methodJustin Clarke Casey2008-10-031-3/+1
|
* 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
* Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz2008-09-241-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.
* * 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-151-6/+9
| | | | requests flow through the ShowHelp() method
* * 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.
* 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