aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/Main.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
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.
2008-09-15* Complete refactoring accidentally left unfinished so that all server help ↵Justin Clarke Casey1-6/+9
requests flow through the ShowHelp() method
2008-09-06Mantis #2133Melanie Thielker1-1/+1
Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-10/+10
* 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.
2008-08-30* minor: Tiny doc addition to trigger another build that hopefully won't failJustin Clarke Casey1-0/+1
* I can't see why the last compile failed - hoping it's some kind of glitch
2008-08-30* Ditto, UserServer/Main.csAdam Frisby1-25/+23
2008-08-25* minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey1-1/+0
than displays information directly
2008-08-25* This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares1-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)
2008-08-18Formatting cleanup.Jeff Ames1-11/+10
2008-08-16* Move GridInfoService into Framework.Communications and eliminate ↵Justin Clarke Casey1-1/+0
Common.Communications for now (since this was the only class in that project)
2008-08-13Mantis #1936Melanie Thielker1-1/+0
Thank you, gsky, for a patch that corrects the threading model to use the multithreaded apartment in the grid servers and region server.
2008-08-09* minor: remove unused grid send/receive keys from user server configurationJustin Clarke Casey1-10/+6
2008-07-28moving GridInfo application plugin into a common standalone/gridDr Scofield1-0/+7
service, adding a plain REST GET handler returning XML (no LLSD), adding appropriate add handler calls to OpenSimBase and UserServer.
2008-07-24* refactor: move remaining user service -> inventory service OGS1 calls into ↵Justin Clarke Casey1-3/+3
the specific inter service class
2008-07-24* Separate out OGS1 calls used between services (rather than from region to ↵Justin Clarke Casey1-2/+2
services) into a separate assembly to parallel OpenSim.Region.Communications.OGS1
2008-07-24* minor: Rename IInterGridInventoryServices since it's inter service rather ↵Justin Clarke Casey1-3/+3
than inter grid
2008-07-23thanks lulurun for a security patch that blocks unathorized access to the ↵Johan Berntsson1-0/+1
inventory server (see http://opensimulator.org/wiki/Security_vulnerability_brought_by_non-check_inventory_service)
2008-07-22* refactor: move new inventory service call by user server to OGS1 with all ↵Justin Clarke Casey1-7/+8
the other service calls * will post to mailing list about moving this shortly
2008-07-08Added option to userserver config, to be able disable/enable the LLSD Login ↵MW1-1/+4
support. As far as I know, the LLSD login method is currently only used by libsl based clients/bots. So could be useful to be able to disable this if a grid comes under a griefing attack from libsl bots.
2008-06-01* This enables grid-wide instant messaging in a peer to peer with tracker ↵Teravus Ovares1-1/+1
style way over XMLRPC. * Friend status updates are still only local, so you still won't know before instant messaging someone if they're online. * The server each user is on and the user server must be updated or the instant message won't get to the destination.
2008-06-01* Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey1-1/+3
must remember to nant clean * Hook all server startups into base opensim server startup method
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares1-0/+63
* User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
2008-05-16in theory implement the backend of appearance for grid.Sean Dague1-0/+2
testers encouraged so I can track down issues.
2008-05-16* Minor: For no particularly good reason, make all console prompts conform ↵Justin Clarke Casey1-1/+1
to the same prompt scheme
2008-05-16Formatting cleanup.Jeff Ames1-23/+23
2008-05-14* Refactor additional stats collection common code into base opensim serverJustin Clarke Casey1-7/+2
* If extra stats not sent to the viewer are available on an opensim server, they are now uniformly accessible using the 'show stats' command
2008-05-14Formatting cleanup.Jeff Ames1-2/+2
2008-05-09* Fix opensim region server shutdown.Justin Clarke Casey1-1/+1
2008-05-08* Some refactorings.Adam Frisby1-1/+1
* Added shell of new Python scripting engine. Similar in design to the one used by Rex, but will be structured at a region rather than object level, also is a region module.
2008-05-07* Move shutdown processing to base OpenSimServer, overriding the method ↵Justin Clarke Casey1-8/+8
where appropriate * This also means that the command quit (as well as shutdown) will now close down grid servers (instead of only being in place for the region server)
2008-05-02plumb in connection string to the user database paths. mysql and mssqlSean Dague1-1/+1
just ignore this for now, but it lets us get connect strings to sqlite and nhibernate.
2008-05-01* Rolled back a few changes.Adam Frisby1-73/+72
2008-05-01* Cleaning code still.Adam Frisby1-72/+73
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-3/+7
(this took a while to run).
2008-04-20* Change user inventory create from explicit 'create user' command on the ↵Justin Clarke Casey1-8/+28
console from sync to async * Catch more error conditions and provide more messages when things go wrong
2008-03-28* Refactored out common http handler operationslbsa711-43/+26
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-03-03* Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares1-0/+1
* Fixed a few bugs in the patch that are sim crashers. * There's still a bug in mySQL mode/ grid mode where the main userprofile text doesn't save.
2008-02-26* More Message server stuff. Still not ready.Teravus Ovares1-2/+11
2008-02-25* Message Server Linkages (still not ready for use so don't start it yet)Teravus Ovares1-0/+1
2008-02-18* Do not allow a user to be created if one with the same name already existsJustin Clarke Casey1-9/+14
2008-02-14Changed UserServer create user password input to cleartext so we can see ↵Tedd Hansen1-1/+2
what the all the fuzz/blur is about. Make sure that you hide your monitor and that there are no black vans with large antennas parked outside while you type the password. Actually, turn off your monitor while typing password. Then press reset button on your computer.
2008-02-10Clean up logging calls using String.Format explicitlyJeff Ames1-2/+2
2008-02-07Update version numbers to 0.5Jeff Ames1-1/+1