aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorAdam Frisby2007-10-25 12:13:58 +0000
committerAdam Frisby2007-10-25 12:13:58 +0000
commit2048d611cf2ecccfbdb6b234c995e19d72ad03f2 (patch)
treea7cbc539a7e69cb1f8e70a094df8e26048d07375 /OpenSim/Region/ClientStack
parentCreated a generic RESTClient component, which simplifies querying for resourc... (diff)
downloadopensim-SC_OLD-2048d611cf2ecccfbdb6b234c995e19d72ad03f2.zip
opensim-SC_OLD-2048d611cf2ecccfbdb6b234c995e19d72ad03f2.tar.gz
opensim-SC_OLD-2048d611cf2ecccfbdb6b234c995e19d72ad03f2.tar.bz2
opensim-SC_OLD-2048d611cf2ecccfbdb6b234c995e19d72ad03f2.tar.xz
* Added XMLRPC Controller Module to OpenSimMain which allows XML-RPC queries to be sent to the core application.
* Disabled by default, but has two functions so far -- shutdown (timed or now), and create-region. * Added SendGeneralAlert function to SceneManager allowing all-user alerts to be sent from OpenSimMain.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/RegionApplicationBase.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
index 62e2afd..bab5d16 100644
--- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs
+++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
@@ -57,6 +57,11 @@ namespace OpenSim.Region.ClientStack
57 57
58 protected SceneManager m_sceneManager = new SceneManager(); 58 protected SceneManager m_sceneManager = new SceneManager();
59 59
60 public SceneManager SceneManager
61 {
62 get { return m_sceneManager; }
63 }
64
60 public RegionApplicationBase() 65 public RegionApplicationBase()
61 { 66 {
62 m_startuptime = DateTime.Now; 67 m_startuptime = DateTime.Now;