aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs
diff options
context:
space:
mode:
authorlbsa712009-05-08 06:11:44 +0000
committerlbsa712009-05-08 06:11:44 +0000
commit8ac73be9178ac9b7445534522f5b574df29fa560 (patch)
tree04307ff1fa089c38e50d684aa996e1fd2b449e1c /OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs
parentThanks lulurun for a patch which addresses Mantis #3599: Exceptions when Asse... (diff)
downloadopensim-SC_OLD-8ac73be9178ac9b7445534522f5b574df29fa560.zip
opensim-SC_OLD-8ac73be9178ac9b7445534522f5b574df29fa560.tar.gz
opensim-SC_OLD-8ac73be9178ac9b7445534522f5b574df29fa560.tar.bz2
opensim-SC_OLD-8ac73be9178ac9b7445534522f5b574df29fa560.tar.xz
* Introduced new HttpServer.Tests project
* Split the GetAssetStreamHandler testing into separate tests for BaseRequestHandler * Ignored some gens
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs b/OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs
index da4f9a8..c47a44a 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs
@@ -75,5 +75,12 @@ namespace OpenSim.Framework.Servers.HttpServer
75 75
76 return path.StartsWith(Path); 76 return path.StartsWith(Path);
77 } 77 }
78
79 public string[] SplitParams(string path)
80 {
81 string param = GetParam(path);
82
83 return param.Split(new char[] { '/', '?', '&' }, StringSplitOptions.RemoveEmptyEntries);
84 }
78 } 85 }
79} 86}