aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-26svn attribute fixes so that we can play nice between windows and linuxSean Dague1-141/+141
2009-02-26Added a PostInitialise method to IApplicationPlugin, this allows us to do ↵MW1-2/+2
work in there knowing that all other ApplicationPlugins have been initialised by that time. Moved the loadRegions code in LoadRegionsPlugin to the PostInitialise method.
2009-02-25* minor: Remove most mono compiler warningsJustin Clarke Casey1-0/+2
2009-02-25Renamed IUGAIMCore to IGridServiceCore, still not really happy with this ↵MW3-4/+5
name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
2009-02-25More refactoring of the Grid, User and Messaging servers. MW3-113/+209
2009-02-24Setting svn:eol-style=native on new files.Mike Mazur1-366/+366
2009-02-24More work on modulising the User Server. MW2-35/+56
2009-02-24Removed the additions from the last revision for the "ShowHelp" delegate ↵MW2-28/+1
handling, as it seems that system isn't in use anymore.
2009-02-24More refactoring of the Grid/user/messaging servers.MW2-15/+46
2009-02-24First step in separating out the Userserver console command handling to a ↵MW10-2805/+360
"module". Added OpenSim.Grid.UserServer.Modules project/dll which now contains the components of the userserver. With the OpenSim.Grid.UserServer being the setup and initiate exe.
2009-02-24More refactoring of the UserServer.MW7-229/+529
2009-02-23Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames1-68/+68
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-2/+2
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
2009-02-22Part 1 of refactoring the userserver. Changed it so instead of subclassing ↵MW3-46/+107
the User dataBase access class (UserManagerBase) and then adding the http handlers to that. There is now a UserDataBaseService that is passed to the other classes so they can access the db. This should make it easier to have multiple "modules" that can register http handlers and access the db.
2009-02-22Addresses some issues with appearance after TPs. Appearance.Owner was not ↵diva1-1/+1
being set, and that's what's being used in SendAppearanceToOtherAgent. Mantis #3204.
2009-02-21A small improvement in the UserLoginService, hence the User Server: users ↵diva1-2/+5
are now being given a default appearance if there is none in the user database. This issue affected newly created accounts, which aren't given an appearance at time of creation. May address some of the issues reported in mantis #3204 (but the incompatibility with pre-8447 is unaffected and continues to exist).
2009-02-20* Upped VersionInfo to 0.6.3 and in the process, changed assemblyinfo to ↵lbsa711-3/+3
0.6.3.* to better track down dll ref and overwrite problems.
2009-02-17Major change to how appearance is managed, including changes in login and ↵diva1-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).
2009-02-13Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames1-1/+1
warnings. Fix some m_log declarations.
2009-02-12* Renamed RegionProfileService to RegionProfileServiceProxy to better ↵lbsa712-3/+3
reflect actual use. * Added IRegionProfileService
2009-02-12* Turned RegionProfileService non-staticlbsa712-6/+9
2009-02-12* Added RegionProfileService and moved RequestSimData to it.lbsa711-4/+4
2009-02-12* optimized usings.lbsa715-8/+5
2009-02-10Add proper handling for shared vs. unshared modules to the commandMelanie Thielker1-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.
2009-02-07* Refactored UserLoginService.CustomiseResponse to be (almost) text-wide ↵lbsa711-12/+36
identical to LocalLoginService.CustomiseResponse in order to be able to pull them up.
2009-02-07Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker1-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.
2009-02-07Thank you dslake for a patch that:lbsa711-1/+1
* fixes mantis #3092: User Server sets agent starting position to passed x/y/x instead of x/y/z
2009-01-13* Add a second logoffuser message with the region secret. Teravus Ovares1-1/+32
* This ensures that the user will be logged off successfully by a properly permissioned user server
2009-01-13* Fix an invalid seed cap that could be causing issues.Teravus Ovares1-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
2009-01-06* prune and regrade log messages relating to client login and logoutJustin Clarke Casey1-1/+1
2009-01-06* Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with ↵Justin Clarke Casey1-1/+1
terminology used elsewhere * Last build break was probably a Bamboo failure - hopefully this should succeed
2009-01-06* Move common string aggregation for caps seed path to a method in CapsUtilJustin Clarke Casey1-2/+1
2009-01-06* minor: Move GetRandomCapsPath() to a CapsUtil classJustin Clarke Casey1-1/+2
2009-01-05* Extend stub to test the successful login of a user on the local login serviceJustin Clarke Casey1-0/+1
* Test does not do authentication
2009-01-05* Check in login service tests beachheadJustin Clarke Casey1-0/+1
2008-12-30OpenUser_Main is now public. Fixes Mantis #2940. Thanks SirKimbaHomer Horwitz1-1/+1
2008-12-30Update svn properties, minor formatting cleanup.Jeff Ames1-339/+339
2008-12-29* Apply http://opensimulator.org/mantis/view.php?id=2927 with some changesJustin Clarke Casey1-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
2008-12-20* ReCommit the OpenID patch with a few less dependencies.Teravus Ovares2-0/+345
* Removes all references to ASP.NET (System.Web.UI,*) * Removes all references to System.Web.Mobile
2008-12-20Revert OpenId until we can come to grips with the mono 2 requirementCharles Krinke2-345/+0
for System.Web.Mobile
2008-12-19Mantis#2816. Thank you kindly, JHurliman for the beginnings of Charles Krinke2-0/+345
OpenID support in OpenSim for the UserServer.
2008-12-02* reverted 7561 as the logger reference should always be private to the ↵lbsa712-2/+2
class. Thanks sdague for the protip!
2008-12-02Made BaseOpenSimServer.ShutdownSpecific() public. As the ↵MW2-2/+1
OpenSimBase.Shutdown() includes a Environment.Exit(0); which is not always wanted when shutting down, like from a windows service.
2008-12-01* Making log available for subclasseslbsa711-1/+1
2008-11-28* minor: Eliminate unused paramter in LocalUserServices constructorsJustin Clarke Casey1-2/+2
2008-11-28* refactor: move CreateUser into UserServiceAdminJustin Clarke Casey3-47/+31
2008-11-27* Opened the registration of http handlers up for subclassinglbsa711-1/+1
2008-11-25* Adding some virtual hooks and making some privaets protected for great ↵lbsa713-8/+20
justice.
2008-11-2305:24:49 - [PRESENCE]: Logging off 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb ↵Melanie Thielker3-1/+74
because the region they were in has gone Or, in other words, a region crash/restart no longer messes up presence.
2008-11-23Plumb in the presence notifications and region shutdown/restart messagesMelanie Thielker3-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.