aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-07-20Fix the XML serializationt to provide an empty script state element ifMelanie1-4/+28
the script hasn't yet saved state, or can't save state because of a loop
2010-07-17Allow Megaregions to start properly after an unclean shutdownMelanie2-1/+4
2010-07-17Stop occasional permanently high 100% utilization when the server is started ↵Justin Clark-Casey (justincc)1-10/+12
with many scripts See http://opensimulator.org/mantis/view.php?id=4799 for more details This is the equivalent patch that was applied to master 3.5 weeks ago, seemingly without bad consequences Thanks Snoopy!
2010-07-17Bug in 0.6.9 sometimes restoring script state causes region console to crash ↵unknown1-39/+84
due to unhandled file lock exception. Attempt to resolve by wrapping several instances of file create / read logic in using statements and added some error handling for locked file exceptions. If it is IDisposable, it must be disposed! The close statements are unnecessary but harmless so I have left those in. The end of the using block will close and dispose automagically.
2010-07-08llVecNorm() now returns a zero-length vector when one is supplied as input. ↵dahlia1-7/+2
Addresses Mantis #4752
2010-07-08fix a potential division by zerodahlia1-6/+11
2010-06-30Fix scripts in rezzed objects not starting (Mantis #4775)Melanie1-0/+5
2010-06-30If an emergency pos is required for a new root agent, correctly preserve the ↵Justin Clark-Casey (justincc)1-2/+2
z co-ord instead of accidentally resetting the incorrect x co-ord This is a one-liner. It has already been addressed in master and 0.7-post-fixes in a more extensive way
2010-06-29Revert "stop exceptions in setting and getting state from propogating since ↵Justin Clark-Casey (justincc)1-31/+8
they aren't fatal to operations" This reverts commit ae2454821628d847b0add20a4c593162baafde5b. Reverted for now pending a fix to the underlying xengine problem instead.
2010-06-29stop exceptions in setting and getting state from propogating since they ↵Justin Clark-Casey (justincc)1-8/+31
aren't fatal to operations this will hopefully stop "save oar" from failing if a script asset is corrupt
2010-06-11revert group membership checking to older code pending resolution of ↵Justin Clark-Casey (justincc)1-0/+11
reported performance problems
2010-06-09If a script is deleted before it gets compiled, don't even bother to tryMelanie1-0/+19
compiling it
2010-06-08backport xmlrpcgroups cache from masterJustin Clark-Casey (justincc)5-59/+112
2010-06-08remove references to OpenSim.Framework.Commuications.Tests.dll since all ↵Justin Clark-Casey (justincc)2-4/+14
relevant test code has been obsoleted this allows the tests to pass on my local system
2010-06-07minor: remove some commented out code and return ↵Justin Clark-Casey (justincc)2-7/+1
ScenePresence.UpdatePriority() to private
2010-06-07Stop some hud components disappearing on region crossingsJustin Clark-Casey (justincc)3-13/+76
If viewers (or at least, Linden Viewer 1.23.5) receive child hud object updates before the root prim, then the children are not displayed. Updates were being queued in LLClientView in the right order (root first) but were being sent in a random order since they were all at the same prioritization This commit prioritizes the root prim of a hud to its highest level when queued. I'm not sure if the periodic reprioritization triggered via ScenePresence might reset this, but boosting priority appears to work so far. Also committed is a belt and braces mechanism in LLClientView to prevent child hud prim being sent out before their root, but since this doesn't appear to be needed it is currently commented out.
2010-06-07reapply fix for double sending of attachment update on standalone region ↵Justin Clark-Casey (justincc)9-48/+48
crossing
2010-06-07commit code which stops full updates being fired multiple times when ↵Justin Clark-Casey (justincc)9-22/+122
attachments cross standalone region boundaries lots of messy debug code here too which would need to be removed
2010-06-04Revert "commit code which stops full updates being fired multiple times when ↵Justin Clark-Casey (justincc)9-122/+22
attachments cross standalone region boundaries" This reverts commit 5074d290e4aeb583560272cadc8ba09aa8337210. This gets rid of the massive amount of scene object log spam - sorry about that, folks
2010-06-02Revert "Next OSG test. Don't remove app domains if they contain running ↵Melanie1-6/+4
threads." This reverts commit f831a1778baa766b4810e352f3ae2ab6736e4620. With this, post-fixes is back to normal.
2010-06-02Next OSG test. Don't remove app domains if they contain running threads.Melanie1-4/+6
2010-06-02Next OSG test. Cowardly refuse to save the state of badly behaved scripts, ↵Melanie1-2/+5
instead of forcing the issue.
2010-06-02Revert "After aborting a thread, wait for it to actually finish. ↵Melanie1-1/+0
EXPERIMENTAL for OSG" This reverts commit 241ed5734ee3c5b1417484dfa22af6cf6ae60b82.
2010-06-02After aborting a thread, wait for it to actually finish. EXPERIMENTAL for OSGMelanie1-0/+1
testing. DO NOT UPDATE TO THIS UNLESS YOU KNOW WHAT YOU'RE DOING!
2010-06-01Gosh, fixing another nullref issue in cmGetAvatarList. I deserve spanks.Tom Grimshaw1-3/+6
2010-06-01Comment and remove JScript support. Mono 2.7Dev and 2.8 no longer include theMelanie1-19/+19
needed libraries
2010-05-31Fix casting in llParcelMediaCommandList so that it actually, you know, worksTom Grimshaw1-16/+16
2010-05-30Fix a nullref in EventManager caused by RegionReady not setting the sceneMelanie Thielker1-0/+1
2010-05-28Adjust Scene.DeleteAllSceneObjects() to not delete objects attached to avatars.Justin Clark-Casey (justincc)1-2/+6
This is going to be the right behaviour in all cases, I should think. This means that avatars in region when an oar is loaded do not lose their attachments
2010-05-27commit code which stops full updates being fired multiple times when ↵Justin Clark-Casey (justincc)9-22/+122
attachments cross standalone region boundaries lots of messy debug code here too which would need to be removed
2010-05-26If a transfer request is received for a task inventory item asset, then ↵Justin Clark-Casey (justincc)2-25/+91
route the permissions request through the existing CanEditScript() and CanEditNotecard() methods. This implements the 'share with group' flag for notecards and scripts in prim inventory since the PermissionsModule checks group membership and permissions. Other than that, the code in PermissionsModule duplicates the checks in LLClientView so there should be no change other than allowing group members to edit embedded notecards and scripts. For all other asset types, the permission checking code in LLClientView continues to be used, pending refactoring of suitable permissions code This means that 'share with group' will not yet work for prim inventory items other than notecards and scripts
2010-05-26check group membership and powers with the groups module rather than just ↵Justin Clark-Casey (justincc)1-12/+27
the client's active group id this resolves the earlier issue where notecards/scripts shared with group could only be edited if the user had that group active
2010-05-26Partially implement share with group option for object inventory itemsJustin Clark-Casey (justincc)4-7/+21
If serverside permissions are off then this works as expected. Previously, it was impossible for more than one person to edit such items even if permissions were off. If serverside permissions are on then this works as expected if the object was created by an avatar who had the required group active. However, if the group for the object is later set then the contained item is still not editable. This may be linked to a wider bug where the object is still not modifiable by the group anyway Resolve conflict in LLClientView
2010-05-24backport from master fix for attachment displayJustin Clark-Casey (justincc)3-3/+5
this fix stops two full updates being sent on attachment rather than one. Sending two can stop the client displaying attachments properly
2010-05-24backport some IGroupsModule method doc and an extra exposed method from git ↵Justin Clark-Casey (justincc)1-2/+31
master
2010-05-24stop "load oar" reporting ignored objects when those objects were actually ↵Justin Clark-Casey (justincc)1-1/+1
loaded just fine this fix also means that loaded scripts are properly/more promptly started here, the fix is only done in the oar module. In master, the underlying problem was fixed instead but this is more invasive.
2010-05-21Only send dialogs and notices to root agents, not child agentsJustin Clark-Casey (justincc)1-5/+5
Small change for backport Conflicts: OpenSim/Region/CoreModules/Avatar/Dialog/DialogModule.cs
2010-05-21Change the way the object perms are propagated to attempt to salvageMelanie1-21/+23
some older content
2010-05-21Change the way the object perms are propagated to attempt to salvageMelanie1-21/+23
some older content
2010-05-20minor: correctly print out missing item id when it can't be found rather ↵Justin Clark-Casey (justincc)2-2/+4
than a NullReferenceException
2010-05-20Don't append ACKs to zerocoded packets. Although this should fine in theory, ↵John Hurliman1-15/+20
I'm seeing the viewer ignore or fail to parse ACKs appended to our zerocoded packets. This should cut down on viewer->sim resend traffic
2010-05-20minor: commented out code removalJustin Clark-Casey (justincc)1-1/+0
2010-05-20Completely prevent full update packets being sent after kill object packetsJustin Clark-Casey (justincc)1-3/+0
If a full update is sent after the kill, the object remains as in the linden viewer but in an undeletable and unowned state until relog This patch prevents this by recording kills in LLClientView Backport from master
2010-05-20Completely prevent full update packets being sent after kill object packetsJustin Clark-Casey (justincc)1-5/+46
If a full update is sent after the kill, the object remains as in the linden viewer but in an undeletable and unowned state until relog This patch prevents this by recording kills in LLClientView
2010-05-20minor: Print out port that http servers are usingJustin Clark-Casey (justincc)2-9/+9
do this in callers so that we know who is setting up these things
2010-05-20move linden notecard parsing from LSL_Api.cs to SLUtil so that region ↵Justin Clark-Casey (justincc)4-108/+25
modules can use it backport from master
2010-05-19Fix a nullref issue in SitAltitudeCallbackTom Grimshaw1-50/+53
2010-05-19Fix a null reference issue in cmGetAvatarList()Tom Grimshaw1-1/+1
2010-05-17Provide interface to prevent the client close function from sending the stop ↵Tom Grimshaw4-3/+30
packet
2010-05-15Address symptom of Mantis 4588 (though not the cause) by moving the avatar ↵Justin Clark-Casey (justincc)1-2/+3
dereference inside the exception catch