aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-07-01 00:24:30 +0100
committerJustin Clark-Casey (justincc)2010-07-26 23:34:17 +0100
commit701f39c8c256d77669fc88f73deb5217a785d0d6 (patch)
treee5a1710d6acd36e7b0b6ee1a38b171cb14dfa349 /OpenSim/Framework/Servers/HttpServer
parentRegister ObjectMedia and ObjectMediaNavigate capabilities from moap module. (diff)
downloadopensim-SC_OLD-701f39c8c256d77669fc88f73deb5217a785d0d6.zip
opensim-SC_OLD-701f39c8c256d77669fc88f73deb5217a785d0d6.tar.gz
opensim-SC_OLD-701f39c8c256d77669fc88f73deb5217a785d0d6.tar.bz2
opensim-SC_OLD-701f39c8c256d77669fc88f73deb5217a785d0d6.tar.xz
do a whole load of crappy hacking to get cubes to display google.com
currently, for smoe reason the page only appears when you click a face. also, actually navigating anywhere always snaps you back to the google search box, for some unknown reason you can still change the url and normal navigation will work again
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index 8123f2f..f85cb57 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -362,7 +362,7 @@ namespace OpenSim.Framework.Servers.HttpServer
362 string path = request.RawUrl; 362 string path = request.RawUrl;
363 string handlerKey = GetHandlerKey(request.HttpMethod, path); 363 string handlerKey = GetHandlerKey(request.HttpMethod, path);
364 364
365 //m_log.DebugFormat("[BASE HTTP SERVER]: Handling {0} request for {1}", request.HttpMethod, path); 365 m_log.DebugFormat("[BASE HTTP SERVER]: Handling {0} request for {1}", request.HttpMethod, path);
366 366
367 if (TryGetStreamHandler(handlerKey, out requestHandler)) 367 if (TryGetStreamHandler(handlerKey, out requestHandler))
368 { 368 {