Removed the additions from the last revision for the "ShowHelp" delegate handling, as it seems that system isn't in use anymore.

This commit is contained in:
MW
2009-02-24 18:06:06 +00:00
parent 1e2835a10c
commit 8645fa9215
5 changed files with 1 additions and 41 deletions

View File

@@ -73,7 +73,6 @@ namespace OpenSim.Grid.UserServer
public void PostInitialise()
{
m_core.RegisterConsoleHelpDelegate(ShowHelp);
}
public void RegisterHandlers(BaseHttpServer httpServer)
@@ -347,16 +346,6 @@ namespace OpenSim.Grid.UserServer
break;
}
}
public void ShowHelp(string[] helpArgs)
{
m_console.Notice("create user - create a new user");
m_console.Notice("logoff-user <firstname> <lastname> <message> - logs off the specified user from the grid");
m_console.Notice("reset user password - reset a user's password.");
m_console.Notice("login-level <value> - Set the miminim userlevel allowed To login.");
m_console.Notice("login-reset - reset the login level to its default value.");
m_console.Notice("login-text <text to print during the login>");
}
}
#endregion
}