diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/HGCommands.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 20 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 5 |
3 files changed, 4 insertions, 23 deletions
diff --git a/OpenSim/Region/Application/HGCommands.cs b/OpenSim/Region/Application/HGCommands.cs index f503db7..7ae161d 100644 --- a/OpenSim/Region/Application/HGCommands.cs +++ b/OpenSim/Region/Application/HGCommands.cs | |||
@@ -42,7 +42,7 @@ namespace OpenSim | |||
42 | { | 42 | { |
43 | public class HGCommands | 43 | public class HGCommands |
44 | { | 44 | { |
45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 45 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | 46 | ||
47 | public static Scene CreateScene(RegionInfo regionInfo, AgentCircuitManager circuitManager, CommunicationsManager m_commsManager, | 47 | public static Scene CreateScene(RegionInfo regionInfo, AgentCircuitManager circuitManager, CommunicationsManager m_commsManager, |
48 | StorageManager storageManager, ModuleLoader m_moduleLoader, ConfigSettings m_configSettings, OpenSimConfigSource m_config, string m_version) | 48 | StorageManager storageManager, ModuleLoader m_moduleLoader, ConfigSettings m_configSettings, OpenSimConfigSource m_config, string m_version) |
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 60c34df..5228e4b 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -232,7 +232,7 @@ namespace OpenSim | |||
232 | "Save named prim to XML2", SavePrimsXml2); | 232 | "Save named prim to XML2", SavePrimsXml2); |
233 | 233 | ||
234 | m_console.Commands.AddCommand("region", false, "load oar", | 234 | m_console.Commands.AddCommand("region", false, "load oar", |
235 | "load oar <oar name>", | 235 | "load oar [--merge] <oar name>", |
236 | "Load a region's data from OAR archive", LoadOar); | 236 | "Load a region's data from OAR archive", LoadOar); |
237 | 237 | ||
238 | m_console.Commands.AddCommand("region", false, "save oar", | 238 | m_console.Commands.AddCommand("region", false, "save oar", |
@@ -1294,14 +1294,7 @@ namespace OpenSim | |||
1294 | { | 1294 | { |
1295 | try | 1295 | try |
1296 | { | 1296 | { |
1297 | if (cmdparams.Length > 2) | 1297 | m_sceneManager.LoadArchiveToCurrentScene(cmdparams); |
1298 | { | ||
1299 | m_sceneManager.LoadArchiveToCurrentScene(cmdparams[2]); | ||
1300 | } | ||
1301 | else | ||
1302 | { | ||
1303 | m_sceneManager.LoadArchiveToCurrentScene(DEFAULT_OAR_BACKUP_FILENAME); | ||
1304 | } | ||
1305 | } | 1298 | } |
1306 | catch (Exception e) | 1299 | catch (Exception e) |
1307 | { | 1300 | { |
@@ -1315,14 +1308,7 @@ namespace OpenSim | |||
1315 | /// <param name="cmdparams"></param> | 1308 | /// <param name="cmdparams"></param> |
1316 | protected void SaveOar(string module, string[] cmdparams) | 1309 | protected void SaveOar(string module, string[] cmdparams) |
1317 | { | 1310 | { |
1318 | if (cmdparams.Length > 2) | 1311 | m_sceneManager.SaveCurrentSceneToArchive(cmdparams); |
1319 | { | ||
1320 | m_sceneManager.SaveCurrentSceneToArchive(cmdparams[2]); | ||
1321 | } | ||
1322 | else | ||
1323 | { | ||
1324 | m_sceneManager.SaveCurrentSceneToArchive(DEFAULT_OAR_BACKUP_FILENAME); | ||
1325 | } | ||
1326 | } | 1312 | } |
1327 | 1313 | ||
1328 | private static string CombineParams(string[] commandParams, int pos) | 1314 | private static string CombineParams(string[] commandParams, int pos) |
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index cc18f1a..391856b 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -75,11 +75,6 @@ namespace OpenSim | |||
75 | /// </value> | 75 | /// </value> |
76 | protected const string DEFAULT_PRIM_BACKUP_FILENAME = "prim-backup.xml"; | 76 | protected const string DEFAULT_PRIM_BACKUP_FILENAME = "prim-backup.xml"; |
77 | 77 | ||
78 | /// <value> | ||
79 | /// The file used to load and save an opensimulator archive if no filename has been specified | ||
80 | /// </value> | ||
81 | protected const string DEFAULT_OAR_BACKUP_FILENAME = "region.oar"; | ||
82 | |||
83 | public ConfigSettings ConfigurationSettings | 78 | public ConfigSettings ConfigurationSettings |
84 | { | 79 | { |
85 | get { return m_configSettings; } | 80 | get { return m_configSettings; } |