aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-30* This is Melanie's XEngine script engine. I've not tested this real well, ↵Teravus Ovares22-0/+15908
however, it's confirmed to compile and OpenSimulator to run successfully without this script engine active.
2008-05-30* Fixed a dangling event hook that I added.Teravus Ovares4-6/+116
* Added a Non-finite avatar position reset. This will either handle the <0,0,0> avatar gracefully, or send the avatar to 127,127,127 if that also doesn't work. ( I've only been able to reproduce this error once on my development workstation )
2008-05-30Update svn properties. Formatting cleanup.Jeff Ames20-437/+391
2008-05-30thanks krtaylor for a Dr Scofield1-17/+18
Patch to cleanup some incorrect parsing, boundry conditions and error checking in the llGetNotecardLine and llGetNumberOfNotecardLines functions.
2008-05-30* Added helper method to the Sun module to Get the Linden hour based on the ↵Teravus Ovares3-2/+21
math in the sun module. This populates the sun phase slider on the terrain tab in the estate tools according to the current sun phase. Display purposes only for now. Need to go the other way for setting the sun phase based on the linden hour in the estate tools.
2008-05-30* Updated sun module to only send sun updates to root agents. Because it ↵Teravus Ovares1-3/+54
was sending updates to both root and child agents, you'll still get sun jitter until this revision is adopted by every region nearby.
2008-05-29* Caches UUIDName requestsTeravus Ovares2-11/+98
* Looks up UUIDNames for script time and colliders in a separate thread. * Hopefully this'll allow you to look at top scripts on a region that has a lot of scripts without crashing your client thread.
2008-05-29* Fixes a few taper/top-sheer situations that were previously having issues.Teravus Ovares1-2/+2
2008-05-29* Applying Dahlia's interim path curve patch. it adds initial support for ↵Teravus Ovares4-47/+669
some tori/ring parameters. Thanks Dahlia! * Some situations do not match the client's render of the tori, we know and are working on it. This is an initial support patch, so expect it to not be exact. * Some tapers are acting slightly odd. Will fix.
2008-05-29Mantis#1416. Thank you very much, Melanie for a patch that:Charles Krinke1-0/+12
Createa a method to find out if a prim inventory contains scripts
2008-05-29* Ruling out another potential cause of zombie-ismTeravus Ovares1-0/+2
2008-05-29* Fix string literal with URL + LLcommand();Teravus Ovares3-7/+22
* Added 'detected around: value' when a x.Y detect occurs to help debug. * Fixed object text is too long to store to the database (wikilith)
2008-05-29this is a snapshot of the OSHttpServer work-in-progress. it's an initial ↵Dr Scofield3-0/+191
skeleton, far from complete, just want to check in early and often.
2008-05-29attempting to get to the bottom of unresponsive grids servers bySean Dague1-21/+32
adding back in a few messages on exceptions.
2008-05-29Mantis#1411. Thank you kindly for Dataserver.cs and a patchCharles Krinke8-7/+198
that adds function stub to request region info by name and adds llRequestSimulatorData() and the dataserver event
2008-05-29cleaning up returned XML REST doclet (no more xsi, xsd) Dr Scofield5-4/+66
2008-05-29Mantis#852. Thank you kindly, cmickeyb for a patch that:Charles Krinke1-17/+46
There appears to be a problem with the mapping of scripts when an llHTTPRequest completes. CheckHttpRequests() looks for a function that maps to the localID associated with the http request. However, the only context in which it looks is that of the first region. That is, m_CmdManager.m_ScriptEngine.m_ScriptManager is the same no matter where the script executed that initiated the llHTTPRequest. Since scripts appear to be loaded into a region specific scriptmanager on startup, the event handler is only found for requests coming from the first region.
2008-05-29* Added a child agent check to the ChildAgentData Update to make sure that ↵Teravus Ovares1-1/+5
you're a child agent before applying the changes from the grid comms. Doing this to rule it out as a source of a few bugs such as the Zombie bug and the Express Train to 0,0,0 bug.
2008-05-28* Fixed a slight issue with the LLRAW exporter.Adam Frisby2-3/+4
* Linden uses a neutral height channel of 128.0 on their multiplier. OpenSim was using a neutral of 127.0 - this has been changed to 128.0, this may cause files exported to the .RAW format to look slightly different when loaded back in - it is highly recommended to use the R32 format instead which avoids these sorts of issues. * Made a tweak to the Terrain Plugin loading process.
2008-05-28*Added a Few External Checks relating to scripts including the seperation of ↵mingchen4-9/+107
runscript into 3 different situations (Rez, start stop)
2008-05-28From: Kurt Taylor <krtaylor@us.ibm.com>Sean Dague3-7/+86
Attached is an initial implementation of llGetNotecardLine and llGetNumberOfNotecardLines. I decided to go ahead an send these out for comment while I continue to work on the second part of the proper implementation. These functions work and return the values requested, as initially defined in the code, but should be properly implemented to return the requested information via a dataserver event. This event will be added and these functions fixed and included in a second patch shortly.
2008-05-28update the nhibernate inventory item base definitionSean Dague1-0/+6
2008-05-28actually user the database_connect string for mysql. Sean Dague3-28/+20
This means you can run all the OpenSim grid services without needing a mysql_connection.ini
2008-05-28let Grid Servers specify a connect string in their configuration.Sean Dague12-37/+70
2008-05-28* Minor: Another small log adjustmentJustin Clarke Casey1-1/+1
2008-05-28* Minor: Log message clean up in archiver codeJustin Clarke Casey2-3/+5
2008-05-28* Put in stubs for "load-oar" command, including ultra-primitive temporary ↵Justin Clarke Casey7-14/+198
tar loading code * Currently as a test, this will successfully load only the first file of an opensim archive and do absolutely nothing with it
2008-05-28spring cleaning, remove a bit of db4o grid serverSean Dague2-229/+0
code that was still in tree.
2008-05-28* Put textures into a separate assets/ directory in the opensim archiveJustin Clarke Casey2-6/+37
* Fix nre where the asset couldn't be found * Not ready yet
2008-05-28remove terrain bloat, only keep last terrain revisionSean Dague1-1/+5
for mysql. For active terraformers this should return a lot of database space.
2008-05-28remove an erroneous line to fetch the terrain table in a way that Sean Dague1-2/+0
isn't actually used.
2008-05-28Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke6-11/+85
llLoopSound sends out one packet to clients in view, so it doesn't work anymore when clients enter later on, or the prim is modified in any way. Solution: Stored sound data on prim, send full update instead. llStartSound and llLoopSound now accept both LLUUIDs to a sound as well as object inventory sound names. llStopSound clears prim data and sends full update.
2008-05-28Mantis#1398. Thank you kindly, cmickeyb for a patch that:Charles Krinke1-1/+11
small patch to encode and send the outbound_body parameter in an http request. this enables post messages to send a body
2008-05-28* Implements duplicate packet tracking. This virtually eliminates object ↵Teravus Ovares1-1/+64
duplication causing 2-3 duplicates depending on the UDP connection quality. This also eliminates duplicated chat, etc. * It's verbose currently since this is new. You'll see: [CLIENT]: Warning Duplicate packet detected X Dropping. After this is sufficiently tested we'll remove that m_log.info line.
2008-05-28Formatting cleanup.Jeff Ames23-204/+206
2008-05-28Thank you kindly, Melanie for a patch that:Charles Krinke1-0/+2
When renaming items in task inventory, they become useless. Fix attached
2008-05-28Thank you very much, ChrisIndigo for a patch that:Charles Krinke1-9/+25
If a script updates an object to the same position or rotation offset, the object triggers an update and storage of the object. This become more prevalent in sensor and timer events which may be firing frequently.
2008-05-28*Hiding the warnings about scanning assemblies when initialising mingchen1-2/+7
2008-05-28Thank you, Grumly57 kindly for:Charles Krinke6-10/+33
This patch proposes a new function : osOpenRemoteDataChannel(key channeID) that allow to open an XMLRPC channel for remote_data event. The difference is that the channelID can be customized instead of being randomly generated.
2008-05-28Thank you kindly, Melanie for a patch that adds a two-stageCharles Krinke1-1/+7
check. It seems there may be a race. For me, this patch, just as it is here, fixes it.
2008-05-28* Resolves comment removal in string literals in the LSL2CSConverterTeravus Ovares1-17/+19
2008-05-28Change a couple Windows directory separators in SVN module to be platform ↵Jeff Ames1-2/+2
agnostic.
2008-05-28Update svn properties. Fix inconsistent newlines.Jeff Ames1-187/+187
2008-05-27* Include prims.xml file in archiveJustin Clarke Casey2-5/+17
2008-05-27* Add .jp2 extension to archived texturesJustin Clarke Casey1-1/+1
2008-05-27* Write prim archives out as v7 tar files temporarily for testing purposes - ↵Justin Clarke Casey3-2/+187
not even gzipping yet! * Using hacked up code to create the correct tar archive headers - this stuff should really go away again before too long * No user functionality yet
2008-05-27another take on the whole string cleansing, by adding specific poisonSean Dague1-2/+5
keywords in foo.bar strings. Add items to the poison array to block them.
2008-05-27* Added new InstallPlugin interface to ITerrainModule.Adam Frisby2-10/+22
* This is to allow other region modules to install Terrain Effects.
2008-05-27* Revert last commit as it opens sim owners up to all sorts of nasty ↵Teravus Ovares1-3/+3
scripts. * If the regex that we're using isn't good enough, we really need to make it better.
2008-05-27comment out the x.y security check in the script engine because it's so ↵Sean Dague1-3/+6
aggressive it blocks string = "http://osgrid.org", amoung other things.