aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-01-28* Add total logouts (and total logins) to server side user statsJustin Clarke Casey2-9/+13
* 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-25* Add very basic initial login stats to the user serverJustin Clarke Casey2-4/+16
* Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next
2008-01-20* Added hooks for logout to all IUserService and all that implement it.Teravus Ovares2-0/+38
* 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-15* Mother of all commits:Adam Frisby2-4/+32
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
2008-01-09* This update enables the web_login method.Teravus Ovares1-0/+2
* Remember, the client doesn't support web_login to other grids in the current RC, however the next RC will.
2008-01-09* Added a hashtable based HTTP processor in preparation of the web_login_keyTeravus Ovares1-0/+1
* Added the web_login_key to the users table * Added happy configurable http error message pages * This update is large enough to have 'awe' value.. so backup your users or weep. * Not tested on MSSQL, even though I added code to update the tables!
2008-01-07*Added ability to update only necessary data on insertRegion for the grid ↵mingchen1-1/+1
server.
2008-01-07* Adding More to the MessageServer classes.Teravus Ovares1-0/+27
* Don't forget to prebuild
2008-01-06* A few more Message Server comms related updatesTeravus Ovares1-2/+2
2008-01-06* Added some userserver glue for communications with the message server Teravus Ovares3-1/+183
* Added some code for the message server, fixed a few references and starting to flesh it out.
2008-01-05* Applying jhurliman's LLSD login enablement patch.Teravus Ovares1-1/+2
* I'm keeping it deactivated until some issues are resolved. * I'm patching it in deactivated so the patch doesn't get outdated * I've deactivated it by commenting out the handler for the application/xml+llsd content type. * While I've tested this as much as possible on my setup and found the deactivated code doesn't cause any problems, consider this update experimental (event though it's deactivated)
2008-01-05And another log-instead-of-crash... when creating user fails.Tedd Hansen1-3/+19
2008-01-02* Updates UserServer Teravus Ovares2-2/+102
* Updates OSG1UserServices * Friends list is now persistent in grid mode. * You can add, new friends and remove them
2007-12-31Standard library folders can now be configued in the xml in ↵Justin Clarke Casey2-3/+8
inventory/OpenSimLibrary - no hardcoded changes are required. For some reason, all the folders are currently showing up as texture folders, even though they are configured with the same types as the agent inventory folders. This should be resolved soon.
2007-12-27* Optimized usingslbsa713-55/+63
* 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 Ames2-10/+10
Works with LibSL rev>1532
2007-12-16More subtle message tuning of log messages.Charles Krinke1-1/+1
2007-12-16A bit more tuning of UserServer messages.Charles Krinke1-6/+8
2007-12-16Comment out an unneeded "Home Location" message.Charles Krinke1-1/+2
2007-12-16Improve UserServer login messages for logging.Charles Krinke1-4/+8
2007-12-15* Make inventory operations sync rather than async. This is to alleviate ↵Justin Clarke Casey1-5/+9
race conditions such as that in mantis #190 * Make inventory messages more verbose. Hopefully they aren't now too verbose * This may resolve some grid instability but it's likely there's much more out there.
2007-12-14* Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST ↵Teravus Ovares2-7/+7
calls
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames2-4/+4
notice of doom
2007-12-08This patch fixes mantis 105. Basically, it stops the index exception whenSean Dague1-7/+27
no root folder is found and it makes the user server wait longer for the inventory server to do its work. From Justin Casey (IBM)
2007-12-06removed some duplicate hard-coded port numbers. changed ports to uint.Jeff Ames2-3/+3
2007-12-05Some refactoring of the RestObjectPoster (and related classes).MW2-3/+3
2007-12-04* Avatar picker works in grid mode now.Teravus Ovares2-0/+38
* 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-12-04* Fixed a whole bunch of console messages.Adam Frisby2-10/+10
2007-12-04* Removed 12 compiler warnings.Adam Frisby1-1/+1
2007-12-02Some refactoring , mainly on Inventory code. MW2-3/+3
2007-12-01On login, if a set of inventory folders doesn't exist for the user then a ↵MW1-1/+9
new set is created in the inventory database. Most likely still better to use some other script to populate the inventory database instead of relaying on this.
2007-12-01Initial working Grid Inventory server. Only been tested on a very small ↵MW2-1/+68
grid, so likely to have problems on a larger grid with more people? To use , both the user server and Inventory server need to be running this latest revision. (older regions should be able to still be used, just the user won't have inventory on them). Also and HERE IS THE BIG BREAK ISSUE, currently, so that the initial inventory details for a user are added to the inventory db , you need to recreate the accounts using the user server "create user" feature. It should be quite easy to manual populate the inventory database instead but I someone else will need to look into that) Also I've only tested using SQLite as the database provider, there is a Mysql inventory provider but I don't know if it works (SQLite is set as default, so you will need to change it in the inventory server config.xml)
2007-11-25Added new configuration item to User Server: X and Y of region to send user ↵Brian McBee1-61/+124
to if their logon region is down. Known good region, sort of.
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 usingslbsa714-55/+59
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW3-7/+7
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-25apply http://bug.opensecondlife.org/view.php?id=512 from chillkenSean Dague1-1/+1
which cleans up the verbose logic
2007-10-19get rid of all the ^M line endingsSean Dague1-1/+1
2007-10-17Renamed SimProfileData to RegionProfileDataTleiades Hax1-2/+2
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa711-0/+29
2007-10-15* Chillken Patch #417 - upgraded version numbers to 0.4 - thanks Chillken!lbsa711-1/+1
2007-10-13Change 3 UserServer login messages from writeline to MainLog to help ↵Charles Krinke1-3/+5
diagnose failed grid logins.
2007-10-12I broke the build and am reverting until I can get the MainLog call proper.Charles Krinke1-7/+7
2007-10-12Turn a few of the writelines into mainlog entries so failed logins can be ↵Charles Krinke1-7/+7
more easily analyzed.
2007-10-05getting all our line endings consistant againSean Dague1-96/+96
2007-10-05* So, ok, maybe renaming serialized fields on a friday wasn't the smartest ↵lbsa712-32/+32
of things. Reverting 2056.
2007-10-05* UserProfileData meets code conventionslbsa712-32/+32
2007-10-05== The "right name and place" commit ==lbsa712-81/+82
* Moved InventoryData to Framework.Types/InventoryItemBase.cs * Moved UserData to Framework.Interfaces/IUserData.cs * Moved UserProfileData to Framework/Types/UserProfileData.cs * Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round) * Changed some namespaces to reflect file structure