aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/CommandConsole.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-22/+22
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-15/+31
|
* minor: Remove unnecessary commented out code from last commit c28a2f05 and ↵Justin Clark-Casey (justincc)2013-01-251-4/+1
| | | | fix up code comment
* minor: make spacing consistent in console help outputJustin Clark-Casey (justincc)2013-01-251-3/+6
|
* Add "help all" console command which will list all commands alphabetically ↵Justin Clark-Casey (justincc)2012-11-231-1/+28
| | | | in a single list
* factor out common HandleShow code for "show uptime"Justin Clark-Casey (justincc)2012-11-221-1/+1
|
* Allow the use of the region debug console found in recent viewers. This consoleMelanie2012-08-141-0/+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.
* Add text about using double quotes to surround console command arguments ↵Justin Clark-Casey (justincc)2012-04-281-2/+8
| | | | | | containing spaces to "help" text. e.g. show object name "My long object name"
* Allow the user to enter help topics in upper or lowercase.Justin Clark-Casey (justincc)2012-03-241-10/+12
| | | | | Forcing uppercase (e.g. help Assets) is too annoying. Thanks to WhiteStar for pointing this out.
* Change "help" to display categories/module list then "help ↵Justin Clark-Casey (justincc)2012-03-081-22/+92
| | | | | | | | | | | <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.
* Change parser to leave embedded quotes alone if the pattern is recognizedMelanie2012-02-101-0/+34
| | | | as an OptionSet long option
* remove some mono compiler warningsJustin Clark-Casey (justincc)2011-11-251-1/+1
|
* Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)2011-10-251-5/+6
| | | | | | | | | 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)
* print invalid command message to the console, not the logJustin Clark-Casey (justincc)2011-04-231-3/+1
|
* Formatting cleanup.Jeff Ames2010-09-121-1/+1
|
* If a command has descriptive help, add a line above and below the print out ↵Justin Clark-Casey (justincc)2010-05-281-0/+10
| | | | for readability
* Add ability to load IARs directly from URIsJustin Clark-Casey (justincc)2010-05-281-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.
* Fix repeated ArgumentOutOfRangeException when a local OpenSim console is ↵Justin Clark-Casey (justincc)2010-01-081-2/+6
| | | | | | resized under mono May fix mantises 3186, 3270, 4022, 4238
* Formatting cleanup.Jeff Ames2009-10-011-5/+5
|
* Change prompt handling in console. No user changesMelanie2009-08-221-2/+2
|
* Add the OpenSim.ConsoleClient app.Melanie2009-08-171-1/+91
| | | | | Usage: OpenSim.ConsoleClient -h <host> -p <port> -u <user> -P <pass> host defaults to localhost, port defaults to 8003.
* Filling in the blanks: The "meat" of the REST consoleMelanie2009-08-171-0/+60
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* Committing the new server baseMelanie Thielker2009-05-051-1/+1
|
* Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker2009-05-041-0/+467
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 :)