aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-04Fix Mantis #2281: touch events in non-default states in DNE work again.Homer Horwitz1-1/+1
2008-10-04Plumb packet DirPlacesQuery for search moduleMelanie Thielker3-0/+26
2008-10-04* Tidy up configuration stuff, eliminated default setting duplication along ↵Justin Clarke Casey2-59/+46
the way * This revision also makes the exception catcher of last resort print to the log instead of just the console * This means logs should now capture sim crashing exceptions, though not those which are caused by a crash of the virtual machine itself
2008-10-04* minor: both OpenSimBase and the Voice and RemoteAdmin modules were ↵Justin Clarke Casey1-18/+0
checking whether any config was set * Resolve redundancy by removing the OpenSimBase check - if modules are recieve nini config directly they should probably be the ones to do the checking
2008-10-04Mantis#2316. Thank you kindly, CMickeyb for a patch that:Charles Krinke2-7/+31
Addresses llDie issues. The attached patch catches run time exceptions that occur during method invocation (of type TargetInvocationException) and exposes the internal exception. This makes it possible to pass out the SelfDeleteException. Also added handlers in a couple places to make sure that exception was being passed out far enough to be handled correctly. Tested on DNE.
2008-10-04* minor: Remove warningJustin Clarke Casey1-1/+1
2008-10-04* Check in the second part of ↵Justin Clarke Casey1-35/+29
http://opensimulator.org/mantis/view.php?id=2334 since enough time has passed such that servers following head have probably updated * This patch aims to store look at data when an avatar logs off in grid mode * However, in my short test it doesn't appear to be working yet - numbers are being stored but they don't look correct * But this doesn't appear to cause any login problems * Thanks tyre
2008-10-04Added immediate TP failure message for TPs to regions that aren't there,Homer Horwitz2-2/+55
instead of the 130s timeout somewhere. Additionally, mark the map-tile as offline. This partly fixes the TP problems of Mantis 2332; the rest is a viewer problem (just relogin).
2008-10-04Cap proxy mesh scale minimum to 0.01 meter for X, Y, and Z terms.Dahlia Trimble1-0/+4
2008-10-04Cause a request to a different attachment point to taint the attachment soMelanie Thielker1-0/+6
that the attachment point is saved even if nothing else changed
2008-10-04Prevent a new asset being created on every detach of an attachmentMelanie Thielker1-0/+1
2008-10-04Mantis #2330Melanie Thielker1-5/+4
Fixes use of the saved attachment point from asset
2008-10-04Unclutter rezzing methods by removing the ad hoc permissions parameters.Melanie Thielker5-26/+12
Thise were client supplied untrusted values we never used anyway.
2008-10-04Guard against negative scale set through LSL functionsMelanie Thielker2-0/+8
2008-10-04Remove type="owner" from the data snapshot. Made the parser choke and thereMelanie Thielker1-3/+3
is no need for it, as there is no other type
2008-10-04Tiny performance tweakMelanie Thielker1-2/+1
2008-10-04Avoid a gratuitious KillObject storm on region crossingMelanie Thielker1-2/+5
2008-10-04Add some needed fields to data snapshotMelanie Thielker1-22/+23
2008-10-04Cause "Show in search" to trigger a persistence saveMelanie Thielker1-0/+2
2008-10-04Add "Drop" functionality to pie menuMelanie Thielker7-7/+74
2008-10-03Add the missing bits for the new region-search:Homer Horwitz4-68/+129
- Added lookup in the data-layer - MySQL works - SQLite doesn't have a grid-db, so it won't work there - I added MSSQL-code to the best of my knowledge; but I don't know MSSQL :-) - Added the plumbing up to OGS1GridServices. This speaks with the grid-server via XMLRPC. - Modified MapSearchModule to use the new data. It's backward compatible; if used with an old grid-server, it just returns one found region instead of a list. - Refactored a bit. Note: This updates data, grid-server and region code. No new files.
2008-10-03Fix: Mantis#2326: Fix: privilege escalation through attach from groundMelanie Thielker6-59/+67
Fix: objects being duplicated inventory on detach. Fix: Mad jumping around of attachments while editing. Fix: Attachments being persisted to database on login. Fix: Attachments being persisted when changed by a script like invisprim refresh. Fix: Attachpoint set, but not reset correctly. Fix: prevent spurious full updates while editing attachments. Several other fixes
2008-10-03Disabled some thread aborts in the IRC module that I added earlier and don't ↵Dahlia Trimble1-2/+2
seem necessary
2008-10-03* minor: slightly simplify code in setting up the default configurationJustin Clarke Casey1-34/+29
* we appear to both setup a default configuration and provude identical defaults when we later try to read the values - this is probably not really necessary
2008-10-03* oops, fix build break.Justin Clarke Casey4-38/+81
* refactoring
2008-10-03* Put in some infrastructure to allow tweaking of packet queue throttle ↵Justin Clarke Casey9-22/+158
values for the total throttle (the one that throttles all packet output) * Not complete yet
2008-10-03Cause objects to be removed from the database when they go temp or getMelanie Thielker2-1/+17
attached. Also make sure that parcel prim counts get updated
2008-10-03* refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey1-3/+1
for consistency's sake
2008-10-03* oops, fix region startup to be in the correct sequence (though it appeared ↵Justin Clarke Casey1-2/+2
to work anyway)
2008-10-03Implement temp-on-rez objecte really being temporaryMelanie Thielker3-6/+49
2008-10-03* refactor: make startup a template methodJustin Clarke Casey3-6/+7
2008-10-03This changeset changes the way chat from client is routed: Dr Scofield9-177/+209
old way: each region module interested in chat from client had to - subscribe to scene.EventManager.OnNewClient - then in its OnNewClient delegate it would subscribe to client.OnChatFromViewer to capture chat messages coming new way: ChatModule is the only region module that uses the "old way" approach but is now forwarding all client chat via scene.EventManager.OnChatFromClient - each region module interested in chat from client now only subscribes to scene.EventManager.OnChatFromClient this not only simplifies code, but also allows us to substitute ChatModule with derived classes (ConciergeModule is going to be one example). Also, this changeset changes ChatFromViewer to ChatFromClient as it doesn't necessarily have to be a viewer that is a chat source. i've taken great care to only comment out those OnNewClient delegates that were only used for getting at the client chat --- hope it's not breaking anything.
2008-10-03* minor: remove warnings (the code cleaners strike again)Justin Clarke Casey4-10/+7
2008-10-03Prevent attachments to be persisted in the destination region when theMelanie Thielker4-5/+17
avatar is not present there.
2008-10-03Mantis #1360Melanie Thielker6-10/+43
Thank you, idb, for a patch to implement the packet and plumbing for the material settings.
2008-10-03* EventQueueGet is now working.Teravus Ovares4-17/+170
* Switched it on by default * Updated OpenSim.ini.example to reflect this * Caught a UDP Server issue that occurs when the network pipe is saturated * Still experimental :D
2008-10-03Reintroduces the discovery mechanism to use llRequestSimulatorData("", 128)Melanie Thielker7-15/+45
Causes the dataserver event to return "OpenSim" when running on OpenSim. Requires ThreatLevel to be "High" or above to function.
2008-10-03Plumb in the start parameter in DNEMelanie Thielker2-1/+11
2008-10-03Attempt to prevent attached prims from being persisted. Attachments withMelanie Thielker1-1/+1
invisiprim refresh scripts get sent to the database and remain there when the agent logs out. This tries to prevent that.
2008-10-03Mantis#2307. Thank you kindly, Godfrey for a patch that solves:Charles Krinke1-11/+7
In Second Life's implementation of llParseString2List(), all spacer strings which occur within the source string are included in the resulting list. In OpenSim's implementation, any spacers occurring at the beginning of the string are discarded; furthermore, if multiple spacers occur between non-spacer elements, or at the end of the source string, only the first spacer is added to the resulting list; the remainder are discarded.
2008-10-03Mantis #2317Melanie Thielker4-3/+20
Thank you, fusspawn, for an implementation of osGetSimulatorVersion. This patch removes the llRequestSimulatorData(..., 128) hack and implements the functionality as an osFunction.
2008-10-02Mantis #2282.Homer Horwitz1-1/+1
Thanks tglion for the necessary info to solve an ArgumentOutOfRangeException during region start.
2008-10-02Added the first version of the MapSearchModule, which allows you to search forHomer Horwitz1-0/+119
regions in the in-world map. It currently only returns the first region that matches the search string; in a future version it will return more search results. Note: File added; run runprebuild.
2008-10-02- Fixed a small off by one error in sending MapBlocksHomer Horwitz1-1/+1
- Removed MapBlockData.Flags; it isn't used anywhere (maybe MapBlockData.RegionFlags replaced it?)
2008-10-02Square hollow size in cylinder meshes were a little too small - fixed.Dahlia Trimble1-0/+2
2008-10-01- Added SendScriptTeleportRequest to IClientView and classes implementing it.Homer Horwitz4-2/+31
- Implemented llMapDestination.
2008-10-01* minor: oh, and comment out the now unused logger as wellJustin Clarke Casey1-2/+2
2008-10-01* minor: Comment out temporarily statistical counter I accidentally left in ↵Justin Clarke Casey1-1/+1
from the last commit
2008-10-01* Try bumping packet resend timeout up to 2 seconds instead of 1Justin Clarke Casey1-9/+22
* This actually probably doesn't make a huge difference. We still end up resending a massive number of packets in quite a few situations, but it's not easy to consistently reproduce this. * Might really need some throttling of packet send to the client on the OpenSim end.
2008-10-01* refactor: rename interface to put standard I prefix in frontJustin Clarke Casey3-5/+5