Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2011-09-16 | Updated some variables to be closer to the coding standards (and easier to ↵ | Kevin Houlihan | 1 | -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. | |||||
2011-09-16 | Passwords could be revealed in console by pressing backspace. | Kevin Houlihan | 1 | -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. | |||||
2011-04-23 | print invalid command message to the console, not the log | Justin Clark-Casey (justincc) | 1 | -3/+1 | |
2011-01-26 | Implement command "land show". This shows all the parcels on the currently ↵ | Justin Clark-Casey (justincc) | 1 | -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. | |||||
2011-01-21 | Update the "config get <section> <key>" command to "config get [<section>] ↵ | Justin Clark-Casey (justincc) | 1 | -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 | |||||
2010-11-17 | small refactor: reuse existing commandLine string rather than calling ↵ | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
cmdline.ToString() again | |||||
2010-11-17 | save all lines to history, not just those which turn out to be valid ↵ | Justin Clark-Casey (justincc) | 1 | -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 | |||||
2010-11-02 | Add support for cross-domain AJAX requests to REST console. | Marck | 1 | -0/+31 | |
Enables RemoteConsole to add the appropriate HTTP header when responding to requests that use Cross-Origin Resource Sharing (CORS with simple requests). The allowed origin is set with configuration option "ConsoleAllowedOrigin" in section [Network]. For a suggestion to make this configuration option more flexible, see the TODO comment in the source code. The WifiConsole uses this functionality with grid mode. | |||||
2010-10-09 | Limit formatting of local console output to actual logging messages. | Marck | 1 | -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. | |||||
2010-09-18 | REST Console delivers responses with content type text/xml instead of ↵ | Marck | 1 | -2/+2 | |
text/plain. Non-error responses to requests SessionCommand and CloseSession should use the appropriate content type for their XML data payload. | |||||
2010-09-12 | Formatting cleanup. | Jeff Ames | 2 | -10/+10 | |
2010-09-12 | Add copyright headers. | Jeff Ames | 1 | -1/+28 | |
2010-09-10 | Made it impossible to create a user with names containing spaces and ↵ | randomhuman | 2 | -2/+54 | |
prevented passwords from being echoed after enter is pressed. | |||||
2010-07-22 | Added ': ' to password prompt. Mantis #4851 | Diva Canto | 1 | -1/+1 | |
2010-06-17 | Force newly connecting remote consoles to display a prompt | Melanie | 1 | -0/+7 | |
2010-06-08 | Make the text mode remote console really work. It can now be used to send | Melanie Thielker | 1 | -14/+22 | |
multi-word commands with proper quoting, handles arguments with spaces and allows interactive use, e.g. user creation. | |||||
2010-05-28 | If a command has descriptive help, add a line above and below the print out ↵ | Justin Clark-Casey (justincc) | 1 | -0/+10 | |
for readability | |||||
2010-05-28 | Add ability to load IARs directly from URIs | Justin Clark-Casey (justincc) | 1 | -2/+1 | |
So, something like load iar Justin Clark-Casey / PASSWORD http://justincc.org/downloads/iars/my-great-items.iar Will load my IAR directly from the web. | |||||
2010-05-19 | Change appender to deal with line feeds more intelligently. | Melanie | 1 | -1/+4 | |
Change migration error reporting to not truncate the statement when reporting. It's a bit messier than the old error reporting, but at least one gets an idea of what could be wrong again. And things look a lot neater now. | |||||
2010-05-19 | Clean up output a bit | Melanie | 1 | -1/+1 | |
2010-05-04 | * Added an important comment to warn people not to use MockConsole for ↵ | Teravus Ovares (Dan Olivares) | 1 | -0/+5 | |
anything but testing. | |||||
2010-05-04 | * This should fix the tests failing because of a MainConsole.Instance null ↵ | Teravus Ovares (Dan Olivares) | 1 | -0/+32 | |
reference * Added a MockConsole that doesn't require a handle to System.Console | |||||
2010-04-16 | Fix http://opensimulator.org/mantis/view.php?id=4657 where ↵ | Justin Clark-Casey (justincc) | 1 | -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 | |||||
2010-02-15 | Formatting cleanup. | Jeff Ames | 2 | -9/+9 | |
2010-01-26 | * Quick fix to Remote Console session ID handling. | Adam Frisby | 1 | -0/+6 | |
2010-01-20 | Console output no longer requires loglevel to be set to info; you can run ↵ | mbowman | 2 | -2/+2 | |
the simulator with log level WARN or ERROR and see the output of console commands Signed-off-by: Melanie <melanie@t-data.com> | |||||
2010-01-08 | Fix repeated ArgumentOutOfRangeException when a local OpenSim console is ↵ | Justin Clark-Casey (justincc) | 2 | -35/+79 | |
resized under mono May fix mantises 3186, 3270, 4022, 4238 | |||||
2009-10-01 | Formatting cleanup. | Jeff Ames | 1 | -5/+5 | |
2009-09-22 | Completely remove the prior implementation of the request event handling | Melanie | 1 | -1/+1 | |
on poll handlers. Introduce a new delegate on the PollServiceEventArgs that allow access to the request headers and body. | |||||
2009-09-21 | Add a RequestID (UUID.Random()) to the PollRequest and pass it to all | Melanie | 1 | -5/+5 | |
even hander delegates. | |||||
2009-09-21 | Add a UUID param to NoEvents in PollServiceEventArgs to make it more generic | Melanie | 1 | -3/+3 | |
2009-09-21 | A small fix for remote console to accommodate PollServiceArgs behavior a | Melanie | 1 | -1/+6 | |
bit better | |||||
2009-08-26 | Fix some compile warnings. | Jeff Ames | 1 | -2/+0 | |
2009-08-22 | Change prompt handling in console. No user changes | Melanie | 3 | -4/+10 | |
2009-08-17 | Add the OpenSim.ConsoleClient app. | Melanie | 2 | -12/+124 | |
Usage: OpenSim.ConsoleClient -h <host> -p <port> -u <user> -P <pass> host defaults to localhost, port defaults to 8003. | |||||
2009-08-17 | Filling in the blanks: The "meat" of the REST console | Melanie | 2 | -9/+385 | |
2009-06-01 | Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵ | Jeff Ames | 8 | -8/+8 | |
LICENSE.txt. | |||||
2009-05-31 | Add copyright headers, formatting cleanup, ignore some generated files. | Jeff Ames | 1 | -1/+1 | |
2009-05-25 | * Display normal log information in the console's default foreground colour, ↵ | Justin Clarke Casey | 1 | -5/+5 | |
for those of us with white backgrounds | |||||
2009-05-25 | * Upped version number to 0.6.5 | lbsa71 | 1 | -1/+1 | |
2009-05-22 | cleaning out warnings. | Dr Scofield | 2 | -5/+5 | |
NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that? | |||||
2009-05-21 | Implement .ini file includes. Anything that begins with "Include-" will be | Melanie Thielker | 2 | -2/+4 | |
treated as another ini source to load. For example: Include-Asset = AssetSetup.ini will load AssetSetup.ini after all other ini files are done. This works recursively, too | |||||
2009-05-20 | Put some meat on the bones of the REST console. NO user functionality yet | Melanie Thielker | 1 | -1/+45 | |
2009-05-20 | Move the color console logic from the appender into the local console, since | Melanie Thielker | 4 | -77/+101 | |
that is the only one that can use it. Change appender output to always go through the console output functions. | |||||
2009-05-20 | Remove the pre-log4net, discrete output methods from the consoles | Melanie Thielker | 3 | -273/+1 | |
2009-05-05 | Committing the new server base | Melanie Thielker | 1 | -1/+1 | |
2009-05-04 | Intermediate commit. WILL NOT COMPILE! | Melanie Thielker | 1 | -1/+1 | |
2009-05-04 | * minor: remove some mono compiler warnings, minor cleanup | Justin Clarke Casey | 3 | -3/+3 | |
2009-05-04 | Prebuild changes to allow the console to reference the http server | Melanie Thielker | 1 | -0/+15 | |
2009-05-04 | Add a skeleton class, "RemoteConsole", for a console that uses REST | Melanie Thielker | 2 | -1/+57 | |