aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/LocalConsole.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allow the use of the region debug console found in recent viewers. This consoleMelanie2012-08-141-1/+3
| | | | | | | will be available to estate owners and managers. If the user using the console had god privs, they can use "set console on" and "set console off" to switch on the actual region console. This allows console access from within the viewer. The region debug console can coexist with any other main console.
* Minor improvements to loggingOren Hurvitz2012-04-241-0/+4
| | | | Eliminated an extra newline in the console if the log line doesn't contain a category (example of a category: "[ASSETS]").
* Updated some variables to be closer to the coding standards (and easier to ↵Kevin Houlihan2011-09-161-91/+88
| | | | | | | understand). There were a few variables in LocalConsole with single character names, and the class fields did not use the m_ prefix. I also removed a redundant variable, h. It was being set to 1 in a couple of places, and incremented in another, but never actually used.
* Passwords could be revealed in console by pressing backspace.Kevin Houlihan2011-09-161-1/+4
| | | | Pressing backspace causes hidden input (such as passwords) to be revealed on the console. The echo state was not being taken into account when handling a backspace key press.
* small refactor: reuse existing commandLine string rather than calling ↵Justin Clark-Casey (justincc)2010-11-171-1/+1
| | | | cmdline.ToString() again
* save all lines to history, not just those which turn out to be valid ↵Justin Clark-Casey (justincc)2010-11-171-2/+7
| | | | | | | comands. does not store passwords also, blank lines are not stored to history this makes it easier to go back and correct a command which was simply mistyped rather than having to type it out again
* Limit formatting of local console output to actual logging messages.Marck2010-10-091-13/+17
| | | | | The formatting of lines with the help of a regular expression match will be done only for output with an explicitly given logging level. This fixes the issue of colons being added to help texts on the local console.
* Formatting cleanup.Jeff Ames2010-09-121-9/+9
|
* Made it impossible to create a user with names containing spaces and ↵randomhuman2010-09-101-2/+3
| | | | prevented passwords from being echoed after enter is pressed.
* Fix http://opensimulator.org/mantis/view.php?id=4657 where ↵Justin Clark-Casey (justincc)2010-04-161-16/+47
| | | | | | OpenSim.Grid.UserServer.exe fails on startup if no previous config probably appears to occur because mono 2.4.2.3 (and possibly later) erroneously returns a value of 0 for BufferWidth and BufferHeight in some circumstances
* Formatting cleanup.Jeff Ames2010-02-151-7/+7
|
* Fix repeated ArgumentOutOfRangeException when a local OpenSim console is ↵Justin Clark-Casey (justincc)2010-01-081-33/+73
| | | | | | resized under mono May fix mantises 3186, 3270, 4022, 4238
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * Display normal log information in the console's default foreground colour, ↵Justin Clarke Casey2009-05-251-5/+5
| | | | for those of us with white backgrounds
* cleaning out warnings.Dr Scofield2009-05-221-1/+1
| | | | | | NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that?
* Move the color console logic from the appender into the local console, sinceMelanie Thielker2009-05-201-2/+84
| | | | | | | 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-124/+0
|
* * minor: remove some mono compiler warnings, minor cleanupJustin Clarke Casey2009-05-041-1/+1
|
* Add a skeleton class, "RemoteConsole", for a console that uses RESTMelanie Thielker2009-05-041-1/+0
|
* Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker2009-05-041-0/+470
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 :)