diff options
author | Jeff Ames | 2007-12-06 17:41:21 +0000 |
---|---|---|
committer | Jeff Ames | 2007-12-06 17:41:21 +0000 |
commit | a47176ee9287cc2802007e9cd1eb15e2a0b04906 (patch) | |
tree | a0ebc88b9a87e7d39e9a315599eb3fdc4c149a93 /OpenSim/Region/Examples | |
parent | * now the throttle timer is stopped whilst processing Queue so that it won't ... (diff) | |
download | opensim-SC_OLD-a47176ee9287cc2802007e9cd1eb15e2a0b04906.zip opensim-SC_OLD-a47176ee9287cc2802007e9cd1eb15e2a0b04906.tar.gz opensim-SC_OLD-a47176ee9287cc2802007e9cd1eb15e2a0b04906.tar.bz2 opensim-SC_OLD-a47176ee9287cc2802007e9cd1eb15e2a0b04906.tar.xz |
more minor cleanup. added some command descriptions to region server help.
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/Program.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/Program.cs b/OpenSim/Region/Examples/SimpleApp/Program.cs index 16dcd7b..a86946e 100644 --- a/OpenSim/Region/Examples/SimpleApp/Program.cs +++ b/OpenSim/Region/Examples/SimpleApp/Program.cs | |||
@@ -48,6 +48,9 @@ namespace SimpleApp | |||
48 | private ModuleLoader m_moduleLoader; | 48 | private ModuleLoader m_moduleLoader; |
49 | private IConfigSource m_config; | 49 | private IConfigSource m_config; |
50 | 50 | ||
51 | private string m_userPlugin = "OpenSim.Framework.Data.SQLite.dll"; | ||
52 | private string m_inventoryPlugin = "OpenSim.Framework.Data.SQLite.dll"; | ||
53 | |||
51 | protected override LogBase CreateLog() | 54 | protected override LogBase CreateLog() |
52 | { | 55 | { |
53 | return new LogBase(null, "SimpleApp", this, true); | 56 | return new LogBase(null, "SimpleApp", this, true); |
@@ -70,11 +73,14 @@ namespace SimpleApp | |||
70 | StartUp(); | 73 | StartUp(); |
71 | 74 | ||
72 | LocalInventoryService inventoryService = new LocalInventoryService(); | 75 | LocalInventoryService inventoryService = new LocalInventoryService(); |
76 | inventoryService.AddPlugin(m_inventoryPlugin); | ||
77 | |||
73 | LocalUserServices userService = | 78 | LocalUserServices userService = |
74 | new LocalUserServices(m_networkServersInfo, m_networkServersInfo.DefaultHomeLocX, | 79 | new LocalUserServices(m_networkServersInfo, m_networkServersInfo.DefaultHomeLocX, |
75 | m_networkServersInfo.DefaultHomeLocY, inventoryService); | 80 | m_networkServersInfo.DefaultHomeLocY, inventoryService); |
81 | userService.AddPlugin(m_userPlugin); | ||
82 | |||
76 | LocalBackEndServices backendService = new LocalBackEndServices(); | 83 | LocalBackEndServices backendService = new LocalBackEndServices(); |
77 | userService.AddPlugin("OpenSim.Framework.Data.SQLite.dll"); | ||
78 | 84 | ||
79 | CommunicationsLocal localComms = | 85 | CommunicationsLocal localComms = |
80 | new CommunicationsLocal(m_networkServersInfo, m_httpServer, m_assetCache, userService, inventoryService, | 86 | new CommunicationsLocal(m_networkServersInfo, m_httpServer, m_assetCache, userService, inventoryService, |