diff options
author | Justin Clarke Casey | 2008-07-14 20:56:53 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-07-14 20:56:53 +0000 |
commit | 8e3f83b1c892b6e833efd2145f1e58497842303e (patch) | |
tree | a58dcfcda30c96c0a266545833e5093f0fa6dc47 /OpenSim/Region/Application/OpenSim.cs | |
parent | Mantis#1739. Thank you kindly, Grumly57 for an additional patch that: (diff) | |
download | opensim-SC_OLD-8e3f83b1c892b6e833efd2145f1e58497842303e.zip opensim-SC_OLD-8e3f83b1c892b6e833efd2145f1e58497842303e.tar.gz opensim-SC_OLD-8e3f83b1c892b6e833efd2145f1e58497842303e.tar.bz2 opensim-SC_OLD-8e3f83b1c892b6e833efd2145f1e58497842303e.tar.xz |
* Change load-oar/save-oar status to highly experimental.
* See http://opensimulator.org/wiki/OpenSim_Archives for more details.
* These commands can now be used on an experimental basis. save-oar saves the entire current region (prim data, assets, prim inventory items, terrain) to a single tar.gz file.
* load-oar loads an opensim archive and entirely replaces the current region (at the moment).
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 85a443b..0b31834 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -259,13 +259,15 @@ namespace OpenSim | |||
259 | m_console.Notice(" debug scene [scripting] [collision] [physics] - Enable/Disable debug stuff, each can be True/False"); | 259 | m_console.Notice(" debug scene [scripting] [collision] [physics] - Enable/Disable debug stuff, each can be True/False"); |
260 | m_console.Notice("edit-scale [prim name] [x] [y] [z] - resize given prim"); | 260 | m_console.Notice("edit-scale [prim name] [x] [y] [z] - resize given prim"); |
261 | m_console.Notice("export-map [filename] - save image of world map"); | 261 | m_console.Notice("export-map [filename] - save image of world map"); |
262 | m_console.Notice("force-update - force an update of prims in the scene"); | 262 | m_console.Notice("force-update - force an update of prims in the scene"); |
263 | m_console.Notice("load-xml [filename] - load prims from XML (DEPRECATED)"); | ||
264 | m_console.Notice("load-xml2 [filename] - load prims from XML using version 2 format"); | ||
265 | m_console.Notice("restart - disconnects all clients and restarts the sims in the instance."); | 263 | m_console.Notice("restart - disconnects all clients and restarts the sims in the instance."); |
266 | m_console.Notice("remove-region [name] - remove a region"); | 264 | m_console.Notice("remove-region [name] - remove a region"); |
265 | m_console.Notice("load-xml [filename] - load prims from XML (DEPRECATED)"); | ||
267 | m_console.Notice("save-xml [filename] - save prims to XML (DEPRECATED)"); | 266 | m_console.Notice("save-xml [filename] - save prims to XML (DEPRECATED)"); |
268 | m_console.Notice("save-xml2 [filename] - save prims to XML using version 2 format"); | 267 | m_console.Notice("save-xml2 [filename] - save prims to XML using version 2 format"); |
268 | m_console.Notice("load-xml2 [filename] - load prims from XML using version 2 format"); | ||
269 | m_console.Notice("load-oar [filename] - load an OpenSimulator region archive. This replaces everything in the current region."); | ||
270 | m_console.Notice("save-oar [filename] - Save the current region to an OpenSimulator region archive."); | ||
269 | m_console.Notice("script - manually trigger scripts? or script commands?"); | 271 | m_console.Notice("script - manually trigger scripts? or script commands?"); |
270 | m_console.Notice("set-time [x] - set the current scene time phase"); | 272 | m_console.Notice("set-time [x] - set the current scene time phase"); |
271 | m_console.Notice("show assets - show state of asset cache."); | 273 | m_console.Notice("show assets - show state of asset cache."); |
@@ -714,7 +716,7 @@ namespace OpenSim | |||
714 | 716 | ||
715 | protected void LoadOar(string[] cmdparams) | 717 | protected void LoadOar(string[] cmdparams) |
716 | { | 718 | { |
717 | m_log.Error("[CONSOLE]: Don't use me - I haven't yet been sufficiently implemented!"); | 719 | m_log.Warn("[CONSOLE]: Highly experimental functionality. Please don't rely on this."); |
718 | 720 | ||
719 | if (cmdparams.Length > 0) | 721 | if (cmdparams.Length > 0) |
720 | { | 722 | { |
@@ -728,7 +730,7 @@ namespace OpenSim | |||
728 | 730 | ||
729 | protected void SaveOar(string[] cmdparams) | 731 | protected void SaveOar(string[] cmdparams) |
730 | { | 732 | { |
731 | m_log.Error("[CONSOLE]: Don't use me - I haven't yet been sufficiently implemented!"); | 733 | m_log.Warn("[CONSOLE]: Highly experimental functionality. Please don't rely on this."); |
732 | 734 | ||
733 | if (cmdparams.Length > 0) | 735 | if (cmdparams.Length > 0) |
734 | { | 736 | { |