Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Publish a method on ICompiler to generate the CIL assembly path | Melanie Thielker | 2009-06-21 | 1 | -0/+7 |
| | | | | | | Cause group deeding to apply next owner perms | ||||
* | Formatting cleanup. | Jeff Ames | 2009-06-10 | 3 | -8/+8 |
| | |||||
* | Formatting cleanup. Ignore some generated files. | Jeff Ames | 2009-06-09 | 2 | -10/+10 |
| | |||||
* | Skip lone ident statments or for-loop assignments | Mike Mazur | 2009-06-07 | 2 | -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-loop | Mike Mazur | 2009-06-07 | 5 | -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 to | Melanie Thielker | 2009-06-05 | 1 | -1/+9 |
| | | | | | | | scripting. Fixes Mantis #2862 | ||||
* | Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵ | Jeff Ames | 2009-06-01 | 8 | -8/+8 |
| | | | | LICENSE.txt. | ||||
* | cleaning out warnings. | Dr Scofield | 2009-05-22 | 1 | -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 scripts | Melanie Thielker | 2009-05-13 | 2 | -14026/+14346 |
| | |||||
* | Add events to IScriptEngine to notify scripting modules of the removal | Melanie Thielker | 2009-04-10 | 1 | -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 scripts | Melanie Thielker | 2009-04-02 | 1 | -5/+8 |
| | |||||
* | * minor: remove one mono compiler warning | Justin Clarke Casey | 2009-03-27 | 1 | -1/+1 |
| | |||||
* | Read the .map files in on sim startup. Also clean them up when an assembly | Melanie Thielker | 2009-03-26 | 1 | -1/+29 |
| | | | | | | is deleted. | ||||
* | Avoid preprocessing scripts on region restart just to generate the line | Melanie Thielker | 2009-03-26 | 1 | -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 | ||||
* | cleanup | Dr Scofield | 2009-03-25 | 1 | -1/+0 |
| | |||||
* | Thank you, dslake, for a patch that speeds up the Delete Old Files option | Melanie Thielker | 2009-03-24 | 1 | -13/+19 |
| | | | | | | | in the compiler. Committed with changes. Fixes Mantis #3325 | ||||
* | * Make all coded defaults match settings in OpenSim.ini.example | Justin Clarke Casey | 2009-03-11 | 1 | -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 Mazur | 2009-03-11 | 1 | -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 warnings | Justin Clarke Casey | 2009-02-25 | 1 | -1/+1 |
| | |||||
* | Allow /* C-style comments */ in LSL scripts. | Mike Mazur | 2009-02-25 | 2 | -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 Krinke | 2009-02-25 | 2 | -0/+2 |
| | | | | | Deals with the multiple warning side affect introduced earlier. | ||||
* | Update svn properties, add copyright headers, minor formatting cleanup. | Jeff Ames | 2009-02-23 | 1 | -1/+1 |
| | |||||
* | Mantis#3187. Thank you kindly, DoranZemlja for a patch that: | Charles Krinke | 2009-02-23 | 3 | -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 Krinke | 2009-02-22 | 1 | -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 Ames | 2009-02-22 | 1 | -23/+21 |
| | |||||
* | Thanks DoranZemlja for a patch implementing non-shortcircuiting in | Mike Mazur | 2009-02-20 | 2 | -12/+31 |
| | | | | | logical and and logical or in LSL. Fixes Mantis #3174. | ||||
* | Fix the windows sharing violations on script crossings | Melanie Thielker | 2009-02-18 | 1 | -1/+43 |
| | |||||
* | cleanup | Dr Scofield | 2009-02-16 | 1 | -6/+0 |
| | |||||
* | From: alan webb <alan_webb@us.ibm.com> & dr scofield <drscofield@xyzzyxyzzy.net> | Dr Scofield | 2009-02-16 | 1 | -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 the | Mike Mazur | 2009-02-09 | 1 | -3/+7 |
| | | | | | | CSCodeGeneratorTest.TestStringsWithEscapedQuotesAndComments unit test to pass on Windows. Fixes Mantis #3104. | ||||
* | This changeset is the step 1 of 2 in refactoring | Dr Scofield | 2009-02-06 | 1 | -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#2320 | Homer Horwitz | 2008-12-07 | 1 | -7665/+7735 |
| | |||||
* | Remove a line of debug info in XEngine that i missed | Melanie Thielker | 2008-12-03 | 1 | -1/+1 |
| | |||||
* | Remove some of the XEngine chattiness | Melanie Thielker | 2008-12-02 | 1 | -3/+3 |
| | |||||
* | Start scripts in attachments only after a successful attach. Elimininate | Melanie Thielker | 2008-11-29 | 1 | -0/+12 |
| | | | | | | a gratuitious asset fetch when region crossing. | ||||
* | fixing warnings in YProlog language support | Dr Scofield | 2008-11-17 | 1 | -2/+2 |
| | |||||
* | * Set defaults on the allowed LSL Compilers to 'lsl' unless you've specified ↵ | Teravus Ovares | 2008-11-12 | 1 | -1/+1 |
| | | | | otherwise. | ||||
* | Refactor IEventReceiver back into IScriptEngine | Melanie Thielker | 2008-11-08 | 1 | -2/+2 |
| | |||||
* | * Fix test failure in CSCodeGeneratorTest.TestJumps() | Justin Clarke Casey | 2008-11-06 | 1 | -1/+1 |
| | | | | | | | * Need new NoOp(); generated part * Not Homer's fault - this test ain't running under Windows! (needs fixing!) | ||||
* | Mantis #2571 | Melanie Thielker | 2008-11-06 | 1 | -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 Mazur | 2008-11-04 | 1 | -1/+1 |
| | | | | translating from LSL to C#. Thanks idb for the patch. Fix issue 2546. | ||||
* | Mantis #2518 | Melanie Thielker | 2008-11-01 | 2 | -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 numbers | Melanie Thielker | 2008-10-07 | 1 | -2/+2 |
| | |||||
* | Restore "friendly errors" to the XEngine | Melanie Thielker | 2008-10-07 | 1 | -2/+11 |
| | |||||
* | Update unit tests | Melanie Thielker | 2008-09-27 | 1 | -13/+6 |
| | |||||
* | Add friendly error messages to both engines. | Melanie Thielker | 2008-09-27 | 2 | -74/+170 |
| | |||||
* | Mantis #2277 | Melanie Thielker | 2008-09-26 | 1 | -1/+0 |
| | | | | | | Patch up a type name change in libomv. Thanks for tracking that down, idb | ||||
* | Compiler Connection! One world, one compiler! | Melanie Thielker | 2008-09-26 | 1 | -2/+2 |
| | |||||
* | Update svn properties, formatting cleanup. | Jeff Ames | 2008-09-23 | 1 | -2/+2 |
| | |||||
* | Refactor XEngine parser as per suggestions from mikem | Melanie Thielker | 2008-09-23 | 5 | -85/+32 |
| |