aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Base/CommandManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Server/Base/CommandManager.cs')
-rwxr-xr-xOpenSim/Server/Base/CommandManager.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/OpenSim/Server/Base/CommandManager.cs b/OpenSim/Server/Base/CommandManager.cs
index 9ada974..bb103a0 100755
--- a/OpenSim/Server/Base/CommandManager.cs
+++ b/OpenSim/Server/Base/CommandManager.cs
@@ -179,7 +179,6 @@ namespace OpenSim.Server.Base
179 Dictionary<string, object> plugin = (Dictionary<string, object>)result[k]; 179 Dictionary<string, object> plugin = (Dictionary<string, object>)result[k];
180 bool enabled = (bool)plugin["enabled"]; 180 bool enabled = (bool)plugin["enabled"];
181 MainConsole.Instance.Output("{0}) {1} {2} rev. {3}", 181 MainConsole.Instance.Output("{0}) {1} {2} rev. {3}",
182 null,
183 k, 182 k,
184 enabled == true ? "[ ]" : "[X]", 183 enabled == true ? "[ ]" : "[X]",
185 plugin["name"], plugin["version"]); 184 plugin["name"], plugin["version"]);
@@ -217,7 +216,6 @@ namespace OpenSim.Server.Base
217 Dictionary<string, object> plugin = (Dictionary<string, object>)result[k]; 216 Dictionary<string, object> plugin = (Dictionary<string, object>)result[k];
218 bool enabled = (bool)plugin["enabled"]; 217 bool enabled = (bool)plugin["enabled"];
219 MainConsole.Instance.Output("{0}) {1} {2} rev. {3}", 218 MainConsole.Instance.Output("{0}) {1} {2} rev. {3}",
220 null,
221 k, 219 k,
222 enabled == true ? "[ ]" : "[X]", 220 enabled == true ? "[ ]" : "[X]",
223 plugin["name"], plugin["version"]); 221 plugin["name"], plugin["version"]);
@@ -238,7 +236,6 @@ namespace OpenSim.Server.Base
238 // name, version, repository 236 // name, version, repository
239 Dictionary<string, object> plugin = (Dictionary<string, object>)result[k]; 237 Dictionary<string, object> plugin = (Dictionary<string, object>)result[k];
240 MainConsole.Instance.Output("{0}) {1} rev. {2} {3}", 238 MainConsole.Instance.Output("{0}) {1} rev. {2} {3}",
241 null,
242 k, 239 k,
243 plugin["name"], 240 plugin["name"],
244 plugin["version"], 241 plugin["version"],
@@ -313,7 +310,6 @@ namespace OpenSim.Server.Base
313 Dictionary<string, object> repo = (Dictionary<string, object>)result[k]; 310 Dictionary<string, object> repo = (Dictionary<string, object>)result[k];
314 bool enabled = (bool)repo["enabled"]; 311 bool enabled = (bool)repo["enabled"];
315 MainConsole.Instance.Output("{0}) {1} {2}", 312 MainConsole.Instance.Output("{0}) {1} {2}",
316 null,
317 k, 313 k,
318 enabled == true ? "[ ]" : "[X]", 314 enabled == true ? "[ ]" : "[X]",
319 repo["name"], repo["url"]); 315 repo["name"], repo["url"]);
@@ -334,7 +330,6 @@ namespace OpenSim.Server.Base
334 PluginManager.AddinInfo(ndx, out result); 330 PluginManager.AddinInfo(ndx, out result);
335 331
336 MainConsole.Instance.Output("Name: {0}\nURL: {1}\nFile: {2}\nAuthor: {3}\nCategory: {4}\nDesc: {5}", 332 MainConsole.Instance.Output("Name: {0}\nURL: {1}\nFile: {2}\nAuthor: {3}\nCategory: {4}\nDesc: {5}",
337 null,
338 result["name"], 333 result["name"],
339 result["url"], 334 result["url"],
340 result["file_name"], 335 result["file_name"],