diff options
Diffstat (limited to 'OpenSim/Region/UserStatistics/Updater_distributor.cs')
-rw-r--r-- | OpenSim/Region/UserStatistics/Updater_distributor.cs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/OpenSim/Region/UserStatistics/Updater_distributor.cs b/OpenSim/Region/UserStatistics/Updater_distributor.cs new file mode 100644 index 0000000..4d571fa --- /dev/null +++ b/OpenSim/Region/UserStatistics/Updater_distributor.cs | |||
@@ -0,0 +1,35 @@ | |||
1 | using System; | ||
2 | using System.IO; | ||
3 | using System.Collections; | ||
4 | using System.Collections.Generic; | ||
5 | using System.Text; | ||
6 | using OpenSim.Framework; | ||
7 | |||
8 | namespace OpenSim.Region.UserStatistics | ||
9 | { | ||
10 | public class Updater_distributor : IStatsController | ||
11 | { | ||
12 | private string updaterjs = string.Empty; | ||
13 | |||
14 | |||
15 | public Hashtable ProcessModel(Hashtable pParams) | ||
16 | { | ||
17 | Hashtable pResult = new Hashtable(); | ||
18 | if (updaterjs.Length == 0) | ||
19 | { | ||
20 | StreamReader fs = new StreamReader(new FileStream(Util.dataDir() + "/data/updater.js", FileMode.Open)); | ||
21 | updaterjs = fs.ReadToEnd(); | ||
22 | fs.Close(); | ||
23 | fs.Dispose(); | ||
24 | } | ||
25 | pResult["js"] = updaterjs; | ||
26 | return pResult; | ||
27 | } | ||
28 | |||
29 | public string RenderView(Hashtable pModelResult) | ||
30 | { | ||
31 | return pModelResult["js"].ToString(); | ||
32 | } | ||
33 | |||
34 | } | ||
35 | } \ No newline at end of file | ||