diff options
author | Melanie Thielker | 2009-05-04 12:15:55 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-05-04 12:15:55 +0000 |
commit | 1b877234dada9f14cebc486cc426db892beae152 (patch) | |
tree | 762ee7172c66a78b643f4cef0eed946314816403 /OpenSim/Grid/GridServer | |
parent | Thanks BlueWall for Mantis #3578 - adding Hypergrid connection to JSON Stats (diff) | |
download | opensim-SC_OLD-1b877234dada9f14cebc486cc426db892beae152.zip opensim-SC_OLD-1b877234dada9f14cebc486cc426db892beae152.tar.gz opensim-SC_OLD-1b877234dada9f14cebc486cc426db892beae152.tar.bz2 opensim-SC_OLD-1b877234dada9f14cebc486cc426db892beae152.tar.xz |
Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simple
console capable of processing commands. Create LocalConsole as a console
that uses cursor control and context help. Precursor to a distributed
console system for the new grid services. No functional change intended :)
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs | 2 | ||||
-rw-r--r-- | OpenSim/Grid/GridServer/GridServerBase.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs b/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs index 1a4fe72..420249d 100644 --- a/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs +++ b/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs | |||
@@ -53,7 +53,7 @@ namespace OpenSim.Grid.GridServer.Modules | |||
53 | 53 | ||
54 | protected IGridServiceCore m_core; | 54 | protected IGridServiceCore m_core; |
55 | 55 | ||
56 | protected ConsoleBase m_console; | 56 | protected CommandConsole m_console; |
57 | 57 | ||
58 | #region IGridPlugin Members | 58 | #region IGridPlugin Members |
59 | 59 | ||
diff --git a/OpenSim/Grid/GridServer/GridServerBase.cs b/OpenSim/Grid/GridServer/GridServerBase.cs index a1170f8..a281a37 100644 --- a/OpenSim/Grid/GridServer/GridServerBase.cs +++ b/OpenSim/Grid/GridServer/GridServerBase.cs | |||
@@ -70,7 +70,7 @@ namespace OpenSim.Grid.GridServer | |||
70 | 70 | ||
71 | public GridServerBase() | 71 | public GridServerBase() |
72 | { | 72 | { |
73 | m_console = new ConsoleBase("Grid"); | 73 | m_console = new LocalConsole("Grid"); |
74 | MainConsole.Instance = m_console; | 74 | MainConsole.Instance = m_console; |
75 | } | 75 | } |
76 | 76 | ||