aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ConfigSettings.cs
diff options
context:
space:
mode:
authorMelanie Thielker2009-05-18 23:18:04 +0000
committerMelanie Thielker2009-05-18 23:18:04 +0000
commit23d902be42fd6d554a9098936d501609fc6e5315 (patch)
tree1830b906665ffa34b3f7c085e28d87ee16bf4c9f /OpenSim/Framework/ConfigSettings.cs
parentBug fix and config rename. (diff)
downloadopensim-SC_OLD-23d902be42fd6d554a9098936d501609fc6e5315.zip
opensim-SC_OLD-23d902be42fd6d554a9098936d501609fc6e5315.tar.gz
opensim-SC_OLD-23d902be42fd6d554a9098936d501609fc6e5315.tar.bz2
opensim-SC_OLD-23d902be42fd6d554a9098936d501609fc6e5315.tar.xz
Remove the old asset cache and local services and the configurations for them
Diffstat (limited to 'OpenSim/Framework/ConfigSettings.cs')
-rw-r--r--OpenSim/Framework/ConfigSettings.cs52
1 files changed, 0 insertions, 52 deletions
diff --git a/OpenSim/Framework/ConfigSettings.cs b/OpenSim/Framework/ConfigSettings.cs
index 77b05c8..93efffa 100644
--- a/OpenSim/Framework/ConfigSettings.cs
+++ b/OpenSim/Framework/ConfigSettings.cs
@@ -108,14 +108,6 @@ namespace OpenSim.Framework
108 set { m_standaloneInventoryPlugin = value; } 108 set { m_standaloneInventoryPlugin = value; }
109 } 109 }
110 110
111 private string m_standaloneAssetPlugin;
112
113 public string StandaloneAssetPlugin
114 {
115 get { return m_standaloneAssetPlugin; }
116 set { m_standaloneAssetPlugin = value; }
117 }
118
119 private string m_standaloneUserPlugin; 111 private string m_standaloneUserPlugin;
120 112
121 public string StandaloneUserPlugin 113 public string StandaloneUserPlugin
@@ -132,14 +124,6 @@ namespace OpenSim.Framework
132 set { m_standaloneInventorySource = value; } 124 set { m_standaloneInventorySource = value; }
133 } 125 }
134 126
135 private string m_standaloneAssetSource;
136
137 public string StandaloneAssetSource
138 {
139 get { return m_standaloneAssetSource; }
140 set { m_standaloneAssetSource = value; }
141 }
142
143 private string m_standaloneUserSource; 127 private string m_standaloneUserSource;
144 128
145 public string StandaloneUserSource 129 public string StandaloneUserSource
@@ -148,22 +132,6 @@ namespace OpenSim.Framework
148 set { m_standaloneUserSource = value; } 132 set { m_standaloneUserSource = value; }
149 } 133 }
150 134
151 private string m_assetStorage = "local";
152
153 public string AssetStorage
154 {
155 get { return m_assetStorage; }
156 set { m_assetStorage = value; }
157 }
158
159 private string m_assetCache;
160
161 public string AssetCache
162 {
163 get { return m_assetCache; }
164 set { m_assetCache = value; }
165 }
166
167 protected string m_storageConnectionString; 135 protected string m_storageConnectionString;
168 136
169 public string StorageConnectionString 137 public string StorageConnectionString
@@ -180,14 +148,6 @@ namespace OpenSim.Framework
180 set { m_estateConnectionString = value; } 148 set { m_estateConnectionString = value; }
181 } 149 }
182 150
183 protected bool m_dumpAssetsToFile;
184
185 public bool DumpAssetsToFile
186 {
187 get { return m_dumpAssetsToFile; }
188 set { m_dumpAssetsToFile = value; }
189 }
190
191 protected string m_librariesXMLFile; 151 protected string m_librariesXMLFile;
192 public string LibrariesXMLFile 152 public string LibrariesXMLFile
193 { 153 {
@@ -200,18 +160,6 @@ namespace OpenSim.Framework
200 m_librariesXMLFile = value; 160 m_librariesXMLFile = value;
201 } 161 }
202 } 162 }
203 protected string m_assetSetsXMLFile;
204 public string AssetSetsXMLFile
205 {
206 get
207 {
208 return m_assetSetsXMLFile;
209 }
210 set
211 {
212 m_assetSetsXMLFile = value;
213 }
214 }
215 163
216 public const uint DefaultAssetServerHttpPort = 8003; 164 public const uint DefaultAssetServerHttpPort = 8003;
217 public const uint DefaultRegionHttpPort = 9000; 165 public const uint DefaultRegionHttpPort = 9000;