aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Apply http://opensimulator.org/mantis/view.php?id=2370Justin Clarke Casey2008-10-091-164/+16
| | | | | | | * Refactor lLMessageLinked() to use internal method GetLinkParts * thanks ralphos
* Clean up webmap-generation a bit:Homer Horwitz2008-10-091-17/+3
| | | | | | | - Remove some duplicated code - Avoid unnecessary allocation of variables/values if only used once anyway.
* * Bump server info number to 0.5.11Justin Clarke Casey2008-10-091-1/+1
|
* * Fix http://opensimulator.org/mantis/view.php?id=2368Justin Clarke Casey2008-10-091-0/+9
| | | | | | * This returns to writing the OpenSim.ini using default values if it (or OpenSim.xml) isn't found
* Provide a sane value for DefaultScriptEngine (ScriptEngine.DotNetEngine)Melanie Thielker2008-10-091-2/+1
| | | | | | | rather then the previous invalid string "DotNetEngine". Remove the script_engine options, as it is not used anymore.
* * refactor: separate process of extracting packet from received data from ↵Justin Clarke Casey2008-10-091-34/+41
| | | | actually processing that packet
* * minor: initialize udp server in unit testJustin Clarke Casey2008-10-092-8/+8
|
* * Create project for LindenUDP ClientStack testsJustin Clarke Casey2008-10-091-0/+44
| | | | | | * No functional tests yet
* * minor: very small doc additionJustin Clarke Casey2008-10-091-1/+1
|
* * Fixes simstats reporter. I'm sure this issue caused all sorts of things ↵Teravus Ovares2008-10-091-2/+2
| | | | related to regionflags and capacity. I'm sorry, the object capacity that you dialed is not valid.. please check the number and dial again.
* * minor: remove compile warningJustin Clarke Casey2008-10-081-1/+1
|
* - Fix wrong order of max/min usage for clipping. Uses Util.Clamp nowHomer Horwitz2008-10-082-2/+4
| | | | | | - Add support for immediate switching of Music/Media URLs. Radio-scripts should work now.
* - removed some unnecessary conversions (double -> double)Homer Horwitz2008-10-081-2/+2
|
* * minor: Comment out initial regularly occuring EventQueueGet log debug ↵Justin Clarke Casey2008-10-081-11/+9
| | | | message for now, as previously discussed with Ter
* * On deselection of objects, stop every object id passed triggering an ↵Justin Clarke Casey2008-10-081-27/+20
| | | | | | | | | | | update for the entire group * This was not a problem with objects consisting of less than 30 prims, since the extra schedules would be ignored * However, above approximately 30 prims extra schedules would actually occur. * For instance, a 140 prim object would end up triggering approximately 2500 ObjectUpdates to every avatar in range rather than 140 * Hopefully, this change will improve client responsiveness on deselect and was one of the reasons that the AgentThrottle restriction started causing problems yesterday.
* Mantis#2354. Thank you kindly, Tglion for a patch that:Charles Krinke2008-10-082-0/+25
| | | | | | | | | The average-value of modify.ModifyBlock.Height in LLClientView.cs:4170 seem to be incorrect or it isn't the average? Mhhh... So the terrain build -> Flaten Sphere is unuseable. I have put in a patch that contains a workaround while the main problem is not solved.
* adding OSHttpResponse test case (yeah, very primitive still)Dr Scofield2008-10-081-26/+175
|
* * Re-enables map item requests.Teravus Ovares2008-10-081-51/+261
| | | | | | | | * Puts remote requests in a single worker thread * Worker thread only starts when there are agents to serve * When there are no agents to serve, it shuts down * A good example of how to deal with threads in non-shared modules so they don't end up consuming threads per regions
* warning squashingDr Scofield2008-10-081-3/+3
|
* Add some permissions checks and fixesMelanie Thielker2008-10-084-11/+72
|
* Mantis#2352. Thank you kindly, Jonc for a patch that:Charles Krinke2008-10-081-2/+4
| | | | | | | | | If prim is part of SOG, then ask the SOG to update the position, rather than asking the part itself. Ghosted child prims should no longer result from llSetPos. Not sure if this is the right approach for all cases , would appreciate feedback on the patch.
* Mantis#1906. Thank you kindly, Idb for a patch that:Charles Krinke2008-10-081-18/+1
| | | | | | Removed cache accesses to obtain sensed object/avatar name, it is already available.
* Fix friendly errors in DNE as wellMelanie Thielker2008-10-081-11/+10
|
* Adapt tests to new friendly errors and correct line numbersMelanie Thielker2008-10-071-2/+2
|
* Restore "friendly errors" to the XEngineMelanie Thielker2008-10-074-30/+23
|
* * Comment out debug throttle output that I had accidentally left inJustin Clarke Casey2008-10-071-0/+2
|
* * Temporarily revert r6714 which changed agent throttle number interpretationJustin Clarke Casey2008-10-071-6/+8
| | | | | | * I suspect the restriction stopped the very large number of packet resends that occur on certain operations, which led to other failures.
* * Disabling mapitem requests for surrounding regions as it's probably using ↵Teravus Ovares2008-10-071-6/+6
| | | | up a lot of threads right now when regions are inaccessable
* * Apply http://opensimulator.org/mantis/view.php?id=2345Justin Clarke Casey2008-10-071-16/+12
| | | | | | | * Bring llSetLinkTexture into line with llSetLinkColor and lLSetLinkPrimitiveParams() implementations * Thanks ralphos
* * Apply http://opensimulator.org/mantis/view.php?id=1207Justin Clarke Casey2008-10-0719-118/+178
| | | | | | | * Implmements llModifyLand() and a check for the "Allow others to terraform flag" * Thanks tglion!
* From: chris yeoh <yeohc@au1.ibm.com>Dr Scofield2008-10-071-16/+13
| | | | | | | | | | | | | | | | | The attached patch fixes mantis bug 2312 (llGetPos() returns incorrect values for child prims where the root prim is rotated). Regression tests still pass. Incidentally AbsolutePosition which was used before looks a little suspicious to me as its always going to return the wrong value if the root prim is rotated. GetWorldPosition does take the rotation into account, but AbsolutePosition is used in a lot of places. Though i don't understand why there is both GetWorldPosition as well as AbsolutePosition so I've left the latter alone. [i also cleaned up some indent problems, --- dr scofield]
* From: chris yeoh <yeohc@au1.ibm.com>Dr Scofield2008-10-071-2/+3
| | | | | | | | | | | | | | | | Attached is a patch for LLGround which was just plain broken and could cause a runtime error. It now returns valid data with valid input (ie the offset does not take the position off the edge of the sim), but a runtime error will occur if invalid data is given. On invalid data the LL servers return the ground height based on a valid point closest to the effective position calculated using the supplied offset. Is the OpenSim convention to replicate the LL servers as closely as possible? If so I can submit an additional patch to replicate the LL behaviour.
* From: chris yeoh <yeohc@au1.ibm.com>Dr Scofield2008-10-071-0/+13
| | | | | | | | | | | | | If you use load-oar to transfer region data from one sim to another then currently inventory items can be left with unknown owner permission which results in them being no-mod/no-copy for everyone. The attached patch fixes things up so if the owner uuid does not exist on the destination system then it assigns ownership (and the creator for completeness) to the master avatar id. This will make it much more practical to share copies of regions :-)
* Update svn properties, minor formatting cleanup.Jeff Ames2008-10-061-8/+8
|
* cleaning up OSHttpResponse: note that read access to extra headerDr Scofield2008-10-064-200/+101
| | | | | | | | | | | | | | | fields is GONE (HttpServer does not support that), you can read the "normal" HTTP headers available via properties, and you can add headers. also, it is now possible to set a timeout for KeepAlive (for those clients that pay attention to it). this also fixes the broken REST inventory/assets/appearance services, they should be working again. testcase for OSHttpResponse will follow.
* oops. forgot testcaseDr Scofield2008-10-061-0/+249
|
* * Stop the sim stats reporter reusing the same SimStatsPacket for all clientsJustin Clarke Casey2008-10-068-55/+155
| | | | | | | * I believe this was the cause of the remaining packet_out_of_order messages in the Linden client logs * There were race conditions where multiple clientstacks would overwrite each other's sequence numbers
* cleaning up OSHttpRequest removing old Http stuff. also adding testDr Scofield2008-10-063-317/+92
| | | | | | | case for OSHttpRequest (not very fancy yet, but still).
* * Made Mapitems more failure friendlyTeravus Ovares2008-10-061-10/+86
|
* * restore Header.Resent field setting for resent packetsJustin Clarke Casey2008-10-061-0/+4
| | | | | | * without this, the client appears to reset the sequence of packets its expecting
* * Change interpretation of asset throttle values to bits per second rather ↵Justin Clarke Casey2008-10-062-37/+42
| | | | | | | | than bytes per second * Changing network bandwidth in the preferences will now have a much more noticeable effect - a user may want to increase this if data is being slow to download from opensim
* Mantis#2342. Thank you kindly, Ralphos for a patch that solves:Charles Krinke2008-10-061-78/+10
| | | | | | | llSetLinkApha is not fully implemented and has not been updated to use the recently added GetLinkParts and associated implementation pattern as per llSetLinkColor and llSetLinkPrimitiveParams.
* Mantis#2340. Thank you kindly, Sacha Magne for a patch that:Charles Krinke2008-10-062-6/+16
| | | | | | adding default_loginLevel in USerServer.xml to set a default login level to acces to the grid. Fixing one bug in login_reset
* adds admin_exists_user XmlRpc call.Dr Scofield2008-10-061-0/+74
|
* Implement Parcel -> ForceOwnerToMe god mode packetMelanie Thielker2008-10-065-0/+30
|
* Exclude attachments from parcel prim countsMelanie Thielker2008-10-061-1/+1
|
* Implement ForceOwnerPermissive and God TakeCopyMelanie Thielker2008-10-063-0/+23
|
* Cause inventory items to also be sold when a prim is soldMelanie Thielker2008-10-061-4/+1
|
* Fix a number of errors in transfer of objectsMelanie Thielker2008-10-063-5/+16
|
* Remove an unnecessary perms check. This caused prim movement to be disabledMelanie Thielker2008-10-061-14/+1
| | | | | | | on parcels that had prim entry turned off. This needs to be reintroduced with proper parcel boundary checks.