diff options
Removed the exit-region command, now use "change-region root" or "change-region .." to change back to root level. [Would be nice if the command prompt changed to show what the current region was, but think that will need changes to the console code so for now it will have to stay as it is].
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index f8d17b4..dca4222 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -93,6 +93,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
93 | // this most likely shouldn't be handled as a API method like this, but doing it for testing purposes | 93 | // this most likely shouldn't be handled as a API method like this, but doing it for testing purposes |
94 | public ModuleAPIMethod2<bool, string, byte[]> AddXferFile = null; | 94 | public ModuleAPIMethod2<bool, string, byte[]> AddXferFile = null; |
95 | 95 | ||
96 | private IHttpRequests m_httpRequestModule = null; | ||
96 | private ISimChat m_simChatModule = null; | 97 | private ISimChat m_simChatModule = null; |
97 | 98 | ||
98 | #region Properties | 99 | #region Properties |
@@ -196,6 +197,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
196 | public void SetModuleInterfaces() | 197 | public void SetModuleInterfaces() |
197 | { | 198 | { |
198 | m_simChatModule = this.RequestModuleInterface<ISimChat>(); | 199 | m_simChatModule = this.RequestModuleInterface<ISimChat>(); |
200 | m_httpRequestModule = this.RequestModuleInterface<IHttpRequests>(); | ||
199 | 201 | ||
200 | //should change so it uses the module interface functions | 202 | //should change so it uses the module interface functions |
201 | AddXferFile = (ModuleAPIMethod2<bool, string, byte[]>)this.RequestAPIMethod("API_AddXferFile"); | 203 | AddXferFile = (ModuleAPIMethod2<bool, string, byte[]>)this.RequestAPIMethod("API_AddXferFile"); |
@@ -1318,6 +1320,15 @@ namespace OpenSim.Region.Environment.Scenes | |||
1318 | } | 1320 | } |
1319 | } | 1321 | } |
1320 | 1322 | ||
1323 | public LLUUID MakeHttpRequest(string url, string type, string body) | ||
1324 | { | ||
1325 | if (m_httpRequestModule != null) | ||
1326 | { | ||
1327 | return m_httpRequestModule.MakeHttpRequest(url, type, body); | ||
1328 | } | ||
1329 | return LLUUID.Zero; | ||
1330 | } | ||
1331 | |||
1321 | #region Script Engine | 1332 | #region Script Engine |
1322 | private List<OpenSim.Region.Environment.Scenes.Scripting.ScriptEngineInterface> ScriptEngines = new List<OpenSim.Region.Environment.Scenes.Scripting.ScriptEngineInterface>(); | 1333 | private List<OpenSim.Region.Environment.Scenes.Scripting.ScriptEngineInterface> ScriptEngines = new List<OpenSim.Region.Environment.Scenes.Scripting.ScriptEngineInterface>(); |
1323 | public void AddScriptEngine(OpenSim.Region.Environment.Scenes.Scripting.ScriptEngineInterface ScriptEngine, LogBase m_logger) | 1334 | public void AddScriptEngine(OpenSim.Region.Environment.Scenes.Scripting.ScriptEngineInterface ScriptEngine, LogBase m_logger) |