aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/UserManagement (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-11-16Fix the build breakJustin Clark-Casey (justincc)1-1/+1
2011-11-16Look up a homeURL only when it's not null, in addition to not being string.EmptyJustin Clark-Casey (justincc)1-1/+1
2011-11-15Enable log message to tell us what type of url is being requested from a ↵Justin Clark-Casey (justincc)1-3/+3
user's homeurl
2011-11-15fix build break on UserManagementModule.Justin Clark-Casey (justincc)1-7/+8
This also adds time since started to "show threads". Unfortunately these two changes got mixed in.
2011-11-15Do proper locking of UserManagementModule.m_UserCache when getting.Justin Clark-Casey (justincc)1-29/+57
This might help with [USER AGENT CONNECTOR]: new connector to () [USER AGENT CONNECTOR]: Unable to contact remote server for GetServerURLs [USER AGENT CONNECTOR]: Malformed Uri : Argument cannot be null. Parameter name: uriString
2011-09-10Stop the UserManagementModule logging every user it adds for nowJustin Clark-Casey (justincc)1-3/+3
2011-09-06Add temporary debugging in HGInventoryBroker and ↵Justin Clark-Casey (justincc)1-2/+0
RemoveXInventoryServiceConnector This is for http://opensimulator.org/mantis/view.php?id=5669 If we can't retrieve an IUserManagement module we complain, and we also warn in the log when its manually set in XISC by HGInventoryBroker
2011-08-19Stop NPC's getting hypergrid like names in some circumstances.Justin Clark-Casey (justincc)1-13/+32
This meant punching in another AddUser() method in IUserManagement to do a direct name to UUID associated without the account check (since NPCs don't have accounts). May address http://opensimulator.org/mantis/view.php?id=5645
2011-06-29Hack around with the NPC module to get osNpcCreate() partially working again.Justin Clark-Casey (justincc)1-1/+2
This now creates an avatar but appearance is always cloudy. Move doesn't work. Really, creating an NPC should only involve a ScenePresence rather than doing anything with IClientAPI, since an NPC has no viewer to communicate with!
2011-06-09Change the name of the newest command to "show names" so that it doesn't ↵Diva Canto1-2/+2
conflict with the existing "show users"
2011-06-08Fixed "Unknown User" listed as creator/owner on prims created with the Build ↵Diva Canto1-8/+66
button by foreign visitors. Added command to the UserManagementModule to list all the known bindings between user UUIDs and their names: show user-names.
2011-06-05Narrow down the exception catching to exactly the exception of interest. ↵Diva Canto1-1/+1
This may decrease the time of processing prims with broken user data.
2011-05-26Commented a few extra debug messages.Diva Canto1-2/+2
2011-05-24Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto1-3/+33
window, but can't test because this mechanism doesn't seem to work without a profile service.
2011-05-19HG Friends working to some extent: friendships offered and accepted ↵Diva Canto1-0/+2
correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
2011-01-03Allow cross-scope friendships to work, and also allow other cross scope nameMelanie1-1/+1
resolution
2010-11-25WARNING: LOTS OF CONFIGURATION CHANGES AFFECTING PRIMARILY HG CONFIGS. Added ↵Diva Canto1-0/+5
capability to preserve creator information on HG asset transfers. Added a new HGAssetService that is intended to be the one outside the firewall. It processes and filters the assets that go out of the grid. Also fixed the normal AssetService to do special things for the main instance (console commands, etc). Moved HGInventoryService to OpenSim.Services.HypergridService. Changed the way the login service gets the ServiceURL configs.
2010-11-21Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto1-24/+37
themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being. New migration in inventory table in order to make CreatorID varchar(255).
2010-11-21Global creator information working on MySQL DB and on load/save OARs. ↵Diva Canto1-0/+297
Creator name properly shown on the viewer as first.last @authority. New option added to save oar -profile=url. Migration on RegionStore making CreatorID be 255 chars. Moved Handling of user UUID -> name requests to a new module UserManagement/UserManagementModule.