aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/General/Configuration/Interfaces
diff options
context:
space:
mode:
authormingchen2007-07-23 19:30:33 +0000
committermingchen2007-07-23 19:30:33 +0000
commit87bddd32dfdb6ab43ef21703053935d3cda69c51 (patch)
tree70d1beaf870770d9180756ae74bd77d3376ec9fb /OpenSim/Framework/General/Configuration/Interfaces
parentApplied makomk 's patch from issue #219. (diff)
downloadopensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.zip
opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.tar.gz
opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.tar.bz2
opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.tar.xz
*Added configuration plugin (OpenSim.Framework.Configuration.HTTP.dll) that fetches a file from a remote server
*Right now, values are not saved back to the remote server, but that will be changed *Removed some warnings from invalid references that were not used anyways
Diffstat (limited to 'OpenSim/Framework/General/Configuration/Interfaces')
-rw-r--r--OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs b/OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs
index 5a5a20e..ceccd04 100644
--- a/OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs
+++ b/OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs
@@ -31,6 +31,7 @@ namespace OpenSim.Framework.Configuration.Interfaces
31 { 31 {
32 void SetFileName(string fileName); 32 void SetFileName(string fileName);
33 void LoadData(); 33 void LoadData();
34 void LoadDataFromString(string data);
34 string GetAttribute(string attributeName); 35 string GetAttribute(string attributeName);
35 bool SetAttribute(string attributeName, string attributeValue); 36 bool SetAttribute(string attributeName, string attributeValue);
36 void Commit(); 37 void Commit();