aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-16we can use equals on strings because they are comparible, andSean Dague1-3/+3
this is the prefered way of doing these tests.
2008-09-16Mantis #904: Thanks jonc, for a patch that adds "useragents" table toHomer Horwitz2-67/+84
SQLite and stores the logout position in standalone mode. Note: This adds a migration for SQLite, so do your runprebuild
2008-09-16* Apply http://opensimulator.org/mantis/view.php?id=2205 with a few small tweaksJustin Clarke Casey2-4/+4
* LSL Conformance: llSetPayPrice should accept more than four arguments in list * Thanks kcozens!
2008-09-16add an inventory change test.Sean Dague1-0/+19
2008-09-16* Apply http://opensimulator.org/mantis/view.php?id=2204 (with a small tweak)Justin Clarke Casey2-4/+24
* Attached patch implements LSL llGetAgentSize() for DotNetEngine and XEngine. * Thanks Y. Nitta!
2008-09-16* Apply http://opensimulator.org/mantis/view.php?id=2203Justin Clarke Casey2-4/+135
* Implementation of LSL llBreakLink and llBreakAllLinks * Thanks Y. Nitta!
2008-09-16* Apply http://opensimulator.org/mantis/view.php?id=2202Justin Clarke Casey2-4/+4
* llGround causes Array out of bounds exception in KanEd#11 script * Thanks Y. Nitta!
2008-09-16* minor: oops, remove a warning I just inserted myself - naughty boyJustin Clarke Casey2-2/+2
2008-09-16* If an individual scene object throws an exception while storing, deal with ↵Justin Clarke Casey2-23/+33
this locally rather than letting it propogate up the stack * This will allow other scene objects to persist and stop the exception taking down the whole region server
2008-09-16* Change XEngine default configuration values to match those in ↵Justin Clarke Casey1-3/+3
OpenSim.example.ini * Particularly important for max threads since setting this to 2 was causing all events to wait behind the regularly sleeping maintenance event
2008-09-16* minor: method documentationJustin Clarke Casey8-44/+95
2008-09-16Mantis #1843Melanie Thielker1-2/+14
Applying DotNetEnine part of this patch. Thank you, nlin! Corrects ad hoc key list comparison.
2008-09-16Minor formatting cleanup.Jeff Ames3-3/+3
2008-09-16From: mike pitman <pitman@us.ibm.com>Dr Scofield7-8/+17
New patch (terrainedit2.patch) is attached that passes unit tests ( and in fact supplies the new unit test to pass..:) The previous failure was due to the change of the brush size to be linear instead of exponential, and the fact that the test parameters were assuming the exponentional brush size. This patch also removes dependency on 'duration' argument for adjustment step size. This should address the widely differing reports of instability with terrain editing. Note: 'doing this right' implies ultimately reading the parameters from the ini file, which this patch does not do.
2008-09-15Finish up OSSL enable/disable options in XEngine.Melanie Thielker1-8/+45
Now each function can be allowed, subject to threat level, disabled, or restricted to certain UUIDs.
2008-09-15Refactor the os functions allowed check into the threat check methodMelanie Thielker1-184/+5
2008-09-15* minor: recomment the console c# script printout I accidentally left in on ↵Justin Clarke Casey1-1/+1
the last ocmmit
2008-09-15* minor: eat up some yummy warningsJustin Clarke Casey3-8/+10
2008-09-15* Add "reset user password" command to user serverJustin Clarke Casey1-2/+55
* Some copy and pasting has occurred because it's difficult to properly refactor some bits at present. I'm very ashamed and it will disappear at some future point.
2008-09-15* refactor: collapse UpdateUserProfileProperties() into existing ↵Justin Clarke Casey7-63/+29
UpdateUserProfile * the methods were identical except that the Properties one did a check for the user profile beforehand. However, every caller was doing this already anyway.
2008-09-15* oops! Add interface file I forgot in the last checkinJustin Clarke Casey1-0/+49
2008-09-15* refactor: Break out IUserServiceAdmin out of IUserService since admin ↵Justin Clarke Casey5-21/+11
methods don't need to be implemented on Grid hosted region servers
2008-09-15* Complete refactoring accidentally left unfinished so that all server help ↵Justin Clarke Casey4-69/+17
requests flow through the ShowHelp() method
2008-09-15* Add "reset user password" command to standalone region consoleJustin Clarke Casey5-3/+109
* Grid user server implementation to follow shortly
2008-09-15Add the option to use Allow_osFunction = false for each OS functionMelanie Thielker1-0/+11
in the XEngine section
2008-09-15Add more granularity and a risk asessment system to the OSSL API in XEngine.Melanie Thielker1-60/+254
Adds the fix from Mantis #2197 in it's new form. Stage one of the scripting security changes, more to come.
2008-09-15reverting r6302Dr Scofield3-6/+3
2008-09-15Mantis#2197. Thank you kindly, Tyre, for a patch that:Charles Krinke8-4/+114
adds the new function osTeleportAgent().
2008-09-15Update svn properties, minor formatting cleanup, fix a compiler warning.Jeff Ames1-3/+6
2008-09-15From: mike pitman <pitman@us.ibm.com>Dr Scofield3-3/+6
fixes the terrain spikes, and is the result of mostly a tuning operation on the smooth and flatten tools. I dug in and found that the spikes apparently result from smooth's overly aggressive iteration steps toward the average curvature, which leads to an instability that blows up the heights. I introduced a scaling factor to dampen the 'duration' parameter which tames progress and seems to keep things stable.
2008-09-14* Remove a hack I put into OGP so that I could test OGP over SSL with the ↵Teravus Ovares1-3/+1
SeedCap response not being SSL
2008-09-14* Made Seed CAP response respect the SSL setting.Teravus Ovares3-5/+82
2008-09-14* This update makes configuring SSL a little easier on Windows XP. It also ↵Teravus Ovares4-7/+193
makes it possible to run a HTTPS server on the region. It also has a junk Certification authority for test purposes. * There are still a lot of things that are hard coded to use http. They need to be fixed. * Also includes directions * A standard junk PEM file to append to app_settings/CA.pem in the client so SSL will work
2008-09-14Added some further clipping to color- and alpha-values.Homer Horwitz2-98/+102
2008-09-14Mantis #2186Melanie Thielker1-12/+12
Prevent illegal color values from being set.
2008-09-14MessageServer gets the agent position (positionx/y/z) as float, not as int inHomer Horwitz1-3/+3
the login_to_simulator message. Changed parsing accordingly (#2190).
2008-09-14Mantis #2124Melanie Thielker25-1729/+2585
Thank you, RuudL, for a patch that brings MSSQL up to the same implementation level as MySQL.
2008-09-14* Converted a number of methods within the login processes from private to ↵Adam Frisby5-26/+19
protected. * Made several methods virtual to allow derivative overrides. * Minor cleanups.
2008-09-14Thank you kindly, CMickeyb for a patch that:Charles Krinke2-3/+14
Moved intialization of appearance from the SendInitialData event handler into CompleteMovement handler. That ensures that m_appearance is initialized before the inventory is retrieved (so there is a place to check on attachments).
2008-09-14* Minor fixes and cleanups around code being used for Rex Module work.Adam Frisby3-27/+17
2008-09-14Mantis#2183. Thank you kindly, Ewe Loon for a patch that addresses:Charles Krinke2-0/+26
after using llTakeControls my sim receives about 200 messages per second, l of which get queued , this could be because there is no lag as the viewer and sim are on the same computer. The patch I have included checks to see if the "Changed" param is 0 then searches the EventQueue for Control messages being sent to the same localid, if it finds a message already in the Queue and Changed==0 then the new message is only notifing you the key is being held, since there is already a message the new one isnt needed so it isnt added to the queue.
2008-09-13Fixed several cases of inverted colors and alpha in DNE and XEngine.Homer Horwitz2-70/+70
Added clamping to 0.0 - 1.0 for R, G, B, and A.
2008-09-13* Adds regiondata and estatedata persistence in Sqlite. This commit is ↵Teravus Ovares1-0/+3
actually an assist. 99% of the work was already done by Melanie.
2008-09-13Formatting cleanup.Jeff Ames5-128/+135
2008-09-13Fixing a bug in DNE which caused the face-colors to be inverted when set via ↵Homer Horwitz1-9/+9
script.
2008-09-13Update svn properties. Minor formatting cleanup. Fix some minor typos. ↵Jeff Ames2-20/+4
Remove some old dead code.
2008-09-13Fix another missing UUID before a ToString().Homer Horwitz1-1/+1
2008-09-13* Fixes SQLite load crash. Teravus Ovares1-2/+3
* added primary key to regionsettings table in the cached table * initialized the data adapter. * Still untested fully, so watch out!
2008-09-13Add region settings support to SQLite (untested!)Melanie Thielker1-1/+183
2008-09-13Mantis #2018Melanie Thielker3-6/+15
Read animation data from avataranimations.xml to allow default animations to be started and stopped by name from scripts.