From 0fd17c08ae642fac17b24dfad06c61cfe5739483 Mon Sep 17 00:00:00 2001 From: Melanie Date: Tue, 20 Aug 2019 23:28:59 +0100 Subject: Massive console refactor. Greatly simplify interface. --- OpenSim/Server/Base/CommandManager.cs | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) mode change 100644 => 100755 OpenSim/Server/Base/CommandManager.cs (limited to 'OpenSim/Server/Base/CommandManager.cs') diff --git a/OpenSim/Server/Base/CommandManager.cs b/OpenSim/Server/Base/CommandManager.cs old mode 100644 new mode 100755 index ffb20ce..9ada974 --- a/OpenSim/Server/Base/CommandManager.cs +++ b/OpenSim/Server/Base/CommandManager.cs @@ -178,7 +178,8 @@ namespace OpenSim.Server.Base { Dictionary plugin = (Dictionary)result[k]; bool enabled = (bool)plugin["enabled"]; - MainConsole.Instance.OutputFormat("{0}) {1} {2} rev. {3}", + MainConsole.Instance.Output("{0}) {1} {2} rev. {3}", + null, k, enabled == true ? "[ ]" : "[X]", plugin["name"], plugin["version"]); @@ -215,7 +216,8 @@ namespace OpenSim.Server.Base { Dictionary plugin = (Dictionary)result[k]; bool enabled = (bool)plugin["enabled"]; - MainConsole.Instance.OutputFormat("{0}) {1} {2} rev. {3}", + MainConsole.Instance.Output("{0}) {1} {2} rev. {3}", + null, k, enabled == true ? "[ ]" : "[X]", plugin["name"], plugin["version"]); @@ -235,7 +237,8 @@ namespace OpenSim.Server.Base { // name, version, repository Dictionary plugin = (Dictionary)result[k]; - MainConsole.Instance.OutputFormat("{0}) {1} rev. {2} {3}", + MainConsole.Instance.Output("{0}) {1} rev. {2} {3}", + null, k, plugin["name"], plugin["version"], @@ -309,7 +312,8 @@ namespace OpenSim.Server.Base { Dictionary repo = (Dictionary)result[k]; bool enabled = (bool)repo["enabled"]; - MainConsole.Instance.OutputFormat("{0}) {1} {2}", + MainConsole.Instance.Output("{0}) {1} {2}", + null, k, enabled == true ? "[ ]" : "[X]", repo["name"], repo["url"]); @@ -329,7 +333,8 @@ namespace OpenSim.Server.Base int ndx = Convert.ToInt16(cmd[2]); PluginManager.AddinInfo(ndx, out result); - MainConsole.Instance.OutputFormat("Name: {0}\nURL: {1}\nFile: {2}\nAuthor: {3}\nCategory: {4}\nDesc: {5}", + MainConsole.Instance.Output("Name: {0}\nURL: {1}\nFile: {2}\nAuthor: {3}\nCategory: {4}\nDesc: {5}", + null, result["name"], result["url"], result["file_name"], -- cgit v1.1