aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-07-01 00:24:30 +0100
committerJustin Clark-Casey (justincc)2010-07-01 00:24:30 +0100
commit94646599f09cf8a4cc930a1150195036134c28b5 (patch)
tree4f354a3065e5d1e6a4f6e535cd338643757c96c3 /OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
parentRegister ObjectMedia and ObjectMediaNavigate capabilities from moap module. (diff)
downloadopensim-SC_OLD-94646599f09cf8a4cc930a1150195036134c28b5.zip
opensim-SC_OLD-94646599f09cf8a4cc930a1150195036134c28b5.tar.gz
opensim-SC_OLD-94646599f09cf8a4cc930a1150195036134c28b5.tar.bz2
opensim-SC_OLD-94646599f09cf8a4cc930a1150195036134c28b5.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 '')
-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 {