From 749c3fef8ad2d3af97fcd9ab9c72740675e46715 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Thu, 8 Mar 2012 01:51:37 +0000 Subject: Change "help" to display categories/module list then "help " 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 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. --- .../OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Region/OptionalModules/Avatar') diff --git a/OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs b/OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs index 2369d94..6bb6729 100644 --- a/OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs @@ -94,13 +94,13 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance m_scenes[scene.RegionInfo.RegionID] = scene; scene.AddCommand( - this, "show appearance", + "Users", this, "show appearance", "show appearance [ ]", "Synonym for 'appearance show'", HandleShowAppearanceCommand); scene.AddCommand( - this, "appearance show", + "Users", this, "appearance show", "appearance show [ ]", "Show appearance information for each avatar in the simulator.", "This command checks whether the simulator has all the baked textures required to display an avatar to other viewers. " @@ -110,14 +110,14 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance HandleShowAppearanceCommand); scene.AddCommand( - this, "appearance send", + "Users", this, "appearance send", "appearance send [ ]", "Send appearance data for each avatar in the simulator to other viewers.", "Optionally, you can specify that only a particular avatar's appearance data is sent.", HandleSendAppearanceCommand); scene.AddCommand( - this, "appearance rebake", + "Users", this, "appearance rebake", "appearance rebake ", "Send a request to the user's viewer for it to rebake and reupload its appearance textures.", "This is currently done for all baked texture references previously received, whether the simulator can find the asset or not." @@ -127,7 +127,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance HandleRebakeAppearanceCommand); scene.AddCommand( - this, "appearance find", + "Users", this, "appearance find", "appearance find ", "Find out which avatar uses the given asset as a baked texture, if any.", "You can specify just the beginning of the uuid, e.g. 2008a8d. A longer UUID must be in dashed format.", -- cgit v1.1