aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/CodeTools (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change the return value if the compiler to "object" to allow compilersMelanie2009-08-311-2/+2
| | | | to return dynamic method objects
* Publish a method on ICompiler to generate the CIL assembly pathMelanie Thielker2009-06-211-0/+7
| | | | | | Cause group deeding to apply next owner perms
* Formatting cleanup.Jeff Ames2009-06-103-8/+8
|
* Formatting cleanup. Ignore some generated files.Jeff Ames2009-06-092-10/+10
|
* Skip lone ident statments or for-loop assignmentsMike Mazur2009-06-072-3/+65
| | | | | | | | | | | | | | | | | SL's LSL supports lone idents: integer x; x; as well as lone idents in for-loop assignments: for (x; x < 10; x++) { ... } while those are errors in C# (MONO at least). This patch skips lone idents in such places. Fixes Mantis #3042.
* Allow empty assignment in for-loopMike Mazur2009-06-075-7513/+7733
| | | | | | | | | | | | For loops with no assignment are no longer syntax errors. For example, this is now valid: for ( ; i < 10; i++) { ... } Corresponding changes to lsl.{lexer,parser} in r99 in opensim-libs. Fixes Mantis #2501. Fixes Mantis #2884.
* Thank you, thomax, for a patch to provide finer-grained access control toMelanie Thielker2009-06-051-1/+9
| | | | | | | scripting. Fixes Mantis #2862
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-018-8/+8
| | | | LICENSE.txt.
* cleaning out warnings.Dr Scofield2009-05-221-1/+0
| | | | | | NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that?
* Make the LSL HTTP server create and give out URLs to scriptsMelanie Thielker2009-05-132-14026/+14346
|
* Add events to IScriptEngine to notify scripting modules of the removalMelanie Thielker2009-04-101-2/+5
| | | | | | | | | of objects from the scene, and of scripts from objects. This facilitates the development of modules that can register prims with externall servers for inbound email and XMLRPC. Currently implemented in XEngine only. Also applying cmickeyb's compiler locking patch, since it seems risk-free.
* Fix a nullref when compiling non-LSL scriptsMelanie Thielker2009-04-021-5/+8
|
* * minor: remove one mono compiler warningJustin Clarke Casey2009-03-271-1/+1
|
* Read the .map files in on sim startup. Also clean them up when an assemblyMelanie Thielker2009-03-261-1/+29
| | | | | | is deleted.
* Avoid preprocessing scripts on region restart just to generate the lineMelanie Thielker2009-03-261-11/+23
| | | | | | | | number map. Instead, write the map to a file for later use. That is not yet used, so currently runtime errors after a sim restart will have wrong line numbers
* cleanupDr Scofield2009-03-251-1/+0
|
* Thank you, dslake, for a patch that speeds up the Delete Old Files optionMelanie Thielker2009-03-241-13/+19
| | | | | | | in the compiler. Committed with changes. Fixes Mantis #3325
* * Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey2009-03-111-2/+1
| | | | | | | * In most cases, the setting in OpenSim.ini.example is taken as the canonical one since this is the file virtually everyone ends up using * OpenSim will start up with a blank OpenSim.ini, in which case sqlite is the default database (as before)
* Remove chained tests in BasicGridTest.cs.Mike Mazur2009-03-111-1/+1
| | | | | | | | | | It's good practice to isolate unit tests so their outcome (pass/fail) does not depend on whether another test has been run/passed/failed. A method is used to populate the DB independently for each test, and a TearDown method cleans up the database after each test. Also adding extra comment in C-style comment test.
* * minor: Remove most mono compiler warningsJustin Clarke Casey2009-02-251-1/+1
|
* Allow /* C-style comments */ in LSL scripts.Mike Mazur2009-02-252-17501/+17655
| | | | | | This fixes Mantis #3199. opensim-libs SVN r87 contains the corresponding changes.
* Fixes Mantis #3187. Thank you kindly, DoranZemlja for a patch that:Charles Krinke2009-02-252-0/+2
| | | | | Deals with the multiple warning side affect introduced earlier.
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-02-231-1/+1
|
* Mantis#3187. Thank you kindly, DoranZemlja for a patch that:Charles Krinke2009-02-233-0/+99
| | | | | | | Adds a warning for an LSL construct that exploits a popular list memory saving hack.
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-221-4/+4
| | | | | | | | | * Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
* Refactor log4net logger handling in script engine. (#3148)Jeff Ames2009-02-221-23/+21
|
* Thanks DoranZemlja for a patch implementing non-shortcircuiting inMike Mazur2009-02-202-12/+31
| | | | | logical and and logical or in LSL. Fixes Mantis #3174.
* Fix the windows sharing violations on script crossingsMelanie Thielker2009-02-181-1/+43
|
* cleanupDr Scofield2009-02-161-6/+0
|
* From: alan webb <alan_webb@us.ibm.com> & dr scofield <drscofield@xyzzyxyzzy.net>Dr Scofield2009-02-161-8/+17
| | | | | | | This changeset fixes a rather nasty script compile bug that manifests itself under heavy load.
* Thanks Tommi Laukkanen for a patch that allows theMike Mazur2009-02-091-3/+7
| | | | | | CSCodeGeneratorTest.TestStringsWithEscapedQuotesAndComments unit test to pass on Windows. Fixes Mantis #3104.
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-061-1/+1
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* Allow empty statements in LSL (; followed by ;). Fixes Mantis#2320Homer Horwitz2008-12-071-7665/+7735
|
* Remove a line of debug info in XEngine that i missedMelanie Thielker2008-12-031-1/+1
|
* Remove some of the XEngine chattinessMelanie Thielker2008-12-021-3/+3
|
* Start scripts in attachments only after a successful attach. ElimininateMelanie Thielker2008-11-291-0/+12
| | | | | | a gratuitious asset fetch when region crossing.
* fixing warnings in YProlog language supportDr Scofield2008-11-171-2/+2
|
* * Set defaults on the allowed LSL Compilers to 'lsl' unless you've specified ↵Teravus Ovares2008-11-121-1/+1
| | | | otherwise.
* Refactor IEventReceiver back into IScriptEngineMelanie Thielker2008-11-081-2/+2
|
* * Fix test failure in CSCodeGeneratorTest.TestJumps()Justin Clarke Casey2008-11-061-1/+1
| | | | | | | * Need new NoOp(); generated part * Not Homer's fault - this test ain't running under Windows! (needs fixing!)
* Mantis #2571Melanie Thielker2008-11-061-2/+2
| | | | | | Thank you, idb, for a patch that fixes the jump function in LSL.
* Prefix LSL variables which are C# keywords with @ instead of _ when ↵Mike Mazur2008-11-041-1/+1
| | | | translating from LSL to C#. Thanks idb for the patch. Fix issue 2546.
* Mantis #2518Melanie Thielker2008-11-012-9/+121
| | | | | | | Thank you, idb, for a patch that fixes the conflicts of lsl identifiers with c# keywords
* Adapt tests to new friendly errors and correct line numbersMelanie Thielker2008-10-071-2/+2
|
* Restore "friendly errors" to the XEngineMelanie Thielker2008-10-071-2/+11
|
* Update unit testsMelanie Thielker2008-09-271-13/+6
|
* Add friendly error messages to both engines.Melanie Thielker2008-09-272-74/+170
|
* Mantis #2277Melanie Thielker2008-09-261-1/+0
| | | | | | Patch up a type name change in libomv. Thanks for tracking that down, idb
* Compiler Connection! One world, one compiler!Melanie Thielker2008-09-261-2/+2
|
* Update svn properties, formatting cleanup.Jeff Ames2008-09-231-2/+2
|