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. --- OpenSim/Services/GridService/GridService.cs | 4 ++-- OpenSim/Services/LLLoginService/LLLoginService.cs | 6 +++--- OpenSim/Services/UserAccountService/UserAccountService.cs | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) (limited to 'OpenSim/Services') diff --git a/OpenSim/Services/GridService/GridService.cs b/OpenSim/Services/GridService/GridService.cs index 89f0716..3dc87bc 100644 --- a/OpenSim/Services/GridService/GridService.cs +++ b/OpenSim/Services/GridService/GridService.cs @@ -84,14 +84,14 @@ namespace OpenSim.Services.GridService if (MainConsole.Instance != null) { - MainConsole.Instance.Commands.AddCommand("grid", true, + MainConsole.Instance.Commands.AddCommand("Regions", true, "show region", "show region ", "Show details on a region", String.Empty, HandleShowRegion); - MainConsole.Instance.Commands.AddCommand("grid", true, + MainConsole.Instance.Commands.AddCommand("Regions", true, "set region flags", "set region flags ", "Set database flags for region", diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index f7b38d4..db8a9cb 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs @@ -893,16 +893,16 @@ namespace OpenSim.Services.LLLoginService private void RegisterCommands() { //MainConsole.Instance.Commands.AddCommand - MainConsole.Instance.Commands.AddCommand("loginservice", false, "login level", + MainConsole.Instance.Commands.AddCommand("Users", false, "login level", "login level ", "Set the minimum user level to log in", HandleLoginCommand); - MainConsole.Instance.Commands.AddCommand("loginservice", false, "login reset", + MainConsole.Instance.Commands.AddCommand("Users", false, "login reset", "login reset", "Reset the login level to allow all users", HandleLoginCommand); - MainConsole.Instance.Commands.AddCommand("loginservice", false, "login text", + MainConsole.Instance.Commands.AddCommand("Users", false, "login text", "login text ", "Set the text users will see on login", HandleLoginCommand); diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs index 4a29690..6f1d745 100644 --- a/OpenSim/Services/UserAccountService/UserAccountService.cs +++ b/OpenSim/Services/UserAccountService/UserAccountService.cs @@ -89,17 +89,17 @@ namespace OpenSim.Services.UserAccountService if (m_RootInstance == null && MainConsole.Instance != null) { m_RootInstance = this; - MainConsole.Instance.Commands.AddCommand("UserService", false, + MainConsole.Instance.Commands.AddCommand("Users", false, "create user", "create user [ [ [ [ []]]]]", "Create a new user", HandleCreateUser); - MainConsole.Instance.Commands.AddCommand("UserService", false, + MainConsole.Instance.Commands.AddCommand("Users", false, "reset user password", "reset user password [ [ []]]", "Reset a user password", HandleResetUserPassword); - MainConsole.Instance.Commands.AddCommand("UserService", false, + MainConsole.Instance.Commands.AddCommand("Users", false, "set user level", "set user level [ [ []]]", "Set user level. If >= 200 and 'allow_grid_gods = true' in OpenSim.ini, " @@ -107,7 +107,7 @@ namespace OpenSim.Services.UserAccountService + "It will also affect the 'login level' command. ", HandleSetUserLevel); - MainConsole.Instance.Commands.AddCommand("UserService", false, + MainConsole.Instance.Commands.AddCommand("Users", false, "show account", "show account ", "Show account details for the given user", HandleShowAccount); -- cgit v1.1