From 374ebab5742fda56b148b874d2ead5fb7d13aef9 Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Fri, 3 Aug 2012 23:54:17 +0100 Subject: [PATCH] Strip experimental tag from --publish option of "save oar" region console command --- OpenSim/Region/Application/OpenSim.cs | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 07a975619f..6bbab35ad0 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -294,14 +294,13 @@ namespace OpenSim "save oar [-h|--home=] [--noassets] [--publish] [--perm=] []", "Save a region's data to an OAR archive.", // "-v|--version= generates scene objects as per older versions of the serialization (e.g. -v=0)" + Environment.NewLine - "-h|--home= adds the url of the profile service to the saved user information." + Environment.NewLine - + "--noassets stops assets being saved to the OAR." + Environment.NewLine - + "--publish saves an OAR stripped of owner and last owner information." + Environment.NewLine - + " on reload, the estate owner will be the owner of all objects" + Environment.NewLine - + " this is useful if you're making oars generally available that might be reloaded to the same grid from which you published" + Environment.NewLine - + " this option is EXPERIMENTAL" + Environment.NewLine - + "--perm= stops objects with insufficient permissions from being saved to the OAR." + Environment.NewLine - + " can contain one or more of these characters: \"C\" = Copy, \"T\" = Transfer" + Environment.NewLine + "-h|--home= adds the url of the profile service to the saved user information.\n" + + "--noassets stops assets being saved to the OAR.\n" + + "--publish saves an OAR stripped of owner and last owner information.\n" + + " on reload, the estate owner will be the owner of all objects\n" + + " this is useful if you're making oars generally available that might be reloaded to the same grid from which you published\n" + + "--perm= stops objects with insufficient permissions from being saved to the OAR.\n" + + " can contain one or more of these characters: \"C\" = Copy, \"T\" = Transfer\n" + "The OAR path must be a filesystem path." + " If this is not given then the oar is saved to region.oar in the current directory.", SaveOar);