Add proper handling for shared vs. unshared modules to the command

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.
This commit is contained in:
Melanie Thielker
2009-02-10 23:15:48 +00:00
parent b4be9baa4a
commit 9bfbfa381a
13 changed files with 126 additions and 93 deletions

View File

@@ -114,15 +114,17 @@ namespace OpenSim.Grid.GridServer
base.StartupSpecific();
m_console.Commands.AddCommand("gridserver", "enable registration",
m_console.Commands.AddCommand("gridserver", false,
"enable registration",
"enable registration",
"Enable new regions to register", HandleRegistration);
m_console.Commands.AddCommand("gridserver", "disable registration",
m_console.Commands.AddCommand("gridserver", false,
"disable registration",
"disable registration",
"Disable registering new regions", HandleRegistration);
m_console.Commands.AddCommand("gridserver", "show status",
m_console.Commands.AddCommand("gridserver", false, "show status",
"show status",
"Show registration status", HandleShowStatus);
}