diff options
author | lbsa71 | 2007-10-30 09:05:31 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-30 09:05:31 +0000 |
commit | 67e12b95ea7b68f4904a7484d77ecfd787d16d0c (patch) | |
tree | 20b00d24c8a7617017960432ec044852e3ad5fa9 /OpenSim/Framework/Configuration/HTTP/RemoteConfigSettings.cs | |
parent | * Deleted .user file (diff) | |
download | opensim-SC-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.zip opensim-SC-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.gz opensim-SC-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.bz2 opensim-SC-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.xz |
* Optimized usings
* Shortened type references
* Removed redundant 'this' qualifier
Diffstat (limited to 'OpenSim/Framework/Configuration/HTTP/RemoteConfigSettings.cs')
-rw-r--r-- | OpenSim/Framework/Configuration/HTTP/RemoteConfigSettings.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenSim/Framework/Configuration/HTTP/RemoteConfigSettings.cs b/OpenSim/Framework/Configuration/HTTP/RemoteConfigSettings.cs index 3ac03bb..332066c 100644 --- a/OpenSim/Framework/Configuration/HTTP/RemoteConfigSettings.cs +++ b/OpenSim/Framework/Configuration/HTTP/RemoteConfigSettings.cs | |||
@@ -26,12 +26,6 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | |||
33 | using OpenSim.Framework; | ||
34 | |||
35 | namespace OpenSim.Framework.Configuration.HTTP | 29 | namespace OpenSim.Framework.Configuration.HTTP |
36 | { | 30 | { |
37 | public class RemoteConfigSettings | 31 | public class RemoteConfigSettings |
@@ -39,24 +33,30 @@ namespace OpenSim.Framework.Configuration.HTTP | |||
39 | private ConfigurationMember configMember; | 33 | private ConfigurationMember configMember; |
40 | 34 | ||
41 | public string baseConfigURL = ""; | 35 | public string baseConfigURL = ""; |
36 | |||
42 | public RemoteConfigSettings(string filename) | 37 | public RemoteConfigSettings(string filename) |
43 | { | 38 | { |
44 | configMember = new ConfigurationMember(filename, "REMOTE CONFIG SETTINGS", loadConfigurationOptions, handleIncomingConfiguration); | 39 | configMember = |
40 | new ConfigurationMember(filename, "REMOTE CONFIG SETTINGS", loadConfigurationOptions, | ||
41 | handleIncomingConfiguration); | ||
45 | configMember.forceConfigurationPluginLibrary("OpenSim.Framework.Configuration.XML.dll"); | 42 | configMember.forceConfigurationPluginLibrary("OpenSim.Framework.Configuration.XML.dll"); |
46 | configMember.performConfigurationRetrieve(); | 43 | configMember.performConfigurationRetrieve(); |
47 | } | 44 | } |
48 | 45 | ||
49 | public void loadConfigurationOptions() | 46 | public void loadConfigurationOptions() |
50 | { | 47 | { |
51 | configMember.addConfigurationOption("base_config_url", ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, "URL Containing Configuration Files", "http://localhost/", false); | 48 | configMember.addConfigurationOption("base_config_url", |
49 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, | ||
50 | "URL Containing Configuration Files", "http://localhost/", false); | ||
52 | } | 51 | } |
52 | |||
53 | public bool handleIncomingConfiguration(string configuration_key, object configuration_result) | 53 | public bool handleIncomingConfiguration(string configuration_key, object configuration_result) |
54 | { | 54 | { |
55 | if (configuration_key == "base_config_url") | 55 | if (configuration_key == "base_config_url") |
56 | { | 56 | { |
57 | baseConfigURL = (string)configuration_result; | 57 | baseConfigURL = (string) configuration_result; |
58 | } | 58 | } |
59 | return true; | 59 | return true; |
60 | } | 60 | } |
61 | } | 61 | } |
62 | } | 62 | } \ No newline at end of file |