diff options
author | Teravus Ovares | 2009-01-08 22:01:57 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-01-08 22:01:57 +0000 |
commit | fcc3325f3bbeff204d7e5d779fcd8875d6dd4e10 (patch) | |
tree | f80e41ae6e508bcb8ec32c24d3e6f8285756cf7b /OpenSim/Region | |
parent | * Establish placeholder for future TextureSender tests (diff) | |
download | opensim-SC_OLD-fcc3325f3bbeff204d7e5d779fcd8875d6dd4e10.zip opensim-SC_OLD-fcc3325f3bbeff204d7e5d779fcd8875d6dd4e10.tar.gz opensim-SC_OLD-fcc3325f3bbeff204d7e5d779fcd8875d6dd4e10.tar.bz2 opensim-SC_OLD-fcc3325f3bbeff204d7e5d779fcd8875d6dd4e10.tar.xz |
* Adds the variables passed to the hashtable BaseHttpServer passes in.
* Null check on Sessions_report.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/UserStatistics/Sessions_Report.cs | 26 | ||||
-rw-r--r-- | OpenSim/Region/UserStatistics/WebStatsModule.cs | 12 |
2 files changed, 25 insertions, 13 deletions
diff --git a/OpenSim/Region/UserStatistics/Sessions_Report.cs b/OpenSim/Region/UserStatistics/Sessions_Report.cs index ea327be..7a1c5b4 100644 --- a/OpenSim/Region/UserStatistics/Sessions_Report.cs +++ b/OpenSim/Region/UserStatistics/Sessions_Report.cs | |||
@@ -53,27 +53,31 @@ namespace OpenSim.Region.UserStatistics | |||
53 | List<SessionList> lstSessions = new List<SessionList>(); | 53 | List<SessionList> lstSessions = new List<SessionList>(); |
54 | Hashtable requestvars = (Hashtable) pParams["RequestVars"]; | 54 | Hashtable requestvars = (Hashtable) pParams["RequestVars"]; |
55 | 55 | ||
56 | |||
56 | string puserUUID = string.Empty; | 57 | string puserUUID = string.Empty; |
57 | string clientVersionString = string.Empty; | 58 | string clientVersionString = string.Empty; |
58 | int queryparams = 0; | 59 | int queryparams = 0; |
59 | 60 | ||
60 | if (requestvars.ContainsKey("UserID")) | 61 | if (requestvars != null) |
61 | { | 62 | { |
62 | UUID testUUID = UUID.Zero; | 63 | if (requestvars.ContainsKey("UserID")) |
63 | if (UUID.TryParse(requestvars["UserID"].ToString(), out testUUID)) | ||
64 | { | 64 | { |
65 | puserUUID = requestvars["UserID"].ToString(); | 65 | UUID testUUID = UUID.Zero; |
66 | 66 | if (UUID.TryParse(requestvars["UserID"].ToString(), out testUUID)) | |
67 | { | ||
68 | puserUUID = requestvars["UserID"].ToString(); | ||
69 | |||
70 | } | ||
67 | } | 71 | } |
68 | } | ||
69 | 72 | ||
70 | if (requestvars.ContainsKey("VersionString")) | 73 | if (requestvars.ContainsKey("VersionString")) |
71 | { | 74 | { |
72 | UUID testUUID = UUID.Zero; | 75 | UUID testUUID = UUID.Zero; |
73 | 76 | ||
74 | clientVersionString = requestvars["VersionString"].ToString(); | 77 | clientVersionString = requestvars["VersionString"].ToString(); |
75 | 78 | ||
76 | 79 | ||
80 | } | ||
77 | } | 81 | } |
78 | 82 | ||
79 | lock (dbConn) | 83 | lock (dbConn) |
diff --git a/OpenSim/Region/UserStatistics/WebStatsModule.cs b/OpenSim/Region/UserStatistics/WebStatsModule.cs index efea515..cb3b292 100644 --- a/OpenSim/Region/UserStatistics/WebStatsModule.cs +++ b/OpenSim/Region/UserStatistics/WebStatsModule.cs | |||
@@ -203,8 +203,16 @@ namespace OpenSim.Region.UserStatistics | |||
203 | IStatsController rep = reports[regpath]; | 203 | IStatsController rep = reports[regpath]; |
204 | Hashtable repParams = new Hashtable(); | 204 | Hashtable repParams = new Hashtable(); |
205 | 205 | ||
206 | repParams["RequestVars"] = request["requestvars"]; | 206 | if (request.ContainsKey("requestvars")) |
207 | repParams["QueryStringKeys"] = request["querystringkeys"]; | 207 | repParams["RequestVars"] = request["requestvars"]; |
208 | else | ||
209 | repParams["RequestVars"] = new Hashtable(); | ||
210 | |||
211 | if (request.ContainsKey("querystringkeys")) | ||
212 | repParams["QueryStringKeys"] = request["querystringkeys"]; | ||
213 | else | ||
214 | repParams["QueryStringKeys"] = new string[0]; | ||
215 | |||
208 | 216 | ||
209 | repParams["DatabaseConnection"] = dbConn; | 217 | repParams["DatabaseConnection"] = dbConn; |
210 | repParams["Scenes"] = m_scene; | 218 | repParams["Scenes"] = m_scene; |