aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AppDomainManager.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove all the subclassing complexity and script server interfaces fromMelanie Thielker2008-09-261-253/+0
| | | | | | | | DNE and move all of DNE into the DotNetEngine directory. Remove references that would cause the script runtime to load the entire engine + scene into each script appdomain. This might help DNE memory consumption.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-1/+0
| | | | (this took a while to run).
* * Applied Grumly57 patch for #781; Thanks, Grumly!lbsa712008-03-181-7/+7
|
* Formatting cleanup.Jeff Ames2008-03-181-26/+25
|
* I'm the stupidest stupid in the whole world. :)Tedd Hansen2008-02-251-3/+4
| | | | | Fixed a bug in new Prim where I actually ADDED new values to old values instead of directly assigning them... Now that was a waste of time! :P
* Minor cleanup.Jeff Ames2008-02-201-6/+6
|
* Converted logging to use log4net.Jeff Ames2008-02-051-11/+7
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* SCRIPTING STILL BROKENTedd Hansen2008-02-011-13/+31
| | | | | | | | | | | Added comments and regions, restructured code Changed a lot of AppDomain junk from console from using Console.Write to Log.Verbose and set it to #if DEBUG All modules should now refresh their configuration runtime Made all logging in ScriptEngine.Common get script name from actual engine Renamed LSLLongCmdHandler to AsyncLSLCommandManager Added auto-recover with 5 sec throttle for new MaintenanceThread
* Config option to set number of scripts per AppDomainTedd Hansen2008-02-011-1/+2
|
* Set eolTedd Hansen2008-01-121-238/+238
|
* Added license to new filesTedd Hansen2008-01-121-0/+1
|
* Major reorganizing of DotNetEngine. Moved common script engine parts to ↵Tedd Hansen2008-01-121-0/+238
ScriptEngine.Common, only .Net-specific code in DotNetEngine. AppDomains, event handling, event execution queue and multithreading, script load/unload queue, etc has been moved to ScriptEngine.Common. Loads of things has been put into interfaces instead of the specific class. We are now one step closer to ScriptServer, and its very easy to implement new script languages. Just a few lines required to make them a OpenSim script module with all its glory.