| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
This allows one to delete objects within a certain volume.
See help on console for more details.
|
|
|
|
| |
but not mono 2.10.9
|
| |
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
Use these for new "show regions" command rather than old cumbersome stuff.
|
|
|
|
| |
ConsoleDisplayTableRow and ConsoleDisplayTableColumn
|
|
|
|
|
|
| |
list form.
Convert "show region" to use this structure rather than hand-constructing
|
| |
|
|
|
|
|
|
|
| |
output tables.
Still subject to change - if you use this be prepared to change your output code if/when the methods change.
Make new "attachments show" command use this.
|
|
|
|
|
|
| |
containing spaces to "help" text.
e.g. show object name "My long object name"
|
|
|
|
| |
Eliminated an extra newline in the console if the log line doesn't contain a category (example of a category: "[ASSETS]").
|
|
|
|
|
| |
Forcing uppercase (e.g. help Assets) is too annoying.
Thanks to WhiteStar for pointing this out.
|
|
|
|
|
|
|
|
|
|
|
| |
<category/module>" to display commands in a category.
This is to deal with the hundred lines of command splurge when one previously typed "help"
Modelled somewhat on the mysql console
One can still type help <command> to get per command help at any point.
Categories capitalized to avoid conflict with the all-lowercase commands (except for commander system, as of yet).
Does not affect command parsing or any other aspects of the console apart from the help system.
Backwards compatible with existing modules.
|
|
|
|
|
|
|
|
| |
from CommandConsole.
This is so that the static MainConsole.Instance doesn't retain references to methods registered by scene and other modules to service commands.
This prevents the scene from being garbage collected at the end of a test.
This is not the final thing preventing GC - next up is the timer started by SimStatsReporter that holds a reference to Scene that prevents end of test gc.
|
|
|
|
| |
as an OptionSet long option
|
|
|
|
| |
It appears that this is entirely unnecessary since the poll http handlers are dealt with on a separate code path.
|
| |
|
|
|
|
|
|
|
|
|
| |
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)
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
| |
[<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
|
|
|
|
| |
cmdline.ToString() again
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
text/plain.
Non-error responses to requests SessionCommand and CloseSession should use the appropriate content type for their XML data payload.
|
| |
|
| |
|
|
|
|
| |
prevented passwords from being echoed after enter is pressed.
|
| |
|
| |
|
|
|
|
|
| |
multi-word commands with proper quoting, handles arguments with spaces
and allows interactive use, e.g. user creation.
|
|
|
|
| |
for readability
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
anything but testing.
|
|
|
|
|
|
| |
reference
* Added a MockConsole that doesn't require a handle to System.Console
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
|
|
|
|
|
| |
the simulator with log level WARN or ERROR and see the output of console commands
Signed-off-by: Melanie <melanie@t-data.com>
|
|
|
|
|
|
| |
resized under mono
May fix mantises 3186, 3270, 4022, 4238
|
| |
|
|
|
|
|
| |
on poll handlers. Introduce a new delegate on the PollServiceEventArgs that
allow access to the request headers and body.
|
|
|
|
| |
even hander delegates.
|
| |
|
|
|
|
| |
bit better
|