aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ICommandConsole.cs
diff options
context:
space:
mode:
authorMelanie2012-08-14 21:54:47 +0200
committerMelanie2012-08-14 22:22:20 +0100
commitfaa710aee13347c4c55690f516ffda9179a92f3c (patch)
tree033ca7546d3853f28587bc8216e4c0aef1499a55 /OpenSim/Framework/ICommandConsole.cs
parentminor: Add Gryc Ueusp to CREDITS for commit 884edac amongst others, by request. (diff)
downloadopensim-SC_OLD-faa710aee13347c4c55690f516ffda9179a92f3c.zip
opensim-SC_OLD-faa710aee13347c4c55690f516ffda9179a92f3c.tar.gz
opensim-SC_OLD-faa710aee13347c4c55690f516ffda9179a92f3c.tar.bz2
opensim-SC_OLD-faa710aee13347c4c55690f516ffda9179a92f3c.tar.xz
Allow the use of the region debug console found in recent viewers. This console
will be available to estate owners and managers. If the user using the console had god privs, they can use "set console on" and "set console off" to switch on the actual region console. This allows console access from within the viewer. The region debug console can coexist with any other main console.
Diffstat (limited to 'OpenSim/Framework/ICommandConsole.cs')
-rw-r--r--OpenSim/Framework/ICommandConsole.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/ICommandConsole.cs b/OpenSim/Framework/ICommandConsole.cs
index ca0ff93..8cd20da 100644
--- a/OpenSim/Framework/ICommandConsole.cs
+++ b/OpenSim/Framework/ICommandConsole.cs
@@ -74,8 +74,12 @@ namespace OpenSim.Framework
74 XmlElement GetXml(XmlDocument doc); 74 XmlElement GetXml(XmlDocument doc);
75 } 75 }
76 76
77 public delegate void OnOutputDelegate(string message);
78
77 public interface ICommandConsole : IConsole 79 public interface ICommandConsole : IConsole
78 { 80 {
81 event OnOutputDelegate OnOutput;
82
79 ICommands Commands { get; } 83 ICommands Commands { get; }
80 84
81 /// <summary> 85 /// <summary>
@@ -87,4 +91,4 @@ namespace OpenSim.Framework
87 91
88 string ReadLine(string p, bool isCommand, bool e); 92 string ReadLine(string p, bool isCommand, bool e);
89 } 93 }
90} \ No newline at end of file 94}