diff options
author | David Walter Seikel | 2016-11-03 21:44:39 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-11-03 21:44:39 +1000 |
commit | 134f86e8d5c414409631b25b8c6f0ee45fbd8631 (patch) | |
tree | 216b89d3fb89acfb81be1e440c25c41ab09fa96d /OpenSim/Tools/Configger | |
parent | More changing to production grid. Double oops. (diff) | |
download | opensim-SC-134f86e8d5c414409631b25b8c6f0ee45fbd8631.zip opensim-SC-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.gz opensim-SC-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.bz2 opensim-SC-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.xz |
Initial update to OpenSim 0.8.2.1 source code.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tools/Configger/ConfigurationLoader.cs | 17 | ||||
-rw-r--r-- | OpenSim/Tools/Configger/Main.cs | 5 | ||||
-rw-r--r-- | OpenSim/Tools/Configger/Properties/AssemblyInfo.cs | 4 |
3 files changed, 11 insertions, 15 deletions
diff --git a/OpenSim/Tools/Configger/ConfigurationLoader.cs b/OpenSim/Tools/Configger/ConfigurationLoader.cs index 28bcc99..f1d3649 100644 --- a/OpenSim/Tools/Configger/ConfigurationLoader.cs +++ b/OpenSim/Tools/Configger/ConfigurationLoader.cs | |||
@@ -64,14 +64,13 @@ namespace OpenSim.Tools.Configger | |||
64 | /// <param name="configSettings"></param> | 64 | /// <param name="configSettings"></param> |
65 | /// <param name="networkInfo"></param> | 65 | /// <param name="networkInfo"></param> |
66 | /// <returns>A configuration that gets passed to modules</returns> | 66 | /// <returns>A configuration that gets passed to modules</returns> |
67 | public IConfigSource LoadConfigSettings() | 67 | public IConfigSource LoadConfigSettings(IConfig startupConfig) |
68 | { | 68 | { |
69 | bool iniFileExists = false; | 69 | bool iniFileExists = false; |
70 | 70 | ||
71 | List<string> sources = new List<string>(); | 71 | List<string> sources = new List<string>(); |
72 | 72 | ||
73 | string iniFileName = "OpenSim.ini"; | 73 | string iniFileName = startupConfig.GetString("inifile", Path.Combine(".", "OpenSim.ini")); |
74 | string iniFilePath = Path.Combine(".", iniFileName); | ||
75 | 74 | ||
76 | if (IsUri(iniFileName)) | 75 | if (IsUri(iniFileName)) |
77 | { | 76 | { |
@@ -80,10 +79,10 @@ namespace OpenSim.Tools.Configger | |||
80 | } | 79 | } |
81 | else | 80 | else |
82 | { | 81 | { |
83 | if (File.Exists(iniFilePath)) | 82 | if (File.Exists(iniFileName)) |
84 | { | 83 | { |
85 | if (!sources.Contains(iniFilePath)) | 84 | if (!sources.Contains(iniFileName)) |
86 | sources.Add(iniFilePath); | 85 | sources.Add(iniFileName); |
87 | } | 86 | } |
88 | } | 87 | } |
89 | 88 | ||
@@ -239,10 +238,7 @@ namespace OpenSim.Tools.Configger | |||
239 | config.Set("physics", "OpenDynamicsEngine"); | 238 | config.Set("physics", "OpenDynamicsEngine"); |
240 | config.Set("meshing", "Meshmerizer"); | 239 | config.Set("meshing", "Meshmerizer"); |
241 | config.Set("physical_prim", true); | 240 | config.Set("physical_prim", true); |
242 | config.Set("see_into_this_sim_from_neighbor", true); | ||
243 | config.Set("serverside_object_permissions", true); | 241 | config.Set("serverside_object_permissions", true); |
244 | config.Set("storage_plugin", "OpenSim.Data.SQLite.dll"); | ||
245 | config.Set("storage_connection_string", "URI=file:OpenSim.db,version=3"); | ||
246 | config.Set("storage_prim_inventories", true); | 242 | config.Set("storage_prim_inventories", true); |
247 | config.Set("startup_console_commands_file", String.Empty); | 243 | config.Set("startup_console_commands_file", String.Empty); |
248 | config.Set("shutdown_console_commands_file", String.Empty); | 244 | config.Set("shutdown_console_commands_file", String.Empty); |
@@ -254,6 +250,5 @@ namespace OpenSim.Tools.Configger | |||
254 | 250 | ||
255 | return defaultConfig; | 251 | return defaultConfig; |
256 | } | 252 | } |
257 | |||
258 | } | 253 | } |
259 | } | 254 | } \ No newline at end of file |
diff --git a/OpenSim/Tools/Configger/Main.cs b/OpenSim/Tools/Configger/Main.cs index 61a12e3..d7d918b 100644 --- a/OpenSim/Tools/Configger/Main.cs +++ b/OpenSim/Tools/Configger/Main.cs | |||
@@ -35,15 +35,16 @@ namespace OpenSim.Tools.Configger | |||
35 | public static int Main(string[] args) | 35 | public static int Main(string[] args) |
36 | { | 36 | { |
37 | ArgvConfigSource argvConfig = new ArgvConfigSource(args); | 37 | ArgvConfigSource argvConfig = new ArgvConfigSource(args); |
38 | |||
38 | argvConfig.AddSwitch("Startup", "format", "f"); | 39 | argvConfig.AddSwitch("Startup", "format", "f"); |
40 | argvConfig.AddSwitch("Startup", "inifile"); | ||
39 | 41 | ||
40 | IConfig startupConfig = argvConfig.Configs["Startup"]; | 42 | IConfig startupConfig = argvConfig.Configs["Startup"]; |
41 | 43 | ||
42 | string format = startupConfig.GetString("format", "ini"); | 44 | string format = startupConfig.GetString("format", "ini"); |
43 | 45 | ||
44 | ConfigurationLoader loader = new ConfigurationLoader(); | 46 | ConfigurationLoader loader = new ConfigurationLoader(); |
45 | 47 | IConfigSource s = loader.LoadConfigSettings(startupConfig); | |
46 | IConfigSource s = loader.LoadConfigSettings(); | ||
47 | 48 | ||
48 | if (format == "mysql") | 49 | if (format == "mysql") |
49 | { | 50 | { |
diff --git a/OpenSim/Tools/Configger/Properties/AssemblyInfo.cs b/OpenSim/Tools/Configger/Properties/AssemblyInfo.cs index 62a2f2d..359d854 100644 --- a/OpenSim/Tools/Configger/Properties/AssemblyInfo.cs +++ b/OpenSim/Tools/Configger/Properties/AssemblyInfo.cs | |||
@@ -29,5 +29,5 @@ using System.Runtime.InteropServices; | |||
29 | // Build Number | 29 | // Build Number |
30 | // Revision | 30 | // Revision |
31 | // | 31 | // |
32 | [assembly: AssemblyVersion("0.7.5.*")] | 32 | [assembly: AssemblyVersion("0.8.3.*")] |
33 | [assembly: AssemblyFileVersion("1.0.0.0")] | 33 | |