aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorDiva Canto2010-11-02 12:05:24 -0700
committerDiva Canto2010-11-02 12:05:24 -0700
commit9f5ab3b965b1a3324918b7b2267c24709d42919b (patch)
tree48f1a86e597cf22289442c148946a07277e72ec9 /OpenSim/Region/Application
parentThanks Snoopy for a patch that addresses Mantis #0005165: osSetDynamicTexture... (diff)
downloadopensim-SC_OLD-9f5ab3b965b1a3324918b7b2267c24709d42919b.zip
opensim-SC_OLD-9f5ab3b965b1a3324918b7b2267c24709d42919b.tar.gz
opensim-SC_OLD-9f5ab3b965b1a3324918b7b2267c24709d42919b.tar.bz2
opensim-SC_OLD-9f5ab3b965b1a3324918b7b2267c24709d42919b.tar.xz
Old deserialization can't deal with commas in flag fields. Making use of -version option on save oar command. Bumped archives version to 0.5; version < 0.5 generates flag fields without commas. Everything else is identical.
Diffstat (limited to 'OpenSim/Region/Application')
-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..f80cb34 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -264,9 +264,10 @@ 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 [-v|version=N] [<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 "-v|version=N generates scene objects as per older versions of the serialization (e.g. -v=0)" + Environment.NewLine
270 + "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.", 271 + " If this is not given then the oar is saved to region.oar in the current directory.",
271 SaveOar); 272 SaveOar);
272 273