aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Thank you, Godfrey, for a patch that implements osGetLinkPrimitiveParamsMelanie2009-08-074-21/+53
| | | | | | | Fixes Mantis #3979 Applied with changes. Changed ThreatLevel to High since all discovery functions are a high threat. Overriding that is the responsibility of the grid owner.
* Experimental! Implement ISponsor in ScriptInstanceMelanie2009-08-071-12/+7
|
* Remove GetFullPath call from config includes, because it barfs in WindozeMelanie2009-08-071-2/+1
|
* Another stab at cmickeyb's patch for script GC.Melanie2009-08-0711-68/+69
| | | | | Moved the Close() for the appdomain-hosted parts into a new destructor on ScriptInstance.
* Temporailiy add some info output in config loadMelanie2009-08-071-0/+1
|
* Add a method to init the OSSL Api's m_LSL_Api member back to the OSSL ApiMelanie2009-08-071-1/+9
|
* From: Snowcrash <Snowcrash.short@gmail.com>Melanie2009-08-073-4/+13
| | | | | | | | | | | | | Date: Wed, 5 Aug 2009 12:45:56 +0200 Subject: [PATCH] A few minor tweaks to the MRM API's in order to make it possible for MRM's to run in a separate AppDomain without poluting the primary appdomain of OpenSim Specifically: Added an explicit method for getting the "globals" of the MRM, removing the need to have the MRM script code loaded into the primary domain, in order to set up proxies Added a [Serializable] attribute to TouchEventArgs, again in order to remove the need to have MRM script code loaded into the primary domain. --------- Applied with whitespace changes
* Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensimMelanie2009-08-077-134/+245
|\
| * Merge branch 'groups-core-contrib' of git://github.com/mcortez/opensim into ↵Sean Dague2009-08-075-134/+235
| |\ | | | | | | | | | incoming
| | * Merge branch 'master' into groups-core-contribMichael Cortez2009-08-068-50/+64
| | |\
| | * | Fixing comments re: INI file.Michael Cortez2009-08-061-3/+3
| | | |
| | * | Continue with renaming of Groups module componentsMichael Cortez2009-08-053-27/+29
| | | |
| | * | Fixes mono Add-In references for the OptionalModules add-in so that groups ↵Michael Cortez2009-08-055-5/+6
| | | | | | | | | | | | | | | | doesn't throw errors, and so that the add-in is correctly reported as "OptionalModules" rather then as "SampleMoney"
| | * | Begin refactoring XmlRpcGroups to a more generic Groups module that allows ↵Michael Cortez2009-08-054-106/+201
| | | | | | | | | | | | | | | | for replaceable Groups Service Connectors.
| * | | * Implements MRM's Stop() interface member.Adam Frisby2009-08-072-0/+10
| | | | | | | | | | | | | | | | * MRM Scripts should do appropriate cleanup within this event, to allow for clean shutdowns and script updates. This means unbinding from events you are listening to, and releasing any resources.
* | | | Make the opensim.ini logfile option really work (port of a fix from ROBUST)Melanie2009-08-071-0/+3
|/ / /
* | | Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensimMelanie2009-08-072-1/+7
|\ \ \
| * | | HGAuthenticationService must be a singleton, because it has in-memory state. ↵Diva Canto2009-08-061-1/+1
| | | | | | | | | | | | | | | | This makes this singleton register with IScene, so that other parts can retrieve its reference.
| * | | Added ToXml2() to ISceneObject, so that components other than regions can ↵Diva Canto2009-08-061-0/+6
| | | | | | | | | | | | | | | | use this abstraction.
* | | | Revert the XEngine memleak patch, it causes premature GC.Melanie2009-08-0711-73/+68
|/ / / | | | | | | | | | | | | This matches behavior seen with an earlier attempt to do this, apparently the sponsor mechanism does't work in Mono
* | | |From: James J Greensky <jame.j.greensky@intel.com>Melanie2009-08-0611-68/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |Date: Wed, 5 Aug 2009 09:51:52 -0700 |Subject: [PATCH] Closed two major memory leaks for scripted objects | |Two major memory leaks for the scripted objects were fixed |- One leak had to do with remoting acrossing app domains. When a script and | its controlling agent communicate across an application boundary, it calls | functions on a stub proxy object that then invokes the remote method on | the object in the other app domain. These stub objects (two for each script) | were setup to have infinate lifetimes and were never being garbage collected. |- The second leak was the result of adding a scene object part instance method | to a scene event and never removing it. This cause the event's delegate list | to maintain a link to that object which is then never freed as the scene event | object is never destroyed. Patch applied, please direct feedback to me. Possible issue: Longtime idle scripts like vendors may fail.
* | | goose pandaJustin Clark-Casey (justincc)2009-08-061-3/+1
| | |
* | | Disable all IAR tests for now due to possible failure-causing race conditionJustin Clark-Casey (justincc)2009-08-061-3/+3
| |/ |/|
* | Allow arbitrary wildcards in config includes. Things likeMelanie2009-08-061-3/+4
| | | | | | | | | | Include-Modules = "addin-modules/*/config/*.ini" will now work. Adds Util.Glob, which will resolve a globbed path into a string list.
* | Remove bad assembly identification tagMelanie2009-08-051-3/+0
| |
* | Disable TestReplicateArchivePathToUserInventory() pending more investigationJustin Clark-Casey (justincc)2009-08-051-1/+1
| |
* | Reinstate TestLoadIarV0_1ExistingUsers(), removing unnecessary waitJustin Clark-Casey (justincc)2009-08-051-11/+12
| |
* | insert a little more debug info for TestReplicateArchivePathToUserInventory()Justin Clark-Casey (justincc)2009-08-051-1/+6
| |
* | Remove waiting in TestReplicateArchivePathToUserInventory() since local ↵Justin Clark-Casey (justincc)2009-08-052-3/+5
| | | | | | | | | | | | inventory loading is synchronous Insert a little more debugging info in case the occasional failure reoccurs
* | Recomment TestReplicateArchivePathToUserInventory() for now due to ↵Justin Clark-Casey (justincc)2009-08-051-6/+11
| | | | | | | | occasional test fail
* | reinstate TestSaveIarV0_1()Justin Clark-Casey (justincc)2009-08-051-1/+1
| |
* | remove some more mono compiler warningsJustin Clark-Casey2009-08-052-7/+7
| |
* | * Remove some mono compiler warningsJustin Clark-Casey2009-08-055-22/+22
| |
* | reinstate TestReplicateArchivePathToUserInventory()Justin Clark-Casey2009-08-051-1/+1
|/
* Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensimJustin Clark-Casey2009-08-041-12/+12
|\
| * trying to fix rare timer related exception.dr scofield (aka dirk husemann)2009-08-041-12/+12
| |
* | * Small commented out debug message for module loading, partly to test my ↵Justin Clark-Casey2009-08-041-0/+2
|/ | | | ability to commit with git
* Slight change to state management for attach scheduling.Alan Webb2009-08-043-13/+11
| | | | Signed-off-by: dr scofield (aka dirk husemann) <drscofield@xyzzyxyzzy.net>
* This change adds support for the attach event in scripts.Alan Webb2009-08-045-0/+41
| | | | | | | | | | | | | | | | | | | [1] Added a new OnAttach event to Scene/EventManager [2] Hooked up existing attach event handler in XEngine. [3] Modified SceneGraph and Scene.Inventory to trigger attach events at the appropriate places. I was forced to distribut the changes across two files because of the way attach processing is distributed across the two files. [4] In the case of RezSingleAttachmentFromInventory it is necessary to handle event scheduling in a special way. There is no synchronous path available, so the fact that this object is attached, and who it is attached to, is cached when the ScriptInstance is created. When the script is started, the attached handler is driven after on_rez (but before changed, this should be reviewed). Signed-off-by: dr scofield (aka dirk husemann) <drscofield@xyzzyxyzzy.net>
* starting to refactor path generation out of prim extrusiondahlia2009-08-031-2/+18
|
* Revert the #3899 patch and it's two follow upsMelanie2009-08-043-49/+32
|
* Update a misspelled nameMelanie2009-08-041-1/+1
|
* Change the freeswitch out connector (which is pointless) to an in connectorMelanie2009-08-041-59/+44
|
* Add the region module shell for the new freeswitch serviceMelanie2009-08-041-0/+128
|
* Add plumbing for the SceneObjectDeleter to wait for the script engine toMelanie2009-08-0410-3/+72
| | | | allow final deletion of objects. Meant to support the attach(NULL_KEY) event,
* If the FreeSwitch context is unset or "public", then accept any context.Melanie2009-08-041-1/+1
| | | | This restores the "out of the box" functionality.
* Output the Freeswitch context received and the context set up in theMelanie2009-08-041-1/+1
| | | | debugging message so a mismatch can be corrected more easily
* * Tweak the caps manager so that the NPCAvatar works again.Teravus Ovares2009-08-015-13/+52
|
* Add copyright header. Formatting cleanup.Jeff Ames2009-08-011-1/+1
|
* * Fix a locking issue in the EventQueueTeravus Ovares2009-07-311-10/+22
|