aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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-222-8/+11
| | | | | | 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-224-1/+203
| | | | to west.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2014-05-2225-124/+292
|\
| * Fix mantis 6973. Prevent BOM being prefixed to message XML which was causing ↵AliciaRaven2014-05-221-2/+2
| | | | | | | | | | | | an exception when the service tried to read the data later on. Signed-off-by: Oren Hurvitz <orenh@kitely.com>
| * Store the Teleport Flags in the Circuit. This doesn't seem to be necessary, ↵Oren Hurvitz2014-05-221-0/+2
| | | | | | | | because everything has worked so far, but it's the right thing to do.
| * Allow map searches for regions that contain the characters "!+|"Oren Hurvitz2014-05-211-20/+24
| | | | | | | | These characters are used as placeholders for other characters: ": /". But we should search first for the exact string the user entered, and only if that fails then replace the characters and search again.
| * minor: Comment out currently unused log setup in TerrainCompressorJustin Clark-Casey (justincc)2014-05-201-1/+1
| |
| * minor: Remove some unused fields in ScenePresenceJustin Clark-Casey (justincc)2014-05-201-3/+0
| |
| * minor: remove compiler warning in SceneObjectPartInventoryJustin Clark-Casey (justincc)2014-05-201-1/+1
| |
| * Fix issue where avatar and script chat could sometimes be heard from ↵Justin Clark-Casey (justincc)2014-05-201-3/+8
| | | | | | | | | | | | | | | | | | | | anywhere in neighbouring regions. This was due to a silent uint overflow in ScenePresence.UpdateChildAgent() corrupting child agent positions when the child agent was in a region with a greater x or y map co-ord than the root agent region Probably introduced in beeec1c. This still will not function properly with very high region map co-ords (in the millions) but other parts of the code don't handle this properly anyway. Looks to address http://opensimulator.org/mantis/view.php?id=7163
| * On verbose groups messaging logging, count all operations in reported time ↵Justin Clark-Casey (justincc)2014-05-192-5/+5
| | | | | | | | when sending group messages, not just those after get group members and get presence status, as applicable
| * Split verbose groups messaging logging into its own setting separate from ↵Justin Clark-Casey (justincc)2014-05-192-26/+108
| | | | | | | | | | | | | | | | | | that of the groups module. This is to allow us to get useful information on messaging without being overwhelmed by the rest of groups debug. Enabled with [Groups] DebugMessagingEnabled = true in config (default false) Or "debug groups messaging verbose true|false on the console" (similar to existing groups setting). Done for both xmlrpc and V2 groups.
| * Fix recent regression from 77e7bbc where an attachment on a received group ↵Justin Clark-Casey (justincc)2014-05-194-5/+50
| | | | | | | | | | | | | | | | notice with XmlRpcGroups messaging did not appear in the user's inventory. This was because the "session ID" when the message template was copied was always replaced with the group ID, whereas a notice requires this to be the notice ID. Instead just copy the "session ID" as is - other callers already have this set properly so replacing with group ID was redundant anyway. Relates to http://opensimulator.org/mantis/view.php?id=7037
| * Tell QueryAccess explicitly whether the user is coming in via Teleport or ↵Oren Hurvitz2014-05-197-12/+18
| | | | | | | | | | | | Cross, because the permission checks are different. Previously we used a heuristic of checking if the entry position is 0 to differentiate between Teleport and Cross, but that doesn't work anymore since we've started providing the precise entry position for cross, too. That's required in order to ensure that the user is allowed to enter the parcel that he's walking into.
| * Log the user when an inventory operation is blocked because the item/folder ↵Oren Hurvitz2014-05-191-14/+14
| | | | | | | | isn't in the Suitcase
| * Return more specific error messages if an attempt to enter a region fails ↵Oren Hurvitz2014-05-194-17/+36
| | | | | | | | due to permissions (in QueryAccess and IsAuthorizedForRegion)
| * Better error-handling and logging in case User Profile requests failOren Hurvitz2014-05-192-12/+21
| |
| * When can't rez, show only one error message; not two. And show more specific ↵Oren Hurvitz2014-05-192-3/+2
| | | | | | | | error messages.
* | Fixed a problem with detaching attachments in situations where the user's ↵Diva Canto2014-05-224-9/+44
|/ | | | 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.
* Don't trigger ItemUploaded when no item has been uploaded.Diva Canto2014-05-181-6/+9
|
* Don't fetch assets from the server when doing simple inventory operations ↵Diva Canto2014-05-182-52/+29
| | | | like copy-paste items in inventory.
* BulletSim: adjust avatar step up parameters to better walk up smallRobert Adams2014-05-172-4/+4
| | | | | staircases. This change is required because of the change in the avatar default shape from the capsule to the rectangle.
* minor: eliminate now unnecessary string.Format in postgresql RetrieveGroups ↵Justin Clark-Casey (justincc)2014-05-151-1/+1
| | | | method
* Don't warn on not seeing [Groups] Robust section for core groups as this ↵Justin Clark-Casey (justincc)2014-05-151-2/+2
| | | | does not contain any mandatory parameters and won't be present on older installations.
* Escape find string in PgSQL core groups pluginJustin Clark-Casey (justincc)2014-05-152-3/+25
|
* Escape find string in MySQL core groups pluginJustin Clark-Casey (justincc)2014-05-151-1/+1
|
* On ScenePresence.MakeChildAgent(), reset the m_originRegionID as this is ↵Justin Clark-Casey (justincc)2014-05-141-0/+5
| | | | | | currently being used as a flag to orchestrate destination simulator threads on teleport. If not reset, it's possible that teleports back and forth between simulators may not restart scripts in attachments.
* Remove a race where the client's SP.CompleteMovement() thread could attempt ↵Justin Clark-Casey (justincc)2014-05-141-3/+6
| | | | | | | to restart attachment scripts before the source simulator's SP.UpdateAgent() thread had added them. This commit changes the order of code so that attachments are re-added before the CompleteMovement() thread is released. Relates to http://opensimulator.org/mantis/view.php?id=7148
* minor: Clean up and make consistent some log file messages in ↵Justin Clark-Casey (justincc)2014-05-141-6/+11
| | | | EstateManagementModule relating to RAW file uploading.
* Fix recent asset request timeout issue by commenting out (for now) the ↵Justin Clark-Casey (justincc)2014-05-141-10/+14
| | | | | | | | | m_maxAssetRequestConcurrency mistakenly passed in as a timeout to SynchronousRestObjectRequester.MakeRequest() For a long time, possibly forever, the m_maxAssetRequestConcurrency was mistakenly passed in as a 30 ms timeout rather than as a concurrent connection limiter. This didn't come to light until the timeout was actually used in recent commit faf9ba53 Since this hasn't been operational for a long time and in release candidate phase, commenting it out for now though will need to revisit this. Relates to http://opensimulator.org/mantis/view.php?id=7165
* Fix behaviour change in recent commit bbc1dc6 so that ↵Justin Clark-Casey (justincc)2014-05-131-5/+10
| | | | | | | | SynchronousRestObjectRequester.MakeRequest() calls with no timeout specified use the default HttpWebRequest timeout as previously. I mistakenly thought that that default request timeout was inifite rather than 100 seconds, restoring previously behaviour. As per http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.timeout%28v=vs.100%29.aspx Relates to http://opensimulator.org/mantis/view.php?id=7165
* minor: Add some method doc to IMessageTransferModuleJustin Clark-Casey (justincc)2014-05-121-0/+18
|
* 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-124-20/+35
| | | | | | | | 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.
* Add send group notice regression test for when MessageOnlineUsersOnly=trueJustin Clark-Casey (justincc)2014-05-121-0/+71
|
* Replace existing 0 timeout in internal overloaded ↵Justin Clark-Casey (justincc)2014-05-121-3/+4
| | | | | | SynchronousRestObjectRequester.MakeRequest() methods with proper Timeout.Infinite (-1) instead. Triggered by recent faf9ba53 though this was wrong in the code before, it's just that we didn't actually try to set the timeout given.
* Eliminate subsequently unused scene finding in UndeliveredMessage() method ↵Justin Clark-Casey (justincc)2014-05-122-8/+0
| | | | of xmlrpc and core offline IM modules
* minor: eliminate unused UUID in xmlrpc ↵Justin Clark-Casey (justincc)2014-05-121-2/+0
| | | | GroupsMessagingModule.ProcessMessageFromGroupSession()
* minor: Add method doc to SynchronousRestObjectRequester.MakeRequest() methodsJustin Clark-Casey (justincc)2014-05-121-5/+27
|
* In SynchronousRestObjectRequester.MakeRequest<TRequest, TResponse>(string ↵Justin Clark-Casey (justincc)2014-05-121-0/+2
| | | | | | | verb, string requestUrl, TRequest obj, int pTimeout, int maxConnections) actually set timeout on WebRequest if given. Previously, we were doing nothing with this parameter. No effect on current code since none of the 6 callers attempt to use the timeout.
* Fixed error if a user didn't have a "Current Outfit" folder in their suitcase.Oren Hurvitz2014-05-121-9/+12
| | | | This fixes http://opensimulator.org/mantis/view.php?id=7161
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2014-05-091-5/+5
|\
| * minor: Capitalize Hypergrid help category like othersJustin Clark-Casey (justincc)2014-05-081-5/+5
| |
* | This little sucker had evaded my attention forever. As a consequence some ↵Diva Canto2014-05-091-10/+28
|/ | | | assets associated with foreign users were being missed.
* Fix test breakageDiva Canto2014-05-081-1/+1
|
* Make the URL for texture redirects match the path of the resource that we ↵Diva Canto2014-05-081-1/+1
| | | | use in OpenSim.
* Finished implementing redirects in GetTexture.Diva Canto2014-05-074-9/+18
|
* Delete extraneous console message in the Configger.Diva Canto2014-05-071-1/+0
|