aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-06* refactor: Make SOG itself responsible for checking whether it's already ↵Justin Clarke Casey2-12/+10
been deleted on an update request from the regular sweep
2008-09-06* minor: change hard tabs back to spaces in previous commitJustin Clarke Casey2-3/+3
* my excuse is that I hadn't used this monodevelop exe before...
2008-09-06* Fix mantis 2130 - nre occuring sometimes when the regular prim update ↵Justin Clarke Casey3-19/+7
sweep occurs * Fold m_deleted and m_isDeleted together (ugh!)
2008-09-06* Remove lots of warnings from the CMS moduleJustin Clarke Casey6-12/+12
* Remove a few other miscellaneous warnings
2008-09-05* Adds configurable OGP Name prefix and suffix. See OpenSim.ini.example at ↵Teravus Ovares1-0/+7
the bottom for details. Defaults to an empty string for prefix and '_EXTERNAL' for suffix
2008-09-04added in find callsSean Dague1-2/+52
added logging of exceptions, which we'll get quite a few of at this point most likely
2008-09-04remove callsSean Dague1-2/+33
2008-09-04start in on an EntityList class so we can stop doing lots of manipulatingSean Dague1-0/+81
of Entities as a dictionary directly
2008-09-04fix some indentingSean Dague1-20/+20
2008-09-04minor fixesSean Dague1-1/+0
2008-09-04added rollback bit to the help menuSean Dague1-0/+1
2008-09-04add some stubbing for ini.example for CMS moduleSean Dague1-4/+4
2008-09-03Mantis #2111Melanie Thielker2-2/+26
Eliminate gretuitious KillObject packets. KillObject is sent to the viewer for the root part only. Also prevents the full update on deselect that makes a deleted object reappear and stay visible until the background deleter got around to it. We still send 2 KillObject packets for the root prim, that could be avoided only at a cost in reliability. One packet seems an acceptable price to pay for consistency.
2008-09-03add standard copyright headers for the projectSean Dague14-9/+387
2008-09-03remove non code filesSean Dague1-0/+0
2008-09-03narrange to do basic cleanup of the CMS moduleSean Dague14-2284/+2620
2008-09-03white space fixesSean Dague1-259/+259
2008-09-03come up nicer on startup if the opensim.ini section isn't thereSean Dague1-78/+78
2008-09-03type change from ChatFromViewerArgs -> OSChatMessage to line up with trunk.Sean Dague1-4/+4
2008-09-03Merge branch 'cms' of http://pokgsa.ibm.com/~jbongio/public/opensimSean Dague16-0/+2914
2008-09-03clean up and fixing a typo.Dr Scofield1-1/+1
2008-09-03Mantis#2105. Thank you kindly, HomerHorwitz for a patch that addresses:Charles Krinke1-0/+13
Due to the many problems with not cleaned up child-agents, I thought it might make sense to be able to see them on the console. 'show users' on the region-server's console now outputs root- and child-agents (with "root" or "child" column)
2008-09-02fix: PostInitialise() not being called on script engines (nasty one that)Dr Scofield2-24/+26
cleanup: warnings, readability
2008-09-02Change some chat output functions so that text is truncated atMelanie Thielker1-1/+4
1000 chars to avoid the exception thrown by libomv at 1100 chars. Change string->int conversion so it copes with non-numeric chars after the number and no longer uses a float to parse the value.
2008-09-01Mantis #2072Melanie Thielker1-1/+14
Griefer protection! When running without serverside permissions, let only the owner edit attachments. Having everyone able to do it just isn't right.
2008-08-30* Pragma out deprecation warning and comment out to remove other warnings in ↵Justin Clarke Casey1-5/+7
the OGP module * Thanks to Teravus for the heads up on this.
2008-08-30* If a general alert message is sent out, only send it to avatars in the ↵Justin Clarke Casey1-4/+6
scene (not child agents). * This foxed me in the osgrid meeting last week
2008-08-30* Oops, add landmarks to region archive loading/savingJustin Clarke Casey2-1/+9
* Hopefully this will resolve mantis 2049
2008-08-30* squash some obvious warningsJustin Clarke Casey1-1/+1
* a couple more remain that preferably the original coders should look at in more detail (obsolete warnings in the ogp module and not overriding warnings in the script engine)
2008-08-30Mantis#2084. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-4/+18
Addresses the problem of ghost avatars. The problem was child-agents sending data. Due to symmetry reasons, I considered that wrong. Whenever an avatar A1 in region R1 looks at avatar A2 in adjacent region R2, we have two possibilities to communicate: A2-root sends to A1-child (both in region R2), or A2-child sends to A1-root (both in region R1). Currently, the children send data in some cases, and I guess the viewer gets puzzled about that and switches the child to root as consequence (at least partly), so it becomes visible.
2008-08-29Mantis#2067. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-8/+9
Found that during my ghost-hunt: Add some logging and you see that the counting down happens twice (once at the place that is removed by the patch, and once caused by the actual removal of the root-/child-agent during LLClientView.Close). With the patch applied, I end up with correct numbers, i.e. with 0 roots and 0 children after everyone has logged out.
2008-08-29Fix an issue where the client supplies an empty name and it was appliedMelanie Thielker1-0/+4
to the inventory item, causing the item to wind up without a name.
2008-08-28Update svn properties, formatting cleanup.Jeff Ames11-168/+100
2008-08-28* Added hack so that if the default OpenSimulator ParentEstateId(100) is ↵Teravus Ovares1-1/+1
being sent through rez_avatar, it'll be swapped out with 1. This ensures that when the map recognizes the parent estate id parameter on the linden grid, it'll work as expected. This also has the effect of making it impossible to send a Parent Estate ID with 100 over OGP from OpenSimulator (Sorry Owner of estate 100).
2008-08-28* OGP update, deserialize the parameter array properly in rez_avatarTeravus Ovares1-6/+75
* Tweak rez_avatar data so it's easier to update when OGPr3 comes out
2008-08-28Thank you, A_Biondi, for patch to porperly apply the new item nameMelanie Thielker1-2/+2
when copying within agent inventory
2008-08-27Thank you, salahazar, for a patch that corrects the behavior ofMelanie Thielker2-10/+10
llDetectedLink(). Also a small refactor to remove an interface member from IScriptEngine.
2008-08-27* Updates OGP module to define a default starting pointTeravus Ovares1-2/+25
* An attempt to solve an intermittan SSL Certificate validation error causing communications havok.
2008-08-27Mantis #2058Melanie Thielker1-3/+11
Remove the physics representation of link set child prims when the link set is deleted.
2008-08-27Make the check on inventory cache clearing more robust. AddressesMelanie Thielker1-0/+36
Mantis #1975 in a broader way. This may or may not prop up secure inventory a bit better, but I still recommend to disable it
2008-08-27Mantis#1518. Thank you kindly, Zaki for a patch that:Charles Krinke1-0/+17
Issue is caused by the terrain height not being queried before teleporting within the region. Teleporting between regions is correct. Adding the neccessary checking to intra-region TP code.
2008-08-27Mantis#2047. Thank you kindly, Simsim for a patch that addresses:Charles Krinke1-0/+4
avatar sitting on the object can not telport to other regions.
2008-08-26* Eliminate commented out code no longer needed, as discussed on the mlJustin Clarke Casey1-30/+1
2008-08-26* On loading archives, report an error if an asset does not have the ↵Justin Clarke Casey2-45/+61
expected filename format
2008-08-26* It turns out that Mono doesn't currently support setting the Certificate ↵Teravus Ovares1-1/+8
validation handler, however, it throws a NotImplemented exception. * Added Try/Catch/Message
2008-08-26* Workaround for application/llsd+xml requests coming in as application/xmlTeravus Ovares1-0/+20
* When OGP is active, disable SSL certificate chain validation. I'll add more options here to come, as well as a way to test against a group of known certificate subjects.
2008-08-25* minor: zap some more compilation warningsJustin Clarke Casey1-8/+8
2008-08-25* zap compilation warningsJustin Clarke Casey2-24/+24
2008-08-25* Deal with a WebException thrown if a grid server cannot be contacted for ↵Justin Clarke Casey1-0/+2
region information
2008-08-25Update svn properties.Jeff Ames1-881/+881