aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* 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-073-181/+531
| | | | | | | | | 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.
* Removed some of the darker colors from console messages as they were not ↵Dahlia Trimble2009-01-201-6/+7
| | | | visible in some terminal emulators (like putty)
* oops hash codes can be negative, account for thatSean Dague2009-01-191-1/+2
| | | | | From: Sean Dague <sdague@gmail.com>
* added display of exceptionSean Dague2009-01-191-1/+1
| | | | | From: Sean Dague <sdague@gmail.com>
* change the appender to have a few more colors, none of which are redSean Dague2009-01-191-2/+16
| | | | | From: Sean Dague <sdague@gmail.com>
* * 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-122-2/+2
| | | | | | 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-183-14/+14
|
* * Insert a new 'set log level [level] command on the console'Justin Clarke Casey2008-08-161-1/+6
| | | | | | | | | * The primary immediate use is to provide a means of temporarily reducing log output on the console when executing console commands * Changing the log level on the console is not permanent and does not affect the log information being put into OpenSim.log * This could have been done by putting in a threshold level on the Console appeneder in OpenSim.exe.config and implementing config watching in the code. * But I think that it's a little more user friendly to make this doable via the console.
* * 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
* * Hive off ConsolePluginCommand into its own framework classJustin Clarke Casey2008-07-121-0/+139
|
* 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-162-12/+12
|
* 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-012-2/+2
| | | | | * 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-212-8/+4
| | | | (this took a while to run).
* sadly, had to modify line by Ter because it caused mono cil compilerSean Dague2008-04-011-1/+2
| | | | | | to spin off into a seemingly infinite loop.
* * Set Svn Properties eol-style: |337Teravus Ovares2008-03-311-1/+1
|
* Formatting cleanup.Jeff Ames2008-03-185-133/+131
|
* Report command string on ConsoleBase.RunCommand exceptionJustin Clarke Casey2008-02-201-1/+2
|
* * just added a readonly and a commentlbsa712008-02-201-1/+1
|
* * Do not allow a user to be created if one with the same name already existsJustin Clarke Casey2008-02-181-4/+4
|
* Added copyright notices.Jeff Ames2008-02-171-2/+28
|
* attempt to make our logging at least fail gracefully, we'll see if this helpsSean Dague2008-02-141-26/+33
|
* * Change logger to handle [<entry>] where <entry> contains non alphabetic ↵Justin Clarke Casey2008-02-091-3/+3
| | | | | | | | | characters * Change logger to not print extra line if [<entry>] <text> like string is not logged * Remove more of my previous chatty debugging statements
* make a couple more changes to get us back very close to old color schemeSean Dague2008-02-061-3/+16
|
* ummm... removed 1 too many newlines, formating a bit better nowSean Dague2008-02-061-1/+1
|
* pass 1 on getting colors back to the consoleSean Dague2008-02-061-0/+69
|
* Removed super-stealth mode from PasswdPrompt. (Now you can see the prompt)Jeff Ames2008-02-061-0/+1
|
* Revert color console changes until a cross-platform method is found.Jeff Ames2008-02-061-1/+0
|
* Added colors back to console output.Jeff Ames2008-02-061-10/+0
| | | | | Fixed line duplication in console output.
* Converted logging to use log4net.Jeff Ames2008-02-052-119/+42
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Fixing the console write on shutdown where the object is already disposed.Teravus Ovares2008-02-051-46/+63
|
* Hopefully fixed MySQL DB crash on startup issue (so we can remove 3 sec wait).Tedd Hansen2008-02-021-1/+13
| | | | | | Added option to try alternate UDP ports if the one configured is in use. UDP packets are now bound to the actual outside IP address and hopefully won't "randomly" select IP on multihomed systems.
* * Changing log messages to use 24 hour clock rather than 12 hour - hope ↵Justin Clarke Casey2008-01-231-2/+2
| | | | nobody objects