diff options
author | Jonathan Freedman | 2010-12-05 11:49:15 -0800 |
---|---|---|
committer | Jonathan Freedman | 2010-12-05 11:49:15 -0800 |
commit | 45cd2e3ef93cc8ab880cb5b1742e33d441e7d01a (patch) | |
tree | 0351fb2c756a46d522fe41798c3969e020a3258d /OpenSim/Region/Application | |
parent | Merge branch 'master-core' into mantis5110 (diff) | |
parent | Merge branch 'master' of /var/git/opensim/ (diff) | |
download | opensim-SC_OLD-45cd2e3ef93cc8ab880cb5b1742e33d441e7d01a.zip opensim-SC_OLD-45cd2e3ef93cc8ab880cb5b1742e33d441e7d01a.tar.gz opensim-SC_OLD-45cd2e3ef93cc8ab880cb5b1742e33d441e7d01a.tar.bz2 opensim-SC_OLD-45cd2e3ef93cc8ab880cb5b1742e33d441e7d01a.tar.xz |
Merge branch 'master-core' into mantis5110
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 6 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 6127c2d..ae2d836 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -265,10 +265,10 @@ namespace OpenSim | |||
265 | LoadOar); | 265 | LoadOar); |
266 | 266 | ||
267 | m_console.Commands.AddCommand("region", false, "save oar", | 267 | m_console.Commands.AddCommand("region", false, "save oar", |
268 | "save oar [-v|--version=N] [-p|--profile=url] [<OAR path>]", | 268 | "save oar [-v|--version=<N>] [-p|--profile=<url>] [<OAR path>]", |
269 | "Save a region's data to an OAR archive.", | 269 | "Save a region's data to an OAR archive.", |
270 | "-v|--version=N generates scene objects as per older versions of the serialization (e.g. -v=0)" + Environment.NewLine | 270 | "-v|--version=<N> generates scene objects as per older versions of the serialization (e.g. -v=0)" + Environment.NewLine |
271 | + "-p|--profile=url adds the url of the profile service to the saved user information" + Environment.NewLine | 271 | + "-p|--profile=<url> adds the url of the profile service to the saved user information" + Environment.NewLine |
272 | + "The OAR path must be a filesystem path." | 272 | + "The OAR path must be a filesystem path." |
273 | + " If this is not given then the oar is saved to region.oar in the current directory.", | 273 | + " If this is not given then the oar is saved to region.oar in the current directory.", |
274 | SaveOar); | 274 | SaveOar); |
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 904a50c..1652b82 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -352,13 +352,13 @@ namespace OpenSim | |||
352 | m_moduleLoader.InitialiseSharedModules(scene); | 352 | m_moduleLoader.InitialiseSharedModules(scene); |
353 | 353 | ||
354 | // Use this in the future, the line above will be deprecated soon | 354 | // Use this in the future, the line above will be deprecated soon |
355 | m_log.Info("[MODULES]: Loading Region's modules (new style)"); | 355 | m_log.Info("[REGIONMODULES]: Loading Region's modules (new style)"); |
356 | IRegionModulesController controller; | 356 | IRegionModulesController controller; |
357 | if (ApplicationRegistry.TryGet(out controller)) | 357 | if (ApplicationRegistry.TryGet(out controller)) |
358 | { | 358 | { |
359 | controller.AddRegionToModules(scene); | 359 | controller.AddRegionToModules(scene); |
360 | } | 360 | } |
361 | else m_log.Error("[MODULES]: The new RegionModulesController is missing..."); | 361 | else m_log.Error("[REGIONMODULES]: The new RegionModulesController is missing..."); |
362 | 362 | ||
363 | scene.SetModuleInterfaces(); | 363 | scene.SetModuleInterfaces(); |
364 | 364 | ||