aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSim.cs
diff options
context:
space:
mode:
authorDiva Canto2010-10-15 17:27:19 -0700
committerDiva Canto2010-10-15 17:27:19 -0700
commit1499607215aab4994f933a8ed2a54ed037a1f9ba (patch)
treee343f5115c50c8dbae730a15c41a0d62f5b9f74d /OpenSim/Region/Application/OpenSim.cs
parentUPdated the MySql driver to 6.2.4. Also established a much larger MySqlComman... (diff)
downloadopensim-SC_OLD-1499607215aab4994f933a8ed2a54ed037a1f9ba.zip
opensim-SC_OLD-1499607215aab4994f933a8ed2a54ed037a1f9ba.tar.gz
opensim-SC_OLD-1499607215aab4994f933a8ed2a54ed037a1f9ba.tar.bz2
opensim-SC_OLD-1499607215aab4994f933a8ed2a54ed037a1f9ba.tar.xz
Made OARs use the new serialization procedure. (TPs/crossings still on the old one) Added an options argument down the pipeline. For the time being it takes --old-guids as an option to produce <Guid> instead of <UUID>.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index 7a0142f..0c6f476 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -264,10 +264,11 @@ namespace OpenSim
264 LoadOar); 264 LoadOar);
265 265
266 m_console.Commands.AddCommand("region", false, "save oar", 266 m_console.Commands.AddCommand("region", false, "save oar",
267 "save oar [<OAR path>]", 267 "save oar [--old-guids] [<OAR path>]",
268 "Save a region's data to an OAR archive.", 268 "Save a region's data to an OAR archive.",
269 "The OAR path must be a filesystem path." 269 "The OAR path must be a filesystem path."
270 + " If this is not given then the oar is saved to region.oar in the current directory.", 270 + " If this is not given then the oar is saved to region.oar in the current directory." + Environment.NewLine
271 + "--old-guids produces OARs compatible with older (pre 0.7.1) OpenSim versions.",
271 SaveOar); 272 SaveOar);
272 273
273 m_console.Commands.AddCommand("region", false, "edit scale", 274 m_console.Commands.AddCommand("region", false, "edit scale",