aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseOpenSimServer.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)2011-12-051-1/+1
| | | | | | | | of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
* fix build break on UserManagementModule.Justin Clark-Casey (justincc)2011-11-151-4/+8
| | | | This also adds time since started to "show threads". Unfortunately these two changes got mixed in.
* improve formatting of "show threads"Justin Clark-Casey (justincc)2011-11-151-1/+8
|
* Add number of milliseconds since last update to "show threads"Justin Clark-Casey (justincc)2011-11-151-3/+7
|
* minor: add "threads show" as synonym for "show threads" for consistencyJustin Clark-Casey (justincc)2011-10-251-0/+5
|
* Add "threads abort <thread-id>" simulator console command that allows us to ↵Justin Clark-Casey (justincc)2011-10-251-0/+25
| | | | | | abort a watchdog managed thread. This is for diagnostic purposes.
* Make default serverside_object_permissions = true since this better matches ↵Justin Clark-Casey (justincc)2011-07-011-11/+0
| | | | | | user expectations. It also matches the default setting in the OpenSim.ini.example file
* If OpenSim has been built from a git tree, then include version information ↵Justin Clark-Casey (justincc)2011-07-011-4/+39
| | | | | | automatically by dereferencing .git/HEAD A blank bin/.version file will stop this being displayed.
* refactor: rename gitCommitFileName to manualVersionFileName since ↵Justin Clark-Casey (justincc)2011-07-011-5/+4
| | | | bin/.version doesn't necessary have to be a git hash
* Fix "set log level" to once again display current log level if it's not ↵Justin Clark-Casey (justincc)2011-02-041-12/+15
| | | | | | given a parameter This addresses http://opensimulator.org/mantis/view.php?id=5345
* Update the "config get <section> <key>" command to "config get [<section>] ↵Justin Clark-Casey (justincc)2011-01-211-0/+14
| | | | | | | | | [<key>]" The config get command shows a current config value on the console. Now, if <key> is omitted then all the values for the given section are printed. If <section> is ommitted then all sections and all keys are printed. Current config can also be dumped to a file using "config save <path>". This can be handy for resolving or eliminating config issues
* make "show info" and "show version" show the same version textJustin Clark-Casey (justincc)2011-01-211-4/+7
|
* add current console log level to "show info"Justin Clark-Casey (justincc)2011-01-211-2/+9
|
* minor: make "show info" help slightly clearerJustin Clark-Casey (justincc)2011-01-201-1/+1
|
* Fix "show threads" to show threads now being managed by ↵Justin Clark-Casey (justincc)2010-09-141-16/+10
| | | | OpenSim.Framework.Watchdog
* add a smidgen more log debug information in the form of the operating system ↵Justin Clark-Casey (justincc)2010-05-281-1/+5
| | | | version
* Apply patch to reduce git revision text length if running sim directly from ↵Justin Clark-Casey (justincc)2009-11-271-1/+1
| | | | | | | a git tree See http://opensimulator.org/mantis/view.php?id=4030 Thanks ChrisDown (and Bruce for reporting)
* Formatting cleanup.Jeff Ames2009-10-191-1/+1
|
* Bug fix.Diva Canto2009-10-071-2/+6
|
* Printout one more field in show threads, but this won't buy us much.Diva Canto2009-10-071-1/+2
|
* Fixing a few compile errors in the previous commitJohn Hurliman2009-10-061-21/+6
|
* * GridServerPostHandler.cs: Try/catch in HandleDiva Canto2009-10-051-1/+7
| | | | * BaseOpenSimServer.cs: Added thread pool numbers in show threads
* Formatting cleanup.Jeff Ames2009-10-011-6/+6
|
* Formatting cleanup. Add copyright headers.Jeff Ames2009-08-131-1/+1
|
* Enable the console show version command and the viewer about command, to ↵Chris Down2009-08-111-22/+46
| | | | | | | | | | | | | | show the last git commit hash together with the conmit date and time. The data is retrieved form a file bin/.version This file can be generated automatically using the post commit script by adding the following to the script: git log -n 1 --pretty="format:%h: %ci" > bin/.version This command can also be run manually to create the bin/.version file. This command genrates a short form of the commit hash and a date and time of the commit in ISO8601 format. If a full commit hash is required then change %h to %H The logic that is used to extract the deprecated svn revision is still included. It will be removed at a future date
* Formatting cleanup.Jeff Ames2009-06-101-3/+3
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker2009-05-201-1/+1
|
* Add copyright headers, formatting cleanup.Jeff Ames2009-05-201-10/+10
|
* Thank you kindly, BlueWall sir, for a patch that:Charles Krinke2009-05-131-2/+10
| | | | | | | | | | Adding a jsonp wrapper to the user supplied status report uri if the key "callback" exists. It will work with many javascript toolkits to provide an ajax callback to allow the browser to update stats reports without the intervention of an intermediate server.
* Committing the changed treeMelanie Thielker2009-05-041-0/+510
|
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-041-496/+0
|
* Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker2009-05-041-1/+1
| | | | | | | | console capable of processing commands. Create LocalConsole as a console that uses cursor control and context help. Precursor to a distributed console system for the new grid services. No functional change intended :)
* Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-05-021-1/+15
| | | | | | | | | Move json stats to non-published resource name Remove well-known resource name for json stats, creating dynamic uris with private keys and add a user configurable resource name for region owner usage.
* Thanks Bluewall for Mantis #3519: a patch that adds simulator uptime and ↵Dahlia Trimble2009-04-251-2/+3
| | | | version to REST/json statistics reporting
* Add copyright headers. Formatting cleanup.Jeff Ames2009-04-221-4/+4
|
* Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-04-171-0/+8
| | | | | | | This patch adds extended status reporting with the url http://server:port/simstatusx/ [^] . The data is returned in json format as "text/plain" type.
* Add a PIDFile in [Startup], which the PID will be written toMelanie Thielker2009-04-011-0/+36
|
* * Fix http://opensimulator.org/mantis/view.php?id=3193Justin Clarke Casey2009-02-191-51/+45
| | | | | | * Make it possible once again to set a console log level threshold in OpenSim.exe.config
* * optimized usings.lbsa712009-02-121-2/+3
|
* Add proper handling for shared vs. unshared modules to the commandMelanie Thielker2009-02-101-8/+8
| | | | | | | | interface. Shared modules will now only get added once, so the command handler is called once per module, not once per scene. Removal of scenes has no adverse effects. Nonshared modules will be called for each scene.
* * Restore show information for the OpenSim region server (version, info, ↵Justin Clarke Casey2009-02-091-1/+1
| | | | threads, etc.)
* Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker2009-02-071-65/+54
| | | | | | | | | line editing, context sensitive help (press ? at any time), command line history, a new plugin command system and new appender features thet let you type while the console is scrolling. Seamlessly integrates the ICommander interfaces.
* * Make existing module commanders register as help topicsJustin Clarke Casey2009-02-051-4/+24
| | | | | | | * Typing help will now give a list of these topics at the top (as well as the rest of the current help stuff) * Typing help <topic> will give information about commands specific to that topic
* * Added "show queues" command that shows throttling queues for all clients.lbsa712008-12-181-1/+1
| | | | | *** This only works for LLCLientView at the moment ***
* Made BaseOpenSimServer.ShutdownSpecific() public. As the ↵MW2008-12-021-1/+1
| | | | OpenSimBase.Shutdown() includes a Environment.Exit(0); which is not always wanted when shutting down, like from a windows service.
* Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker2008-11-191-4/+1
| | | | | | libOMV.
* Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker2008-11-191-1/+4
| | | | | | | | | release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366
* * Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey2008-11-171-4/+1
| | | | | | | | * Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly
* * minor: add interface version to 'show version' command outputJustin Clarke Casey2008-11-171-1/+4
|