aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-23Alter tests to match up with the results after tyre's patchMelanie Thielker2-29/+19
2008-09-23Mantis #2243Melanie Thielker9-3873/+3685
Thank you, tyre, for a patch that refactors LSL to use a unified set of method signatures and type names, reorders methods and removes unused and adds new method stubs.
2008-09-23Small fix to eliminate a beauty spotMelanie Thielker1-1/+1
2008-09-23Update the permissions system to handle scripts and notecards the wayMelanie Thielker5-13/+90
it was meant to. No functional changes, just better code
2008-09-23* Update in OGP draft 3 protocol spec with regards to seed region requests ↵Teravus Ovares2-3/+10
running over GET instead of POST and the rez_avatar/request cap being wrapped in the capabilities map.
2008-09-22Move script and notecard open perms checks from ClientView to theMelanie Thielker2-4/+149
perms module
2008-09-22* Remove some old libsecondlife workarounds as suggested by jhurliman in ↵Justin Clarke Casey1-5/+4
http://opensimulator.org/mantis/view.php?id=2236
2008-09-22* Apply http://opensimulator.org/mantis/view.php?id=2234Justin Clarke Casey2-2/+24
* Exceptions can thrown by llGetOwnerKey() * Thanks idb
2008-09-22Remove the ugly-as-sin "interop" hack script perms fudging inMelanie Thielker1-18/+0
object inventory
2008-09-22Remove comment in perms module after consulting with awebbMelanie Thielker1-6/+2
2008-09-22Fix a small logic error in my perms module changesMelanie Thielker1-1/+1
2008-09-22Create CanEditObjectInventory to preserve the abilityMelanie Thielker3-26/+49
to have different permissions on inventory and object edits. This may be needed by the viewer on public grids
2008-09-22cleanups in inventory REST code. also, disables digest authenticationsDr Scofield8-14/+66
for inventory REST calls for the time being, as firefox, curl, and also python's urllib2 cannot authenticate using digest auth. fix permission checking for prim inventory to be the same as for normal edit ops.
2008-09-22Remove the script engine identifier tag, so the compiler just seesMelanie Thielker2-0/+2
the language specifier. Makes language specifiers work again with script engine specifiers.
2008-09-22Disabled use of ODE internal geometry to see if it affects the "waves ↵Dahlia Trimble1-12/+12
finger" error
2008-09-22Prevent scripts from running under multiple engines at onceMelanie Thielker2-8/+16
2008-09-21Allows to use the new script engine feature. Begin your script withMelanie Thielker2-0/+18
//XEngine: or //DotNetEnine: , optionally followed by a language like //XEngine:lsl, and it will be run on the chosen engine.
2008-09-21Change the scirpt engine loading mechanism. Script engines are nowMelanie Thielker17-490/+131
ordinary region modules and are able to coexist in one instance. See http://opensimulator.org/wiki/ScriptEngines for details. There were changes to OpenSim.ini.example, please note DefaultScriptEngine. Also see the User docs and FAQ on the Wiki. Default is DotNetEngine.
2008-09-21* minor: warnings removalJustin Clarke Casey6-20/+20
2008-09-21Mantis#2233. Thank you kindly, Idb, for a patch that solves:Charles Krinke2-0/+14
The constants for llGetParcelDetails were missing for DotNetEngine and XEngine.
2008-09-21* minor: Remove some of the redundant asset id storage for nowJustin Clarke Casey1-11/+12
2008-09-21* Start recording asset request times after a cache miss. This is very ↵Justin Clarke Casey2-6/+33
primtive at the moment - only the last time is kept for some classes of request * This can be seen as "Latest asset request time after cache miss" in show stats on the region console
2008-09-21* Eliminate the need to copy asset request lists in the asset cache when an ↵Justin Clarke Casey1-82/+22
asset is received or missing * Also eliminates a race condition
2008-09-21* minor: tidy up of AssetCache, remove currently pointless storing of thread ↵Justin Clarke Casey1-12/+9
reference
2008-09-21Fix another reason for #2218Homer Horwitz1-3/+8
2008-09-21* Fix http://opensimulator.org/mantis/view.php?id=2189Justin Clarke Casey4-6/+45
* Allow a grid mode region simulator to properly shutdown even if the grid service is offline
2008-09-21Don't attach attachements to child agents. This coincidentially fixes a raceHomer Horwitz1-0/+3
condition that was the reason for mantis #2218.
2008-09-21Mantis #2232Melanie Thielker4-26/+70
Thank you, idb, for a patch that fixes an overflow issue in casting string -> int for both engines, and adds tests!
2008-09-21The viewer only stores a screenshot on "Set home to here" if the alert thatHomer Horwitz1-1/+2
follows show the text "Home position set.". Changed the message accordingly.
2008-09-21Mantis #2230Melanie Thielker1-0/+12
The result of constants arithmetic can be a CLI type. This allows floating point CLI types to be parsed out of lists properly.
2008-09-21bugfix for shutdownTedd Hansen1-2/+9
2008-09-21ODE was using a box collision shape for some spheres - changed those cases ↵Dahlia Trimble1-2/+3
to now use a mesh instead.
2008-09-21Change XEngine startup to enable it to run as a normal region moduleMelanie Thielker1-27/+40
rather than a special one
2008-09-21Update svn properties, minor formatting cleanup.Jeff Ames32-1396/+1396
2008-09-21Fix an exception in new ScriptEngine loader where a region wouldMelanie Thielker1-1/+2
throw on quit if there was no script engine loaded by the loader
2008-09-21More locks, try's and disable some things in SEC - maybe it won't crash now. :)Tedd Hansen3-14/+27
2008-09-21Some error handling to avoid errors in SECTedd Hansen2-18/+40
2008-09-21Completely revert the notecard uploading changes I made, since theyMelanie Thielker2-5/+4
appear to break script saves in prims for some.
2008-09-21EXPERIMENTAL: Early commit of new Script Engine Component SystemTedd Hansen27-0/+1362
2008-09-20And re-reverse the names from last commitMelanie Thielker1-2/+2
2008-09-20Remove CAPS notecard updating, as LL isn't supporting it and the viewerMelanie Thielker1-1/+2
is not playing nice
2008-09-20Partially implement notecard saves in task inventory. Still makes theMelanie Thielker2-4/+5
notecard go read-only, but changes are saved.
2008-09-20XEngine: Fix loading lists from saved stateMelanie Thielker1-1/+1
2008-09-20* Tidy up OGS1GridServicesJustin Clarke Casey1-101/+39
* Remove what should be unnecessary RemoteException catches when executing local backend calls
2008-09-20* refactor: remove unnecessary packet null check in LLClientViewJustin Clarke Casey2-8/+8
* if a packet was really null it would be caught by the general exception handler at the top of the client thread, which would also provide more information and attempt a clean shutdown
2008-09-20Fix up some ScriptBase detailsMelanie Thielker1-10/+9
2008-09-20- Consistency fix: Like llGetNumberOfNotecardLines, llGetNotecardLine ↵Homer Horwitz1-1/+13
returns NULL_KEY on error now - Conformance fix: If the notecard can't be found, shout on DEBUG_CHANNEL as the docs state - Bug fix: Don't let llGetNotecardLine throw an exception on freshly created notecards
2008-09-20* Fix build error, (maybe)Teravus Ovares2-4/+5
* Might break something.. hard to say.. 0.o
2008-09-20XEngine: Fix llGetListEntryType to return the correct type for the LSL types.Melanie Thielker2-7/+23
Change serialization to omit types it can't deal with.
2008-09-20Add <expire> tag to data snapshot to give the search server an ideaMelanie Thielker1-0/+6
of when to query this node again