aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2009-10-012-4/+4
|
* minor: remove double initialization of user appearance module in ↵Justin Clark-Casey (justincc)2009-09-231-4/+0
| | | | Grid.UserServer.Main
* Add -xmlfile= option to UGM, to let the files be outside bin if desiredMelanie2009-08-211-1/+4
|
* Graft the REST console onto the grid server. Same procedure as withMelanie2009-08-191-1/+0
| | | | the user server.
* Add rest console support to the user server. Will ask new questions atMelanie2009-08-191-1/+38
| | | | | | startup. To use, run it normally once, answering the questions, then run again with -console=rest. Also now supports -console=basic for a console that reads stdin
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-101-1/+1
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-015-5/+5
| | | | LICENSE.txt.
* Added a AvatarCreationModule to the user server. This handles the "cloning" ↵MW2009-05-301-0/+9
| | | | | | | | | | | of a existing avatar's inventory to another avatar's inventory (the base method will also create the inventory for a new avatar if the avatar doesn't alreayd have any inventory). The code also sets the target avatar as wearing whatever the template avatar was wearing (including attachments). The idea is to allow the use of this to give new avatars a more interesting avatar (and inventory set) than the current default. I have include a console command that will clone the inventory from one existing user (template avatar) to another existing avatar (target avatar). The format of the command is : "clone avatar <templateAvatarFirstName> <templateAvatarLastName> <targetAvatarFirstName> <targetAvatarLastName>" (to use this console command on new accounts, the "create user" command will need to be used first) While the code was designed for hooking up to a remote call from a web interface, I have left the hookup code out of this commit, as I believe most use cases will want to handle it differently. Also added a "trusted handler" to the inventory server to allow the user server to create new folders in a user's inventory. All this is in the old UGAIM servers so will need porting to the new servers.
* * Upped version number to 0.6.5lbsa712009-05-251-2/+2
|
* Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker2009-05-201-2/+2
|
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-043-0/+3
|
* Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker2009-05-042-6/+6
| | | | | | | | console capable of processing commands. Create LocalConsole as a console that uses cursor control and context help. Precursor to a distributed console system for the new grid services. No functional change intended :)
* * Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey2009-04-222-2/+49
| | | | | | | | service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules
* * Upped trunk version number to 0.6.4 as we just tagged 0.6.4-releaselbsa712009-04-011-1/+1
|
* Added the hg login procedure to the user server.diva2009-03-271-0/+8
|
* svn attribute fixes so that we can play nice between windows and linuxSean Dague2009-02-261-141/+141
|
* Added a PostInitialise method to IApplicationPlugin, this allows us to do ↵MW2009-02-261-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.
* * minor: Remove most mono compiler warningsJustin Clarke Casey2009-02-251-0/+2
|
* Renamed IUGAIMCore to IGridServiceCore, still not really happy with this ↵MW2009-02-253-4/+5
| | | | name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
* More refactoring of the Grid, User and Messaging servers. MW2009-02-253-113/+209
|
* Setting svn:eol-style=native on new files.Mike Mazur2009-02-241-366/+366
|
* More work on modulising the User Server. MW2009-02-242-35/+56
|
* Removed the additions from the last revision for the "ShowHelp" delegate ↵MW2009-02-242-28/+1
| | | | handling, as it seems that system isn't in use anymore.
* More refactoring of the Grid/user/messaging servers.MW2009-02-242-15/+46
|
* First step in separating out the Userserver console command handling to a ↵MW2009-02-2410-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.
* More refactoring of the UserServer.MW2009-02-247-229/+529
|
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-02-231-68/+68
|
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-221-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.
* Part 1 of refactoring the userserver. Changed it so instead of subclassing ↵MW2009-02-223-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.
* Addresses some issues with appearance after TPs. Appearance.Owner was not ↵diva2009-02-221-1/+1
| | | | being set, and that's what's being used in SendAppearanceToOtherAgent. Mantis #3204.
* A small improvement in the UserLoginService, hence the User Server: users ↵diva2009-02-211-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).
* * Upped VersionInfo to 0.6.3 and in the process, changed assemblyinfo to ↵lbsa712009-02-201-3/+3
| | | | 0.6.3.* to better track down dll ref and overwrite problems.
* 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
|