aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/Main.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-01-10All grid servers deleted, including user server. They served us well.Diva Canto1-316/+0
2010-01-10Moved GridInfo service from where it was to Handlers/GridDiva Canto1-7/+0
2010-01-10* Starting to clean the house...Diva Canto1-7/+0
* Fixed circular dependency
2009-10-01Formatting cleanup.Jeff Ames1-2/+2
2009-09-23minor: remove double initialization of user appearance module in ↵Justin Clark-Casey (justincc)1-4/+0
Grid.UserServer.Main
2009-08-21Add -xmlfile= option to UGM, to let the files be outside bin if desiredMelanie1-1/+4
2009-08-19Graft the REST console onto the grid server. Same procedure as withMelanie1-1/+0
the user server.
2009-08-19Add rest console support to the user server. Will ask new questions atMelanie1-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
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-30Added a AvatarCreationModule to the user server. This handles the "cloning" ↵MW1-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.
2009-05-20Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker1-2/+2
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-0/+1
2009-05-04Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker1-2/+2
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 :)
2009-04-22* Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey1-2/+9
service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules
2009-03-27Added the hg login procedure to the user server.diva1-0/+8
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-25Renamed IUGAIMCore to IGridServiceCore, still not really happy with this ↵MW1-1/+2
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. MW1-109/+58
2009-02-24More work on modulising the User Server. MW1-29/+35
2009-02-24Removed the additions from the last revision for the "ShowHelp" delegate ↵MW1-17/+1
handling, as it seems that system isn't in use anymore.
2009-02-24More refactoring of the Grid/user/messaging servers.MW1-6/+24
2009-02-24First step in separating out the Userserver console command handling to a ↵MW1-265/+11
"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.MW1-74/+105
2009-02-22Part 1 of refactoring the userserver. Changed it so instead of subclassing ↵MW1-6/+10
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-12* Renamed RegionProfileService to RegionProfileServiceProxy to better ↵lbsa711-1/+1
reflect actual use. * Added IRegionProfileService
2009-02-12* Turned RegionProfileService non-staticlbsa711-1/+2
2009-02-12* optimized usings.lbsa711-2/+1
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-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.
2008-12-30OpenUser_Main is now public. Fixes Mantis #2940. Thanks SirKimbaHomer Horwitz1-1/+1
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 Ovares1-0/+6
* 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 Krinke1-6/+0
for System.Web.Mobile
2008-12-19Mantis#2816. Thank you kindly, JHurliman for the beginnings of Charles Krinke1-0/+6
OpenID support in OpenSim for the UserServer.
2008-12-02* reverted 7561 as the logger reference should always be private to the ↵lbsa711-1/+1
class. Thanks sdague for the protip!
2008-12-02Made BaseOpenSimServer.ShutdownSpecific() public. As the ↵MW1-1/+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* refactor: move CreateUser into UserServiceAdminJustin Clarke Casey1-45/+19
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 ↵lbsa711-6/+18
justice.
2008-11-2305:24:49 - [PRESENCE]: Logging off 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb ↵Melanie Thielker1-0/+18
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 Thielker1-0/+29
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.
2008-11-23Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke1-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.
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-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 Thielker1-3/+30
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 Thielker1-0/+1
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-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.