aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/UserManager.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-42/+42
* 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* More cleanup, including UserManager.Adam Frisby1-87/+89
2008-08-18Formatting cleanup.Jeff Ames1-1/+1
2008-08-15Plumb in the partner and the account title fields for profile info.Melanie Thielker1-0/+29
2008-08-14Adds UserFlags and GodLevel to the user data store and plumbs then in.Melanie Thielker1-0/+25
This will have no effect unless both the UGAI and the region are this revision or later
2008-08-14Mantis #1946Melanie Thielker1-0/+7
Thank you, HomerHorwitz, for a patch that corrects and improves TP to landmark and home position handling.
2008-07-23thanks lulurun for a security patch that blocks unathorized access to the ↵Johan Berntsson1-0/+39
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-0/+1
the other service calls * will post to mailing list about moving this shortly
2008-07-20Mantis#1796. Thank you kindly, StrawberryFride for a patch that:Charles Krinke1-19/+6
Agent table code (INSERT / UPDATE, etc) now added to MSSQL provider.
2008-06-27last round of warning squashing. calling it a day now.Dr Scofield1-20/+20
2008-06-04Formatting cleanup, minor refactoring, svn properties.Jeff Ames1-4/+4
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* Committing more unfinished stuff. Nothing significant at the moment. IM ↵Teravus Ovares1-0/+48
related.
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares1-0/+48
* 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-25Update svn properties. Formatting cleanup.Jeff Ames1-3/+6
2008-05-20i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield1-1/+5
provide OSHttpRequest and OSHttpResponse to our REST handler. also, this adds proper RestPlugin.IsGod() checking against the X-OpenSim-Godkey HTTP request header. last, i added XML doc comments to RestPlugin.cs
2008-05-19i can haz pantz?Sean Dague1-1/+7
You sure can. This change set restores pants (and the rest of the default appearance) in grid mode. The root issue had to do with serializing multi-faced textures to the grid server. This also restores the lookup path through the avatar factory module, as that seems the reasonable place to have it live. Some clean up patches are coming later as well, plus testing on standalone, but this should be in a good kicking around state for grid users.
2008-05-17Formatting cleanup.Jeff Ames1-2/+2
2008-05-16in theory implement the backend of appearance for grid.Sean Dague1-0/+44
testers encouraged so I can track down issues.
2008-05-16Formatting cleanup.Jeff Ames1-10/+10
2008-05-01* Rolled back a few changes.Adam Frisby1-66/+66
2008-05-01* Cleaning code still.Adam Frisby1-66/+66
2008-05-01* Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby1-1/+1
with namespaces.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-8/+9
(this took a while to run).
2008-04-17* Implements 'Set Home to Here' Teravus Ovares1-0/+87
* Implements 'Teleport Home' * User Server has to be updated for it to save your home in grid mode * home position accuracy is in int because the grid comms ExpectUser method tries to convert to Uint and crashes if it gets a float. Added a convert to decimal in ExpectUser but to avoid a breaking change with old revisions, kept the save value in int for now. Eventually it needs to be a float, but lets release another incremental version before doing that.
2008-04-10further renaming of properties for claritySean Dague1-11/+11
2008-04-10moved fields to properties for UserDataProfile, which wasSean Dague1-24/+24
actually a little more work than I expected given the copious use of out params.
2008-03-18Formatting cleanup.Jeff Ames1-26/+26
2008-03-17Replaced some Console.WriteLine calls with writes to log.Jeff Ames1-1/+3
2008-03-03* More compiler warning nukage.Adam Frisby1-2/+0
2008-03-03* Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares1-0/+55
* 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-03-02Change handler001 through handler009 to moreCharles Krinke1-4/+4
appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
2008-02-26* More Message server stuff. Still not ready.Teravus Ovares1-2/+9
2008-02-05Converted logging to use log4net.Jeff Ames1-10/+4
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-04Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey1-10/+1
2008-01-28* Add total logouts (and total logins) to server side user statsJustin Clarke Casey1-4/+9
* Passing the stats collector through object chains is not ideal - this will change when more stats come in * This change will need a prebuild
2008-01-20* Added hooks for logout to all IUserService and all that implement it.Teravus Ovares1-0/+37
* Added a Logout message with a name on the console * Added a *fixme* message to figure out why the current agent session is null * After updating you may notice that there's a login <user> and also a logout<user>
2008-01-07*Added ability to update only necessary data on insertRegion for the grid ↵mingchen1-1/+1
server.
2008-01-02* Updates UserServer Teravus Ovares1-1/+97
* Updates OSG1UserServices * Friends list is now persistent in grid mode. * You can add, new friends and remove them
2007-12-27* Optimized usingslbsa711-15/+17
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-21* Fixed UserServer crash when it's passed 00000000000000000000000000 as the ↵Teravus Ovares1-3/+28
UUID. * It turns out that by proxy, this means that you won't have to look up people's UUID anymore in grid mode, If the UUID is LLUUID.Zero, it tries to look up avatar by name.
2007-12-20Comment out "METHOD BY UUID CALLED" WriteLine as it isCharles Krinke1-1/+2
obscuring the UserServer console for now.
2007-12-20Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames1-6/+6
Works with LibSL rev>1532
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-2/+2
notice of doom
2007-12-04* Avatar picker works in grid mode now.Teravus Ovares1-0/+36
* To test, click the communicate button, then click the 'add' button and type a name. You will get a list of closely matching avatar names. * Before this'll work on your sim in grid mode, the UGA needs to be updated. If it isn't updated, then you'll get a message on the sim console when searching like, 'got invalid queryid'.
2007-11-03*Master Avatar can be specified by a previous UUID in either grid mode or ↵mingchen1-0/+5
standalone mode by specifying a master_avatar_uuid attribute in the place of master_avatar_xxxx_name and master_avatar_password.You will not be asked for the name and password if a valid UUID is specified.
2007-10-30* Optimized usingslbsa711-9/+8
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-2/+2
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-05* So, ok, maybe renaming serialized fields on a friday wasn't the smartest ↵lbsa711-19/+19
of things. Reverting 2056.
2007-10-05* UserProfileData meets code conventionslbsa711-19/+19