aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Close streams immediately when we finish using themOren Hurvitz2014-08-021-13/+2
|
* Amend to previous commit -- write down the problematic Profile server URL.Diva Canto2014-06-101-0/+3
|
* May fix mantis #7133Diva Canto2014-06-101-7/+12
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2014-05-232-108/+342
|\
| * Fix possible infinite recursion in ↵Justin Clark-Casey (justincc)2014-05-231-108/+56
| | | | | | | | | | | | | | | | | | MessageTransferModule.SendGridInstantMessageViaXMLRPCAsync() whilst preserving retry lookup behaviour. This is based on heavily mikemig's original patch in http://opensimulator.org/mantis/view.php?id=7149 but instead of exiting after the first IM delivery failure to presence information retrieved from the presence service it will retry the lookup until the result matches the previous lookup. This is to deal with the case where the agent is sent an IM whilst they are teleporting.
| * Add regression test for north-south chat across neighbour regions.Justin Clark-Casey (justincc)2014-05-221-52/+133
| |
| * Extend regression TestInterRegionChatDistanceEastWest() to test out of range ↵Justin Clark-Casey (justincc)2014-05-221-11/+38
| | | | | | | | chat
| * Extend regression TestInterRegionChatDistanceEastWest() to test in range ↵Justin Clark-Casey (justincc)2014-05-221-17/+38
| | | | | | | | chat both ways.
| * Simplify regression TestInterRegionChatDistanceEastWest() by making the ↵Justin Clark-Casey (justincc)2014-05-221-7/+6
| | | | | | | | | | | | child presence connection directly rather than routing through TestClient. This code isn't relevant to this test and is already exercised by other tests.
| * Add regression test for in-range chat between neighbouring regions from east ↵Justin Clark-Casey (justincc)2014-05-221-0/+158
| | | | | | | | to west.
* | Adds optional HTTP Basic Authentication to Robust service connectors.Diva Canto2014-05-231-3/+5
|/
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2014-05-221-0/+9
|\
| * Better error-handling and logging in case User Profile requests failOren Hurvitz2014-05-191-0/+9
| |
* | Fixed a problem with detaching attachments in situations where the user's ↵Diva Canto2014-05-221-7/+2
|/ | | | asset server is not the same as the simulator's asset server. Unfortunately this still continues to be wasteful -- new assets are created every time an attachment is detached, but the process of storing the new asset goes through the InventoryAccess module, which does all sorts of checks regarding the users' inventory.
* Make offline IM delivery to URL (pre recent Addons code) have a 10 second ↵Justin Clark-Casey (justincc)2014-05-121-1/+1
| | | | | | rather than infinite timeout. This both signals a problem with the URL and eventually frees the thread, rather than hanging indefinitely with no information.
* For XmlRpcGroups (Flotsam) module, when MessageOnlineUsersOnly = true, ↵Justin Clark-Casey (justincc)2014-05-122-7/+7
| | | | | | | | handle notices to offline users directly as known undeliverable messages rather than discarding or attempting delivery. Offline notices can still be controlled with the [Messaging] ForwardOfflineGroupMessages setting. Looks to address more of http://opensimulator.org/mantis/view.php?id=7037 Only for Flotsam now for testing, but if approach works should be possible with core offline notices as well.
* Eliminate subsequently unused scene finding in UndeliveredMessage() method ↵Justin Clark-Casey (justincc)2014-05-121-4/+0
| | | | of xmlrpc and core offline IM modules
* Revert "fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()"Justin Clark-Casey (justincc)2014-05-061-79/+99
| | | | | | | There is a problem here with infinite recursion, but this patch loses the 'hunting' behaviour where the code will attempt multiple lookups if the avatar is teleporting rapidly around different simulators. This patch only does a single lookup before giving up. This reverts commit cecb446e0e91ede0b05ea9cf40c1313782241f3d.
* fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()Kunta Kinte2014-05-061-99/+79
|
* Show more meaningful error messages when failed to give an item to another userOren Hurvitz2014-05-061-6/+5
|
* Fix issue where only one of multiple attachments on the same attachpoint for ↵Justin Clark-Casey (justincc)2014-05-011-0/+7
| | | | | | | | NPCs would be seen by other viewers. It appears that at least Singularity 1.8.5 (but probably others) rely on attachment FromItemIDs being different to display more than one. This commit resolves this by generating random IDs instead of always using UUID.Zero for NPCs. Resolves http://opensimulator.org/mantis/view.php?id=7110
* 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
* Eliminated many warningsOren Hurvitz2014-04-232-1/+3
|
* Fixed: when a user logged-in, sometimes he didn't get notified of the Online ↵Oren Hurvitz2014-04-212-2/+24
| | | | | | | | status of friends, so they continued to appear Offline. This happened because these notifications (the UDP packets) can only be sent to Root Agents. But the notifications were done in OnClientLogin(), at which point the client is still a Child Agent. Since a FireAndForget is used, it became a race condition as to whether the packets would be sent before or after the client became a Root Agent. To fix this, we now only send the notifications once the client becomes a Root Agent for the first time.
* Catch empty url errorBlueWall2014-04-191-0/+3
|
* Refactored: use Scene.GetAgentHomeURI() to get the Home URI of a userOren Hurvitz2014-04-071-5/+1
|
* When preparing a Hypergrid teleport, tell the receiving grid which user is ↵Oren Hurvitz2014-04-061-1/+7
| | | | | | entering the grid. This can affect which region to use. E.g., returning users may be allowed to enter any region, whereas users from other grids will have to enter a gateway region. Previously per-user decisions were only made later, but by then it's too late to change which region the user enters.
* When teleporting using Hypergrid, show more informative error messages in ↵Oren Hurvitz2014-04-031-1/+12
| | | | case of error
* minor: Fix warning in AvatarFactoryModuleJustin Clark-Casey (justincc)2014-04-031-1/+1
|
* 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
* Run slow operations in a separate thread, instead of using FireAndForget ↵Oren Hurvitz2014-03-251-1/+1
| | | | | | (which has a 1-minute timeout) Resolves http://opensimulator.org/mantis/view.php?id=6945
* Refactored Load IAR: created a generic mechanism to modify the SOG's as they ↵Oren Hurvitz2014-03-241-47/+19
| | | | | | are being loaded Resolves http://opensimulator.org/mantis/view.php?id=6942
* Fix negative stat for Active ScriptsDev Random2014-03-221-2/+3
| | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* Reverting "Set default name for mute list" that was pushed by mistake.Kevin Cozens2014-03-221-1/+1
| | | | This reverts commit 58def34dbe01af970ca0cbd7362aa24cd85fc43d.
* Reverting "Pass method to offline.php" commit that was pushed by mistake.Kevin Cozens2014-03-221-2/+2
| | | | This reverts commit fe16a72a9a10c5b9057351f798d9098ada3002ae.
* Pass method to offline.php using ?blah instead of /blah/. Avoids issue with ↵Kevin Cozens2014-03-221-2/+2
| | | | Apache web servers running PHP via CGI.
* Set default name for mute list module as shown in OpenSim.ini.exampleKevin Cozens2014-03-221-1/+1
|
* Prevent adding a land object if it overlaps any existing objects that have ↵Justin Clark-Casey (justincc)2014-03-062-11/+25
| | | | | | | | 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.
* Improve regression test TestSetAppearance()Justin Clark-Casey (justincc)2014-02-241-42/+69
|
* Re-enable regression TestSaveBakedTextures()Justin Clark-Casey (justincc)2014-02-241-4/+2
|
* Stop mesh avatars that specify the alpha texture in their bake slots from ↵Justin Clark-Casey (justincc)2014-02-242-38/+67
| | | | | | | causing the simulator to continually request that they rebake This is because the alpha texture is not in the cache, we must continue to have the fallback of looking for these and other persisted bakes in the asset service. Relates to http://opensimulator.org/mantis/view.php?id=6927
* minor: Add some method doc to AFM,SetAppearanceAssets()Justin Clark-Casey (justincc)2014-02-201-0/+6
|
* For now, do not replacing missing wearables with default wearables if itme ↵Justin Clark-Casey (justincc)2014-02-201-144/+190
| | | | | | | | details cannot be found. This is causing many issues on OSGrid, possibly due to teleporting timing differences with simulators hosted in different places or HG teleports Added a bit more logging for debug purposes. See http://opensimulator.org/mantis/view.php?id=6939
* Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-02-142-2/+21
|\
| * Change warns associated with UserAgentServiceConnector to debugs, as this is ↵Justin Clark-Casey (justincc)2014-02-142-2/+2
| | | | | | | | | | | | 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-142-2/+21
| | | | | | | | | | | | 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.
* | Remove the added whitespace, test concludedMelanie2014-02-041-1/+1
| |