aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-06-12* Split the World Map code into a module.Teravus Ovares1-4/+5
* Implemented a hack so regions beyond the 10,000m range will show the map without having to click on the map before they'll start to show. The hack shows regions around the one you're in, but it won't show the one you're in.. you still need to click on the map to get that (not sure why yet). Additionally, the map still only shows pictures for regions that are hosted on the same instance (no change).
2008-06-11*Parcel Prim Count Maximums moved to their own functions so modules can ↵mingchen1-1/+1
override the default method of calculating how many prims a parcel can have.
2008-06-11Mantis#1514. Thank you kindly, Boscata for an InventoryServer patchCharles Krinke3-1/+23
to allow the InventoryServer to work with MSSQL..
2008-06-11* Drop periodic stats logging back down to 60 minutes to reduce console spam. Justin Clarke Casey1-1/+1
* Please feel free to comment if the periodic logging is causing you problems in some way - I'm loathe to add yet another switch to OpenSim.ini but will if it proves necessary
2008-06-11* Add 'show info' command to all servers, which prints the directory in ↵Justin Clarke Casey1-2/+16
which the server was started * This is potentially useful if you're using screen on a region console without knowing where it was originally started from
2008-06-10* minor: Reduce statistic log snapshots to every 20 minutes to get more ↵Justin Clarke Casey1-1/+1
information
2008-06-10* minor: Report cache figures in rounded up KB instead of with decimal ↵Justin Clarke Casey1-4/+4
places in show stats * trade easier readability for pointless accuracy
2008-06-10* minor: Properly clear the pushed asset cache statistics where the ↵Justin Clarke Casey3-1/+21
clear-assets command is used on the region console * stop waiting for garbage collection when GC total memory used is requested, in case the periodic request of this lags the sim
2008-06-10* If a server has statistics, print these out to the log every hour to get ↵Justin Clarke Casey2-1/+22
some idea of how these evolve * When returning GC.GetTotalMemory(), force collection first in order to get more accurate figures
2008-06-10Update svn properties.Jeff Ames1-51/+51
2008-06-10* Add memory currently allocated to OpenSim to 'show stats' statisticsJustin Clarke Casey4-6/+59
* This is the GC.GetTotalMemory() method, which I'm guessing does not include memory used by the VM (hence the memory usage reported in top on linux would be much higher)
2008-06-10Update svn properties. Formatting cleanup.Jeff Ames2-10/+8
2008-06-09*Fixed bug that caused failure when System.Console.Readline returns null (no ↵mingchen1-2/+10
stdin) *Fixed bug that would crash the simulator if there were two physics/meshing engines loaded with the same name.
2008-06-06* This wraps the autopilot request to the client's sit response. An ↵Teravus Ovares1-0/+1
interesting, but successful way to do it. * This also takes care of a few error situations that were previously never seen.
2008-06-06* Fixes incorrect message server startup promptTeravus Ovares1-1/+1
2008-06-06Minor formatting cleanup.Jeff Ames1-1/+1
2008-06-05* This sends collision events to the script engine. Teravus Ovares1-0/+54
* Unfortunately, there's some kludges with the Async manager and the llDetected functions that I have yet to decipher... so llDetected functions don't work with collision events at the moment....
2008-06-04* adding XmppPresenceStanza and deserialization/reification supportDr Scofield4-6/+105
having reached the intermediate level of .NET's XmlSudoku, i've now figured out how to do deserialization using different XmlSerializers (this stuff begins to grow on me, sigh). [still not used code, work-in-progress] * adding convenience property on OSHttpRequest.cs (from awebb)
2008-06-04* Start recording abnormal client thread terminationsJustin Clarke Casey1-1/+21
2008-06-04* fleshing out XMPP entities, adding XmppWriter and XmppSerializerDr Scofield6-17/+315
having spent the last couple of days wrestling with .NET XmlSerializer and trying to get it to do what is required by XMPP (RFC 3920 & 3921) this is the preliminary result of that wrestling (you should see the other guy!): XmppSerializer allows us to serialize Xmpp stanza (and theoretically deserialize [or reify] them), XmppWriter helps avoiding various gratuitous crap added in by off-the-shelf XmlSerializer. this is currently not used anywhere but the plan is to use it for at least an XMPPBridgeModule.
2008-06-04Formatting cleanup, minor refactoring, svn properties.Jeff Ames3-17/+18
2008-06-02provide slightly more sane defaults in the file based asset loaderSean Dague1-3/+3
2008-06-02* Fixed default ports on the MessagingServer config.Teravus Ovares1-2/+2
2008-06-02* experimental: Make OpenSim archiver save and reload all prim textures when ↵Justin Clarke Casey1-2/+2
not all faces have the same texture
2008-06-02* Add 'show version' help information into base OpenSim serverJustin Clarke Casey1-1/+2
2008-06-02* This update enables grid wide presence updates.Teravus Ovares2-0/+13
* You'll need to start-up the MessageingServer and set it up. It sets up like any of the other grid servers. * All user presence data is kept in memory for speed, while the agent is online. That means if you shutdown the messaging server or the messaging server crashes, it forgets who's online/offline. * Occasionally the region-cache will get stale if regions move around a lot. if it gets stale, run clear-cache on the messaging server console to clear the region cache.
2008-06-02cleanup: uncommenting null-op else tree in TaskInventoryItem.csDr Scofield1-6/+6
2008-06-01* Committing more unfinished stuff. Nothing significant at the moment. IM ↵Teravus Ovares2-0/+15
related.
2008-06-01* Move most bookending startup/shutdown messages to BaseOpenSimServer so ↵Justin Clarke Casey2-14/+6
they appear in non-console servers too
2008-06-01* Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey1-1/+1
must remember to nant clean * Hook all server startups into base opensim server startup method
2008-06-01* Move log version printing up into BaseOpenSimServerJustin Clarke Casey1-4/+14
2008-05-31* minor: comment out old debugging messages in task inventory item ↵Justin Clarke Casey1-5/+5
restoration routines
2008-05-31* Make version information common to all serversJustin Clarke Casey2-0/+119
* Now all servers respond to the "show version" command on the console
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares7-7/+54
* User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
2008-05-30Update svn properties. Formatting cleanup.Jeff Ames4-19/+24
2008-05-30* Added helper method to the Sun module to Get the Linden hour based on the ↵Teravus Ovares1-1/+3
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-29* Caches UUIDName requestsTeravus Ovares1-9/+52
* 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-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-28let Grid Servers specify a connect string in their configuration.Sean Dague1-0/+6
2008-05-28Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke1-1/+1
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-28Formatting cleanup.Jeff Ames3-24/+28
2008-05-27Thank you very much, Xantor for a patch that:Charles Krinke1-1/+34
If a request is made for an asset which is not in the cache yet, but has already been requested by something else, queue up the callbacks on that requester instead of swamping the asset server with multiple requests for the same asset.
2008-05-26* Assigns a random UUID to a region if the Sim UUID is null.Adam Frisby3-1/+15
2008-05-26Thank you kindly, Melanie for a patch for script resetCharles Krinke1-0/+2
that creates the event handler chain ready to hook by script engines
2008-05-26This cleans up a merge mess from the earlier checkin and implements ↵Dr Scofield1-0/+13
llOwnerSay() via the newly created Scene.SimBroadcast() call.
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames11-62/+62
2008-05-25* Adds Top Colliders when using ODE. Access it from the estate tools/debug tab.Teravus Ovares2-0/+60
2008-05-24This enables return from the parcel object owner display.Teravus Ovares1-0/+3
There's some oddness with the parcel counts, but if you can get past the oddness, you can return objects under an owner that you have permission to return.
2008-05-23Thank you kindly, Melanie, for:Charles Krinke1-1/+1
Nothing huge, but the new button code for producing a new script does well, but the script will not allow for name change once created. It reverts back to new script.