aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/UserProfiles (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-04-24Changed how UserProfile performs a fallback call using the OpenProfile API, ↵Oren Hurvitz1-30/+37
because now JsonRpcRequest() returns an error result instead of throwing an exception
2014-04-24Refactored: moved OpenProfileClient to a location where it can be used by ↵Oren Hurvitz2-193/+1
both the Simulators and Robust
2014-04-19Catch empty url errorBlueWall1-0/+3
2014-03-25Fix issue with user picks creation. The snapshot id is UUID.Zero in new parcels.BlueWall1-6/+0
2014-03-25Move JsonRpc request code out for general availabilityBlueWall1-173/+19
2014-03-25In Core Profiles: as a fallback, try to get profiles from foreign grids ↵Oren Hurvitz2-2/+219
using the OpenProfile protocol Resolves http://opensimulator.org/mantis/view.php?id=6954
2014-03-06Prevent adding a land object if it overlaps any existing objects that have ↵Justin Clark-Casey (justincc)1-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.
2014-02-14Change warns associated with UserAgentServiceConnector to debugs, as this is ↵Justin Clark-Casey (justincc)1-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
2014-02-14If calls to UserAgentServiceConnector fail then throw an exception. This ↵Justin Clark-Casey (justincc)1-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.
2014-01-31Make sure Web streams are disposed after useOren Hurvitz1-42/+35
2013-12-16Fix issue with editing notes for other avatarsBlueWall1-2/+2
2013-12-14varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.Robert Adams1-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.
2013-12-06Add support for user preferences (im via email)BlueWall1-0/+67
2013-10-07varregion: remove scattered use of Constants.RegionSize by having routines ↵Robert Adams1-2/+2
reference RegionInfo.RegionWorldLoc?.
2013-09-28VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams1-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.
2013-09-25VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams1-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.
2013-09-02Remove test that gives issue on Windows, just let the try/catch do the work.BlueWall1-5/+1
2013-08-29Profiles: Clean up some log entries caused when visiting HG avatar is using ↵BlueWall1-16/+26
legacy profiles
2013-08-17Remove mono compiler warnings from UserProfilesModuleJustin Clark-Casey (justincc)1-19/+16
2013-07-13That didn't fix the problem.Diva Canto1-1/+4
Revert "Trying to reduce CPU usage on logins and TPs: trying radical elimination of all FireAndForgets throughout CompleteMovement. There were 4." This reverts commit 682537738008746f0aca22954902f3a4dfbdc95f.
2013-07-13Trying to reduce CPU usage on logins and TPs: trying radical elimination of ↵Diva Canto1-4/+1
all FireAndForgets throughout CompleteMovement. There were 4.
2013-07-11Changed the UserProfileModule so that it's less greedy in terms of thread usage.Diva Canto1-7/+5
2013-07-09Revert "minor: remove some mono compiler warnings in UserProfileModule"Robert Adams1-13/+16
Revert until we understand why all the calls to GetUserProfileServerURI were also commented out. This reverts commit 5f58b9b5526c401e039d27b8c92603ff02421fb8.
2013-07-09minor: remove some mono compiler warnings in UserProfileModuleJustin Clark-Casey (justincc)1-16/+13
2013-06-15Lock m_classifiedCache and m_classifiedInterest dictionary reads in ↵Justin Clark-Casey (justincc)1-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
2013-06-15Correct build break in previous commit 9c530d7Justin Clark-Casey (justincc)1-10/+7
2013-06-15refactor: In UserProfileModule, change classifiedCache and ↵Justin Clark-Casey (justincc)1-19/+23
classifiedInterest to m_classifiedCache and m_classifiedInterest This is the coding standard name style for private fields.
2013-06-08Catch exception triggered by incoming avatars using legacy profilesBlueWall1-1/+10
2013-06-07SQLite support for UserProfilesBlueWall1-0/+1
2013-06-05Prevent processing for NpcBlueWall1-1/+3
2013-06-05Remove a couple of orphaned linesBlueWall1-3/+0
2013-06-05Make locking more uniformBlueWall1-14/+19
2013-05-31Adding back the BasicProfileModuleBlueWall1-73/+15
2013-05-30UserProfilesBlueWall1-0/+1386
UserProfiles for Robust and Standalone. Includes service and connectors for Robust and standalone opensim plus matching region module.