aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IUserService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-04-30move IUserService into the OpenSim.Framework.Communications assemblySean Dague1-112/+0
because all the other I***Service interfaces are there.
2008-04-29* Spring cleaning.Adam Frisby1-4/+4
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
2008-03-18Formatting cleanup.Jeff Ames1-26/+26
2008-03-03* Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares1-0/+7
* 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-18* Do not allow a user to be created if one with the same name already existsJustin Clarke Casey1-1/+15
2008-01-20* Added hooks for logout to all IUserService and all that implement it.Teravus Ovares1-0/+10
* 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-01* You can add and remove a friend in standalone now within the same ↵Teravus Ovares1-0/+30
simulator. It saves. * You can add and remove a friend in grid mode now within the same simulator. It doesn't save yet. * I got rid of Mr. OpenSim as a friend.. he bothers me /:b...
2007-12-27* Optimized usingslbsa711-2/+2
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-15Put out a more comprehensible message when user authentication fails than ↵Justin Clarke Casey1-1/+1
the current NullReferenceException based one
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-2/+2
notice of doom
2007-12-01Initial working Grid Inventory server. Only been tested on a very small ↵MW1-1/+1
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-19* Changed namespacelbsa711-1/+1
2007-11-13* Added AvatarPicker in Standalone mode. Works for finding avatar to ban, ↵Teravus Ovares1-0/+2
manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D. * Grid mode always returns 0 results until the Grid Communications portion is done.
2007-11-03*Master Avatar can be specified by a previous UUID in either grid mode or ↵mingchen1-0/+1
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-31* Moved OpenSim/Framework/General to OpenSim/Framework for great justice.lbsa711-0/+0
2007-10-31set svn:eol-styleJeff Ames1-47/+47
2007-10-30* Optimized usingslbsa711-1/+0
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-48/+48
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* minor refactoringlbsa711-1/+1
* using base type IUserService
2007-10-05== The "right name and place" commit ==lbsa711-1/+1
* 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
2007-10-05* Moved IUserService to OpenSim.Framework.Interfaceslbsa711-2/+2
2007-10-05* Renamed IUserServices to IUserServicelbsa711-1/+1
2007-09-24* Started major restructusing of comms to prepare for better grid and region ↵lbsa711-0/+5
functionality * Working towards one shared set of services * Killed off two projects with very little functionality
2007-09-10mass update of urls in source code to new websiteSean Dague1-1/+1
2007-07-31clear userAgent state on client shutdown, which fixes the issueSean Dague1-0/+1
where you could only login once with a given id in standalone mode.
2007-07-16changed to native line ending encodingSean Dague1-43/+43
2007-07-03* Optimized usings (the 'LL ate my scripts' commit)lbsa711-4/+0
* added some licensing info
2007-06-28*User Profile requests on OGS UserServer now uses XMLRPC instead of REST mingchen1-1/+4
*Added base support for setting up a master user