aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/UserProfiles (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Changed how UserProfile performs a fallback call using the OpenProfile API, ↵Oren Hurvitz2014-04-241-30/+37
| | | | because now JsonRpcRequest() returns an error result instead of throwing an exception
* Refactored: moved OpenProfileClient to a location where it can be used by ↵Oren Hurvitz2014-04-242-193/+1
| | | | both the Simulators and Robust
* Catch empty url errorBlueWall2014-04-191-0/+3
|
* Fix issue with user picks creation. The snapshot id is UUID.Zero in new parcels.BlueWall2014-03-251-6/+0
|
* Move JsonRpc request code out for general availabilityBlueWall2014-03-251-173/+19
|
* In Core Profiles: as a fallback, try to get profiles from foreign grids ↵Oren Hurvitz2014-03-252-2/+219
| | | | | | using the OpenProfile protocol Resolves http://opensimulator.org/mantis/view.php?id=6954
* Prevent adding a land object if it overlaps any existing objects that have ↵Justin Clark-Casey (justincc)2014-03-061-11/+21
| | | | | | | | not had their bitmaps adjusted. This is to prevent an immediate problem in http://opensimulator.org/mantis/view.php?id=7035 where a development code bug occasionally overlays all the existing parcels with a blank parcel owned by the estate manager and to gather more data. My guess is that this parcel is being created by the new code in LandManagementModule.GetLandObject(), probably some race between threads since this only happens occasionally. Adds regression tests for this case and for parcel subdivide.
* Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-02-141-1/+10
|\
| * Change warns associated with UserAgentServiceConnector to debugs, as this is ↵Justin Clark-Casey (justincc)2014-02-141-1/+1
| | | | | | | | | | | | not necessarily a problen with the source simulator (e.g. someone else's remote simulator cannot be contacted). This is Oren Hurvitz's second patch from http://opensimulator.org/mantis/view.php?id=6956 with a small amount of correction
| * If calls to UserAgentServiceConnector fail then throw an exception. This ↵Justin Clark-Casey (justincc)2014-02-141-1/+10
| | | | | | | | | | | | lets the caller decide whether to discard the error or not. This is Oren Hurvitz's 0001 patch from http://opensimulator.org/mantis/view.php?id=6956 but I ended up doing some tweaking to resolve patch application issues.
* | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-311-42/+35
|\ \ | |/
| * Make sure Web streams are disposed after useOren Hurvitz2014-01-311-42/+35
| |
* | Merge branch 'master' into varregionRobert Adams2013-12-171-2/+69
|\ \ | | | | | | | | | | | | | | | | | | | | | Add new region crossing code to varregion Conflicts: OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs OpenSim/Region/Framework/Scenes/ScenePresence.cs
| * | Fix issue with editing notes for other avatarsBlueWall2013-12-161-2/+2
| |/
| * Add support for user preferences (im via email)BlueWall2013-12-061-0/+67
| |
* | varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.Robert Adams2013-12-141-2/+2
| | | | | | | | | | | | Rename 'RegionWorldLocX' to 'WorldLocX' and same for Y and Z. This keeps the downward compatibility and follows the scheme of 'region' and 'world' location naming that is happening in the Util module.
* | varregion: remove scattered use of Constants.RegionSize by having routines ↵Robert Adams2013-10-071-2/+2
| | | | | | | | reference RegionInfo.RegionWorldLoc?.
* | VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams2013-09-281-2/+2
|/ | | | | | | | count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.
* Remove test that gives issue on Windows, just let the try/catch do the work.BlueWall2013-09-021-5/+1
|
* Profiles: Clean up some log entries caused when visiting HG avatar is using ↵BlueWall2013-08-291-16/+26
| | | | legacy profiles
* Remove mono compiler warnings from UserProfilesModuleJustin Clark-Casey (justincc)2013-08-171-19/+16
|
* Changed the UserProfileModule so that it's less greedy in terms of thread usage.Diva Canto2013-07-111-7/+5
|
* Revert "minor: remove some mono compiler warnings in UserProfileModule"Robert Adams2013-07-091-13/+16
| | | | | | | Revert until we understand why all the calls to GetUserProfileServerURI were also commented out. This reverts commit 5f58b9b5526c401e039d27b8c92603ff02421fb8.
* minor: remove some mono compiler warnings in UserProfileModuleJustin Clark-Casey (justincc)2013-07-091-16/+13
|
* Lock m_classifiedCache and m_classifiedInterest dictionary reads in ↵Justin Clark-Casey (justincc)2013-06-151-14/+13
| | | | | | UserProfileModule since in the presence of writes these are not thread-safe operations. Simplified locking to m_classifiedCache only since r/w of both dictionaries always occurs together
* Correct build break in previous commit 9c530d7Justin Clark-Casey (justincc)2013-06-151-10/+7
|
* refactor: In UserProfileModule, change classifiedCache and ↵Justin Clark-Casey (justincc)2013-06-151-19/+23
| | | | | | classifiedInterest to m_classifiedCache and m_classifiedInterest This is the coding standard name style for private fields.
* Catch exception triggered by incoming avatars using legacy profilesBlueWall2013-06-081-1/+10
|
* SQLite support for UserProfilesBlueWall2013-06-071-0/+1
|
* Prevent processing for NpcBlueWall2013-06-051-1/+3
|
* Remove a couple of orphaned linesBlueWall2013-06-051-3/+0
|
* Make locking more uniformBlueWall2013-06-051-14/+19
|
* Adding back the BasicProfileModuleBlueWall2013-05-311-73/+15
|
* UserProfilesBlueWall2013-05-301-0/+1386
UserProfiles for Robust and Standalone. Includes service and connectors for Robust and standalone opensim plus matching region module.