aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-06-23Fix prim locking to behave like SLMelanie1-2/+2
2013-06-23Fix prim locking to behave like SLMelanie1-2/+2
2013-06-18Allow coalesced objects to be rezzed even if they extend past the sim boundsMelanie1-2/+6
2013-06-14correct method doc for llRot2Axis()dahlia1-1/+1
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-15Add the standard OpenSimulator copyright notice to the top of InventoryCache.csJustin Clark-Casey (justincc)1-1/+28
2013-06-15Adjust the locking on InventoryCache. Locking for r/w of the ExpiringCache ↵Justin Clark-Casey (justincc)1-14/+23
isn't needed since it's thread safe but r/w of contained dictionaries isn't thread-safe
2013-06-15minor: remove mono compiler warnings from LSL_Api, properly format method ↵Justin Clark-Casey (justincc)1-7/+5
doc for llRot2Axis()
2013-06-15Mantis 6280: llSetContentType(). An implementation.Talun4-0/+84
An implimentation of llSetContentType including all of the new constants added since the mantis was raised.
2013-06-15Mantis 6108: ossetprimitiveparams temporary/phantom problemTalun1-2/+2
Corrected to ensure that the target prim is updated by osSetPrimitiveParams when setting PRIM_TEMP_ON_REZ and/or PRIM_PHANTOM instead of the prim that the script is in.
2013-06-14Don't try to abort worker threads in WebFetchInvDescModule if module was not ↵Justin Clark-Casey (justincc)1-6/+4
enabled. This also moves the abort to RemoveRegion() rather than a destructor.
2013-06-13Add Option: ClassifiedFeeBlueWall2-2/+20
Add option to set minimum fee for publishing classifieds. Many viewers have a hard coded minimum of 50, which makes publishing classifieds fail where grids have no economy. This allows the grid to set the minimum fee to a suitable value for their operation. The option is located in the [LoginService] section and defaults to 0. The value is sent as "classified_fee" in the login response.
2013-06-13Forward the reason to the scriptMelanie1-1/+1
2013-06-13Add a result param to te money module interfaceMelanie3-4/+7
2013-06-13* This fixes having to select and deselect prim to get keyframemotion to ↵Melanie3-2/+8
start running when pulled from data storage. Conflicts: OpenSim/Data/SQLite/SQLiteSimulationData.cs
2013-06-12DataSnapshot: changed those annoying messages to Debug instead of Info.Diva Canto2-8/+8
2013-06-13Make XInventoryServicesConnector properly handle a RESULT = false return for ↵Justin Clark-Casey (justincc)1-68/+56
methods where this contains failure rather than throwing an exception. Result = False is generated for methods such as GetFolderForType() when the other end wants to signal a failure of the operation in methods such as GetFolderForType()
2013-06-12* This fixes having to select and deselect prim to get keyframemotion to ↵teravus3-4/+8
start running when pulled from data storage.
2013-06-12After calls to GetSuitcaseXFolder() in HGSuitcaseInventoryService, ↵Justin Clark-Casey (justincc)2-2/+24
consistently check for null return and log warning rather than throw exception. This was being done already in some places. If an exception is thrown it is now an error rather than debug
2013-06-12Implement logging of first 80 characters (debug level 5) or full body data ↵Justin Clark-Casey (justincc)2-5/+57
(debug level 6) on outgoing requests, depending on debug level This is set via "debug http out <level>" This matches the existing debug level behaviours for logging incoming http data
2013-06-11BulletSim: when meshing or asset fetching fails, include positionRobert Adams2-14/+30
and region with the offending object's name in the error message.
2013-06-11Add TriggerScenePresenceUpdated events when an animation is addedRobert Adams4-6/+11
or removed. Shouldn't impact anyone as only DSG seems to use OnScenePresenceUpdated event. Some minor format changes to AnimationSet's ToString().
2013-06-11Uncomment Mic's code and split to create new regression ↵Justin Clark-Casey (justincc)1-23/+41
TestAddTemporaryAsset() and TestAddTemporaryLocalAsset()
2013-06-11Removed the lock entirelyDiva Canto1-56/+52
2013-06-11Really bad idea to lock m_UserCache for so long in UserManagementModule. ↵Diva Canto1-13/+17
Added a special lock object instead, if we really want to avoid concurrent executions of that code.
2013-06-11Put the "script saved" and "notecard saved" messages back into the bottomMelanie1-2/+2
right corner.
2013-06-11Put the "script saved" and "notecard saved" messages back into the bottomMelanie1-2/+2
right corner.
2013-06-11* Adds KeyFrameMotion storage support to SQLite, just a note, seems that ↵teravus3-2/+35
there's still something wrong with keyframed motion starting when the sim starts up, you have to 'select' and 'deselect' the prim again to get it to appear to move. Not sure what this is but maybe melanie_t can comment on this. * Has a prim table migration.. that might take a while, hold on to your hats. * Fixes a null-ref when shutting down while keyframed motion is active.
2013-06-11Adjust output of llRot2Axis and llRot2Angle to match domains SL(tm) uses. ↵dahlia1-0/+3
Addresses Mantis #0006671
2013-06-10LSL_Rotation.Normalize() now returns 0,0,0,1 for x,y,z,s when normalization ↵dahlia1-2/+2
fails
2013-06-10llRot2Angle now checks absolute value of s rotation component before normalizingdahlia1-11/+3
2013-06-10llRot2Axis now checks absolute value of s rotation component before ↵dahlia1-22/+6
normalizing. Also removed some excessive division and cleaned up a bit
2013-06-10Check For NaN and Infinity in llRot2Axis/Angle Fixes mantis #6669teravus1-2/+4
2013-06-10add a Normalize() method for LSL_Rotationdahlia1-0/+25
2013-06-10Add port numbers to poll service thread names so that we can tell which ↵Justin Clark-Casey (justincc)1-2/+2
belong to which HttpServer
2013-06-10Reinstate explicit starting and stopping of PollServiceRequestManager added ↵Justin Clark-Casey (justincc)2-4/+7
in 3eee991 but removed in 7c0bfca Do not rely on destructors to stop things. These fire at unpredictable times and cause problems such as http://opensimulator.org/mantis/view.php?id=6503 and most probably http://opensimulator.org/mantis/view.php?id=6668
2013-06-10Fix test for adding temporary assets. Code for non-local temporary assetsMic Bowman1-0/+20
is there but commented out.
2013-06-10BulletSim: add failure flag for meshing failure vs asset fetch failureRobert Adams4-34/+51
so error messages make more sense. Change some BulletSim status log messages from WARN to INFO. Update TODO list.
2013-06-10Remove Temporary from use to shortcut asset stores. The Local propertyMic Bowman4-3/+4
differentiates between local & grid storage. The Temporary property just says that which service handles the it, the asset can be safely removed in the future.
2013-06-10Mantis 5346: llAxisAngle2Rot() should normalize before computingTalun1-0/+1
Corrected to agree with http://wiki.secondlife.com/wiki/Llaxisangle2rot#Deep_Notes to normalise the vector before computing the quaternion Signed-off-by: dahlia <dahlia@nomail>
2013-06-09More on mantis #6666 -- Groups V2 remote connector.Diva Canto1-7/+4
2013-06-10Explicitly set uploaded mesh object permsMelanie1-10/+13
2013-06-08Groups V2 -- fix mantis #6666Diva Canto1-0/+3
2013-06-08Catch exception triggered by incoming avatars using legacy profilesBlueWall1-1/+10
2013-06-08Make objects attached from the ground appear in inventory again. Fixes a numberMelanie1-1/+1
of interaction issues causing client crashes.
2013-06-07SQLite support for UserProfilesBlueWall3-0/+995
2013-06-07Ensure selected module is the only active oneBlueWall1-0/+3
2013-06-07Put the configuration back in FetchInventoryDesc2 cap.Diva Canto1-0/+29