diff options
author | Justin Clarke Casey | 2009-03-27 18:13:34 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-03-27 18:13:34 +0000 |
commit | 561f24156476041bdcd2ef2fdccd296a4127d0b0 (patch) | |
tree | d06fa3bbff0f6755ff022d4d761ec1acda25b48c /OpenSim/Framework | |
parent | * Also temporarily disable T032_CrossAttachments() since this relies on the e... (diff) | |
download | opensim-SC_OLD-561f24156476041bdcd2ef2fdccd296a4127d0b0.zip opensim-SC_OLD-561f24156476041bdcd2ef2fdccd296a4127d0b0.tar.gz opensim-SC_OLD-561f24156476041bdcd2ef2fdccd296a4127d0b0.tar.bz2 opensim-SC_OLD-561f24156476041bdcd2ef2fdccd296a4127d0b0.tar.xz |
* minor: move RegionSettingsSerializer into OpenSim.Framework.Serialization
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Serialization/External/RegionSettingsSerializer.cs (renamed from OpenSim/Region/CoreModules/World/Archiver/RegionSettingsSerializer.cs) | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/Region/CoreModules/World/Archiver/RegionSettingsSerializer.cs b/OpenSim/Framework/Serialization/External/RegionSettingsSerializer.cs index 799dcb9..3ee9e1b 100644 --- a/OpenSim/Region/CoreModules/World/Archiver/RegionSettingsSerializer.cs +++ b/OpenSim/Framework/Serialization/External/RegionSettingsSerializer.cs | |||
@@ -31,16 +31,13 @@ using System.Xml; | |||
31 | using OpenMetaverse; | 31 | using OpenMetaverse; |
32 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
33 | 33 | ||
34 | namespace OpenSim.Region.CoreModules.World.Archiver | 34 | namespace OpenSim.Framework.Serialization.External |
35 | { | 35 | { |
36 | /// <summary> | 36 | /// <summary> |
37 | /// Serialize and deserialize region settings for an archive file format. | 37 | /// Serialize and deserialize region settings for an archive file format. |
38 | /// </summary> | 38 | /// </summary> |
39 | /// We didn't simply use automatic .NET serializagion for OpenSim.Framework.RegionSettings since this is really | 39 | /// We didn't simply use automatic .NET serializagion for OpenSim.Framework.RegionSettings since this is really |
40 | /// a file format rather than an object serialization. | 40 | /// a file format rather than an object serialization. |
41 | /// TODO: However, we could still have used separate non-framework classes here to read and write the xml | ||
42 | /// automatically rather than laboriously doing it by hand using XmlTextReader and Writer. Should switch to this | ||
43 | /// in the future. | ||
44 | public class RegionSettingsSerializer | 41 | public class RegionSettingsSerializer |
45 | { | 42 | { |
46 | protected static ASCIIEncoding m_asciiEncoding = new ASCIIEncoding(); | 43 | protected static ASCIIEncoding m_asciiEncoding = new ASCIIEncoding(); |