aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimMainConsole.cs
diff options
context:
space:
mode:
authorJeff Ames2008-05-25 23:27:38 +0000
committerJeff Ames2008-05-25 23:27:38 +0000
commit5d77625e9ac4ce1fc7b8fd67aabf563678ef0d5d (patch)
treeb010c015ac515fe2a3dd0c9f89c16cbc6383d685 /OpenSim/Region/Application/OpenSimMainConsole.cs
parent* A hacky Top Scripts display. It isn't accurate as far as ms accounting, ho... (diff)
downloadopensim-SC_OLD-5d77625e9ac4ce1fc7b8fd67aabf563678ef0d5d.zip
opensim-SC_OLD-5d77625e9ac4ce1fc7b8fd67aabf563678ef0d5d.tar.gz
opensim-SC_OLD-5d77625e9ac4ce1fc7b8fd67aabf563678ef0d5d.tar.bz2
opensim-SC_OLD-5d77625e9ac4ce1fc7b8fd67aabf563678ef0d5d.tar.xz
Update svn properties. Formatting cleanup.
Diffstat (limited to 'OpenSim/Region/Application/OpenSimMainConsole.cs')
-rw-r--r--OpenSim/Region/Application/OpenSimMainConsole.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/Application/OpenSimMainConsole.cs b/OpenSim/Region/Application/OpenSimMainConsole.cs
index dd14c59..e4590f2 100644
--- a/OpenSim/Region/Application/OpenSimMainConsole.cs
+++ b/OpenSim/Region/Application/OpenSimMainConsole.cs
@@ -291,7 +291,7 @@ namespace OpenSim
291 break; 291 break;
292 case "save-xml": 292 case "save-xml":
293 m_log.Error("[CONSOLE]: PLEASE NOTE, save-xml is DEPRECATED and may be REMOVED soon. If you are using this and there is some reason you can't use save-xml2, please file a mantis detailing the reason."); 293 m_log.Error("[CONSOLE]: PLEASE NOTE, save-xml is DEPRECATED and may be REMOVED soon. If you are using this and there is some reason you can't use save-xml2, please file a mantis detailing the reason.");
294 294
295 if (cmdparams.Length > 0) 295 if (cmdparams.Length > 0)
296 { 296 {
297 m_sceneManager.SaveCurrentSceneToXml(cmdparams[0]); 297 m_sceneManager.SaveCurrentSceneToXml(cmdparams[0]);
@@ -304,7 +304,7 @@ namespace OpenSim
304 304
305 case "load-xml": 305 case "load-xml":
306 m_log.Error("[CONSOLE]: PLEASE NOTE, load-xml is DEPRECATED and may be REMOVED soon. If you are using this and there is some reason you can't use load-xml2, please file a mantis detailing the reason."); 306 m_log.Error("[CONSOLE]: PLEASE NOTE, load-xml is DEPRECATED and may be REMOVED soon. If you are using this and there is some reason you can't use load-xml2, please file a mantis detailing the reason.");
307 307
308 LLVector3 loadOffset = new LLVector3(0, 0, 0); 308 LLVector3 loadOffset = new LLVector3(0, 0, 0);
309 if (cmdparams.Length > 0) 309 if (cmdparams.Length > 0)
310 { 310 {
@@ -359,10 +359,10 @@ namespace OpenSim
359 m_sceneManager.LoadCurrentSceneFromXml2(DEFAULT_PRIM_BACKUP_FILENAME); 359 m_sceneManager.LoadCurrentSceneFromXml2(DEFAULT_PRIM_BACKUP_FILENAME);
360 } 360 }
361 break; 361 break;
362 362
363 case "save-oar": 363 case "save-oar":
364 m_log.Error("[CONSOLE]: Don't use me - I haven't yet been sufficiently implemented!"); 364 m_log.Error("[CONSOLE]: Don't use me - I haven't yet been sufficiently implemented!");
365 365
366 if (cmdparams.Length > 0) 366 if (cmdparams.Length > 0)
367 { 367 {
368 m_sceneManager.SaveCurrentSceneToArchive(cmdparams[0]); 368 m_sceneManager.SaveCurrentSceneToArchive(cmdparams[0]);
@@ -371,7 +371,7 @@ namespace OpenSim
371 { 371 {
372 m_sceneManager.SaveCurrentSceneToArchive(DEFAULT_OAR_BACKUP_FILENAME); 372 m_sceneManager.SaveCurrentSceneToArchive(DEFAULT_OAR_BACKUP_FILENAME);
373 } 373 }
374 break; 374 break;
375 375
376 case "plugin": 376 case "plugin":
377 m_sceneManager.SendCommandToPluginModules(cmdparams); 377 m_sceneManager.SendCommandToPluginModules(cmdparams);
@@ -597,9 +597,9 @@ namespace OpenSim
597 597
598 case "users": 598 case "users":
599 IList agents = m_sceneManager.GetCurrentSceneAvatars(); 599 IList agents = m_sceneManager.GetCurrentSceneAvatars();
600 600
601 m_console.Notice(String.Format("\nAgents connected: {0}\n", agents.Count)); 601 m_console.Notice(String.Format("\nAgents connected: {0}\n", agents.Count));
602 602
603 m_console.Notice( 603 m_console.Notice(
604 String.Format("{0,-16}{1,-16}{2,-37}{3,-16}", "Firstname", "Lastname", 604 String.Format("{0,-16}{1,-16}{2,-37}{3,-16}", "Firstname", "Lastname",
605 "Agent ID","Region")); 605 "Agent ID","Region"));
@@ -627,7 +627,7 @@ namespace OpenSim
627 presence.UUID, 627 presence.UUID,
628 regionName)); 628 regionName));
629 } 629 }
630 630
631 m_console.Notice(""); 631 m_console.Notice("");
632 break; 632 break;
633 633