aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/ConsoleBase.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove useless executable bit that Windows adds.onefang2019-05-191-0/+0
|
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-4/+4
|
* Fix file execute permissions, coz Windows.David Walter Seikel2016-11-071-0/+0
|
* factor out common HandleShow code for "show uptime"Justin Clark-Casey (justincc)2012-11-221-9/+1
|
* Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)2011-10-251-1/+1
| | | | | | | | | of the other way around. This is necessary so that code in HttpServer can use framework facilities such as the thread watchdog for monitoring purposes. Doing this shuffle meant that MainServer was moved into OpenSim/Framework/Servers Also had to make OpenSim.Framework.Console rely on OpenSim.Framework rather than the other way around since it in turn relies on HttpServer MainConsole and some new interfaces had to be moved into OpenSim/Framework to allow this. This can be reverted if parts of OpenSim.Framework stop relying on console presence (cheifly RegionInfo)
* Implement command "land show". This shows all the parcels on the currently ↵Justin Clark-Casey (justincc)2011-01-261-1/+1
| | | | | | selected region/s This is useful for diagnostics. The command is "land show" rather than "show land" because it's implemented as a module specific subcommand.
* Update the "config get <section> <key>" command to "config get [<section>] ↵Justin Clark-Casey (justincc)2011-01-211-0/+5
| | | | | | | | | [<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
* Made it impossible to create a user with names containing spaces and ↵randomhuman2010-09-101-0/+51
| | | | prevented passwords from being echoed after enter is pressed.
* Added ': ' to password prompt. Mantis #4851Diva Canto2010-07-221-1/+1
|
* Console output no longer requires loglevel to be set to info; you can run ↵mbowman2010-01-201-1/+1
| | | | | | the simulator with log level WARN or ERROR and see the output of console commands Signed-off-by: Melanie <melanie@t-data.com>
* Change prompt handling in console. No user changesMelanie2009-08-221-2/+2
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* Move the color console logic from the appender into the local console, sinceMelanie Thielker2009-05-201-1/+6
| | | | | | | that is the only one that can use it. Change appender output to always go through the console output functions.
* Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker2009-05-201-148/+0
|
* * minor: remove some mono compiler warnings, minor cleanupJustin Clarke Casey2009-05-041-1/+1
|
* Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker2009-05-041-798/+31
| | | | | | | | 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 :)
* Prevent ICommander-generated subcommand trees from generating an exceptionMelanie Thielker2009-03-051-1/+6
| | | | | | | when the tree root command is executes without another verb following it. Fixes Mantis #3258
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-221-1/+1
| | | | | | | | | * Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
* Allow entry of '?' in http URIs. If the field being typed begins withMelanie Thielker2009-02-211-4/+13
| | | | | | "http", the ? is just an ordinary character in that field.
* Guard the values used to set the cursor position in the real time consoleMelanie Thielker2009-02-131-13/+39
|
* * refactor: Move export map function to world map module from sceneJustin Clarke Casey2009-02-131-0/+1
|
* Fix some compiler warnings. Minor formatting cleanup.Jeff Ames2009-02-131-2/+2
|
* * optimized usings.lbsa712009-02-121-8/+9
|
* Add proper handling for shared vs. unshared modules to the commandMelanie Thielker2009-02-101-14/+31
| | | | | | | | 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.
* Change the command parser and resolver to be able to disambiguate commandsMelanie Thielker2009-02-101-0/+12
| | | | | | | that are a prefix of another command. Fixes "terrain load" Fixes Mantis #3123
* Stopgap measure: To use gridlaunch, or GUI, start opensim withMelanie Thielker2009-02-101-0/+30
| | | | | | OpenSim.exe -gui=true
* Update svn properties, minor formatting cleanup.Jeff Ames2009-02-091-1/+1
|
* * Add the ability to type help <command> for more detailed help about a ↵Justin Clarke Casey2009-02-091-8/+121
| | | | specific command if any is available
* Fix a .NET issue where changing a locked reference would cause a crashMelanie Thielker2009-02-071-6/+18
|
* Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker2009-02-071-146/+515
| | | | | | | | | 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.
* * Added some debug information when console commands fail.Adam Frisby2008-11-241-0/+1
|
* Changed "show users" command to display only root agents, "show users full" toHomer Horwitz2008-09-121-1/+1
| | | | | | display root and child agents (mantis #2171).
* Update svn properties, formatting cleanup.Jeff Ames2008-08-191-1/+1
|
* * It appears that sometimes some IClientAPI reference is not being released, ↵Justin Clarke Casey2008-08-181-0/+1
| | | | | | | | | resulting in continual execution of the CheckConnectivity timer method * For now, just turn off this timer when we close the connection * Also some minor help refactoring creeps in to this revision.
* Formatting cleanup.Jeff Ames2008-08-181-2/+2
|
* * Make currently selected region appear in the region console promptJustin Clarke Casey2008-08-051-2/+7
| | | | | | * This region is used for single region commands (such as save-xml2)
* * refactor: change console base 'component name' to 'default prompt' since ↵Justin Clarke Casey2008-08-051-4/+13
| | | | that's the only thing it's being used for
* Update svn properties. Formatting cleanup.Jeff Ames2008-06-101-9/+7
|
* *Fixed bug that caused failure when System.Console.Readline returns null (no ↵mingchen2008-06-091-2/+10
| | | | | | | stdin) *Fixed bug that would crash the simulator if there were two physics/meshing engines loaded with the same name.
* * Move most bookending startup/shutdown messages to BaseOpenSimServer so ↵Justin Clarke Casey2008-06-011-7/+0
| | | | they appear in non-console servers too
* Formatting cleanup.Jeff Ames2008-05-161-4/+4
|
* From: Alan M Webb <awebb@vnet.ibm.com>Justin Clarke Casey2008-05-121-2/+0
| | | | | | | | This patch just tightens up console handling in BasOpenSimServer and removes (or redirects) a couple of messages that were being issued using Console.Writeline.
* * Breaking all the code, breaking all the code..!Adam Frisby2008-05-011-1/+1
| | | | | * Made a bunch more members static, removed some dead code, general cleaning.
* * Assorted spring cleanings.Adam Frisby2008-05-011-2/+1
|
* * Fixed an annoying pop-up box when crossing borders.Teravus Ovares2008-04-231-2/+2
|
* * Fix a console issue where pressing return on some operating systems cause ↵Teravus Ovares2008-04-231-0/+4
| | | | the console to crash and complain about 0 regex matches.
* Thank you kindly, Tyre for :Charles Krinke2008-04-231-10/+16
| | | | | | | | | | | | | | Commands with arguments enclosed in Double quotation marks (e.g. filenames or objects with embedded blanks) should be parsed correctly. e.g.: console command "edit-scale" don't accept prim names with embedded blanks edit-scale Prim 20x20x20 20 20 20 Region# : edit-scale "Prim 20x20x20" 20 20 20 Region# : edit-scale Prim20x20x20 20 20 20 Searching for Primitive: 'Prim20x20x20' Edited scale of Primitive: Prim20x20x20 Region# :
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-2/+3
| | | | (this took a while to run).
* Formatting cleanup.Jeff Ames2008-03-181-26/+26
|
* Report command string on ConsoleBase.RunCommand exceptionJustin Clarke Casey2008-02-201-1/+2
|