Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2008-07-22 | * minor: Make create user command appear on the region console only if the ↵ | Justin Clarke Casey | 1 | -0/+1 | |
region is running standalone | |||||
2008-07-11 | * Move thread tracking code to base opensim server so that it's available ↵ | Justin Clarke Casey | 1 | -6/+31 | |
for all servers (UGAIM as well as Region) * This will work as long as those servers are actually registering any threads they use (does not include stuff plucked from the thread pool) * command is now "show threads" rather than threads | |||||
2008-07-08 | Mantis#1685. Thank you kindly, Mjm for a patch that: | Charles Krinke | 1 | -1/+12 | |
The attached patch tries to read the SVN revision from local file "svn_revision" before checking "../.svn/entries". This allows simulators not running from the source tree to properly display the SVN revision, if the installer generates the "svn_revision" file. | |||||
2008-06-18 | Minor formatting cleanup. | Jeff Ames | 1 | -1/+1 | |
2008-06-13 | * minor: Print out uptime as well as stats in periodic diagnostics logging, ↵ | Justin Clarke Casey | 1 | -5/+27 | |
so it's easier to tell which isntances each print out of information is from | |||||
2008-06-13 | Update svn properties, clean up formatting, refactor out duplicate ↵ | Jeff Ames | 1 | -11/+11 | |
hard-coded port numbers. | |||||
2008-06-11 | * Drop periodic stats logging back down to 60 minutes to reduce console spam. | Justin Clarke Casey | 1 | -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 Casey | 1 | -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 Casey | 1 | -1/+1 | |
information | |||||
2008-06-10 | * If a server has statistics, print these out to the log every hour to get ↵ | Justin Clarke Casey | 1 | -0/+21 | |
some idea of how these evolve * When returning GC.GetTotalMemory(), force collection first in order to get more accurate figures | |||||
2008-06-04 | Formatting cleanup, minor refactoring, svn properties. | Jeff Ames | 1 | -15/+15 | |
2008-06-02 | * experimental: Make OpenSim archiver save and reload all prim textures when ↵ | Justin Clarke Casey | 1 | -2/+2 | |
not all faces have the same texture | |||||
2008-06-02 | * Add 'show version' help information into base OpenSim server | Justin Clarke Casey | 1 | -1/+2 | |
2008-06-01 | * Move most bookending startup/shutdown messages to BaseOpenSimServer so ↵ | Justin Clarke Casey | 1 | -7/+6 | |
they appear in non-console servers too | |||||
2008-06-01 | * Fix build break by eliminating remaining IScenePermissions references - ↵ | Justin Clarke Casey | 1 | -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 BaseOpenSimServer | Justin Clarke Casey | 1 | -4/+14 | |
2008-05-31 | * Make version information common to all servers | Justin Clarke Casey | 1 | -0/+82 | |
* Now all servers respond to the "show version" command on the console | |||||
2008-05-31 | * Implements UserServer logoff in a few situations | Teravus Ovares | 1 | -0/+1 | |
* 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-16 | Formatting cleanup. | Jeff Ames | 1 | -14/+14 | |
2008-05-14 | * Refactor additional stats collection common code into base opensim server | Justin Clarke Casey | 1 | -1/+18 | |
* If extra stats not sent to the viewer are available on an opensim server, they are now uniformly accessible using the 'show stats' command | |||||
2008-05-14 | Formatting cleanup. | Jeff Ames | 1 | -3/+3 | |
2008-05-12 | From: Alan M Webb <awebb@vnet.ibm.com> | Justin Clarke Casey | 1 | -6/+23 | |
This patch just tightens up console handling in BasOpenSimServer and removes (or redirects) a couple of messages that were being issued using Console.Writeline. | |||||
2008-05-09 | * Fix opensim region server shutdown. | Justin Clarke Casey | 1 | -1/+1 | |
2008-05-07 | * Move shutdown processing to base OpenSimServer, overriding the method ↵ | Justin Clarke Casey | 1 | -1/+17 | |
where appropriate * This also means that the command quit (as well as shutdown) will now close down grid servers (instead of only being in place for the region server) | |||||
2008-03-28 | * Refactored out common http handler operations | lbsa71 | 1 | -0/+6 | |
2008-03-18 | Formatting cleanup. | Jeff Ames | 1 | -26/+25 | |
2008-02-05 | Converted logging to use log4net. | Jeff Ames | 1 | -7/+5 | |
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done. | |||||
2008-02-04 | * Rebase all current servers on common abstract BaseOpenSimServer class | Justin Clarke Casey | 1 | -2/+45 | |
* The immediate upshot is that "show uptime" from the console will now show uptime on all server types (user, asset, grid, etc) * DEV: This refactoring is far from complete - only just enough to makes the "show uptime" command common accross the servers. More is needed, but in this case it's somewhat like eating cabbage, which I prefer not to do all at once | |||||
2008-01-25 | * Add missed out evn:eol-style native | Justin Clarke Casey | 1 | -43/+43 | |
* I intended to think about refactoring the servers to use this common base class, but temporary laziness won out. * I'm leaving this here as a reminder/mind poke and for reasons of laziness (again) * If people object to me leaving this kind of thing lying around, please say | |||||
2008-01-25 | * Add very basic initial login stats to the user server | Justin Clarke Casey | 1 | -43/+43 | |
* Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next | |||||
2008-01-25 | * Stubbed out beginnings of a user server stress test | Justin Clarke Casey | 1 | -5/+12 | |
* Does absolutely nothing at the moment | |||||
2007-12-27 | * Optimized usings | lbsa71 | 1 | -1/+1 | |
* shortened references * Removed redundant 'this' * Normalized EOF | |||||
2007-12-10 | saved OpenSim source code from the giant rampaging unterminated copyright ↵ | Jeff Ames | 1 | -2/+2 | |
notice of doom | |||||
2007-10-30 | * Optimized usings | lbsa71 | 1 | -1/+1 | |
* Shortened type references * Removed redundant 'this' qualifier | |||||
2007-10-15 | * Chillken Patch #417 - upgraded version numbers to 0.4 - thanks Chillken! | lbsa71 | 1 | -1/+1 | |
2007-09-10 | mass update of urls in source code to new website | Sean Dague | 1 | -1/+1 | |
2007-07-16 | changed to native line ending encoding | Sean Dague | 1 | -36/+36 | |
2007-07-03 | * Optimized usings (the 'LL ate my scripts' commit) | lbsa71 | 1 | -2/+0 | |
* added some licensing info | |||||
2007-06-27 | *Moved VersionInfo.cs to its correct place in OpenSim.csproj | mingchen | 1 | -1/+1 | |
*Added OpenSim.Region.Caps *Updated prebuild.xml and ran prebuild | |||||
2007-06-27 | *Some more restructuring/fixing -- should compile, but high chance I forgot ↵ | mingchen | 1 | -1/+1 | |
to add/remove something |