aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-05-18Don't trigger ItemUploaded when no item has been uploaded.Diva Canto1-6/+9
2014-05-18Don't fetch assets from the server when doing simple inventory operations ↵Diva Canto2-52/+29
like copy-paste items in inventory.
2014-05-17BulletSim: adjust avatar step up parameters to better walk up smallRobert Adams2-4/+4
staircases. This change is required because of the change in the avatar default shape from the capsule to the rectangle.
2014-05-15minor: eliminate now unnecessary string.Format in postgresql RetrieveGroups ↵Justin Clark-Casey (justincc)1-1/+1
method
2014-05-15Don't warn on not seeing [Groups] Robust section for core groups as this ↵Justin Clark-Casey (justincc)1-2/+2
does not contain any mandatory parameters and won't be present on older installations.
2014-05-15Escape find string in PgSQL core groups pluginJustin Clark-Casey (justincc)2-3/+25
2014-05-15Escape find string in MySQL core groups pluginJustin Clark-Casey (justincc)1-1/+1
2014-05-14On ScenePresence.MakeChildAgent(), reset the m_originRegionID as this is ↵Justin Clark-Casey (justincc)1-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.
2014-05-14Remove a race where the client's SP.CompleteMovement() thread could attempt ↵Justin Clark-Casey (justincc)1-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
2014-05-14minor: Clean up and make consistent some log file messages in ↵Justin Clark-Casey (justincc)1-6/+11
EstateManagementModule relating to RAW file uploading.
2014-05-14Fix recent asset request timeout issue by commenting out (for now) the ↵Justin Clark-Casey (justincc)1-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
2014-05-13Fix behaviour change in recent commit bbc1dc6 so that ↵Justin Clark-Casey (justincc)1-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
2014-05-12minor: Add some method doc to IMessageTransferModuleJustin Clark-Casey (justincc)1-0/+18
2014-05-12Make offline IM delivery to URL (pre recent Addons code) have a 10 second ↵Justin Clark-Casey (justincc)1-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.
2014-05-12For XmlRpcGroups (Flotsam) module, when MessageOnlineUsersOnly = true, ↵Justin Clark-Casey (justincc)4-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.
2014-05-12Add send group notice regression test for when MessageOnlineUsersOnly=trueJustin Clark-Casey (justincc)1-0/+71
2014-05-12Replace existing 0 timeout in internal overloaded ↵Justin Clark-Casey (justincc)1-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.
2014-05-12Eliminate subsequently unused scene finding in UndeliveredMessage() method ↵Justin Clark-Casey (justincc)2-8/+0
of xmlrpc and core offline IM modules
2014-05-12minor: eliminate unused UUID in xmlrpc ↵Justin Clark-Casey (justincc)1-2/+0
GroupsMessagingModule.ProcessMessageFromGroupSession()
2014-05-12minor: Add method doc to SynchronousRestObjectRequester.MakeRequest() methodsJustin Clark-Casey (justincc)1-5/+27
2014-05-12In SynchronousRestObjectRequester.MakeRequest<TRequest, TResponse>(string ↵Justin Clark-Casey (justincc)1-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.
2014-05-12Fixed error if a user didn't have a "Current Outfit" folder in their suitcase.Oren Hurvitz1-9/+12
This fixes http://opensimulator.org/mantis/view.php?id=7161
2014-05-09This little sucker had evaded my attention forever. As a consequence some ↵Diva Canto1-10/+28
assets associated with foreign users were being missed.
2014-05-08minor: Capitalize Hypergrid help category like othersJustin Clark-Casey (justincc)1-5/+5
2014-05-08Fix test breakageDiva Canto1-1/+1
2014-05-08Make the URL for texture redirects match the path of the resource that we ↵Diva Canto1-1/+1
use in OpenSim.
2014-05-07Finished implementing redirects in GetTexture.Diva Canto4-9/+18
2014-05-07Delete extraneous console message in the Configger.Diva Canto1-1/+0
2014-05-07Allow Tools.Configger to take -inifile as argumentDiva Canto2-8/+9
2014-05-06Revert "fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()"Justin Clark-Casey (justincc)1-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.
2014-05-06Console commands for Estate MgmtDev Random3-0/+179
2014-05-06new version of patch to add default-user switch new version :qw :wq updated ↵Matt Lehmann1-0/+2
version of default user switch for load oar :q :q
2014-05-06updated version of default user switch for load oar :q :qMatt Lehmann3-6/+43
2014-05-06fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()Kunta Kinte1-99/+79
2014-05-06Fix avatars going to corner of region when they are sitting on a child prim ↵Vegaslon1-1/+1
and the prim is deleted.
2014-05-06Change llUnSit to be able to unsit any avatar that is currently sat on the ↵Vegaslon1-1/+2
object, not just avatars sitting on the sittarget in the object containing the script. or when the object is owned by the parcel, land group or estate owner.
2014-05-06Mantis 7146 The lsl function llGetMassMKS is not implementedTalun3-0/+13
This patch implements llGetMassMKS as it is described in the wiki http://wiki.secondlife.com/wiki/LlGetMassMKS
2014-05-06Better error handling in AssetServerPostHandler. Invalid XML causes an ↵Oren Hurvitz1-1/+1
InvalidOperationException, not an XmlException
2014-05-06When moving an item from a prim to a user's inventory, don't delete the item ↵Oren Hurvitz1-4/+25
from the prim until it was successfully copied to the user
2014-05-06Show more meaningful error messages when failed to move an item from a prim ↵Oren Hurvitz4-29/+56
to a user's inventory. Also, actually show the error to the user in more cases. (Previously, sometimes the operation failed without telling the user anything.)
2014-05-06Show more meaningful error messages when failed to give an item to another userOren Hurvitz6-29/+59
2014-05-06Log whenever an inventory operation is blocked because the item/folder isn't ↵Oren Hurvitz1-8/+52
in the Suitcase
2014-05-06- When sending the "My Suitcase" folder to the client, always claim it has ↵Oren Hurvitz4-10/+17
Folder Type 8. (Previously we had used Folder Type -1 in one place, and LLClientView didn't even bother changing Folder Type 100 to anything else.)
2014-05-06Added range-checking for the parameters to PRIM_POINT_LIGHT (used in ↵Oren Hurvitz1-3/+3
llSetLinkPrimitiveParamsFast() )
2014-05-04Makes it possible to support grids in which all the simulators share all ↵Diva Canto2-22/+93
central services of a Robust server EXCEPT assets. In other words, grids where the simulators' assets are kept in one DB and the users' inventory assets are kept on another. When users rez items from inventory or take objects from world, an HG-like asset copy takes place between the 2 servers, the world asset server and the user's asset server. This makes the simulators independent of the central asset server. Note that this an advanced configuration and requires some security strengthening coming up.
2014-05-04Please note: older simulators (0.7.6) still send the info about gzip in ↵Diva Canto1-2/+2
ContentType
2014-05-03Added a optional key between the group remote connectors, sim and service. ↵Diva Canto3-5/+44
This allows for more secure group services, to be used by collections of mutually-trusting grids.
2014-05-02minor: Comment out Cacheitems debug log lines for nowJustin Clark-Casey (justincc)1-6/+6
2014-05-01Mantis 7144 missing ATTACH_AVATAR_CENTER constantTalun1-0/+2
This patch adds ATTACH_AVATAR_CENTER and ATTACH_NECK
2014-05-01Fix issue where only one of multiple attachments on the same attachpoint for ↵Justin Clark-Casey (justincc)4-7/+74
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