diff options
author | Justin Clark-Casey (justincc) | 2009-09-14 16:57:47 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2009-09-14 16:57:47 +0100 |
commit | 5a64ca4642f00272d7424684d72a7088e4103dec (patch) | |
tree | e16c5be1c6ec6d8c9467c6ca02895be9f5dc499e | |
parent | re-enable load and save iar commands (diff) | |
download | opensim-SC_OLD-5a64ca4642f00272d7424684d72a7088e4103dec.zip opensim-SC_OLD-5a64ca4642f00272d7424684d72a7088e4103dec.tar.gz opensim-SC_OLD-5a64ca4642f00272d7424684d72a7088e4103dec.tar.bz2 opensim-SC_OLD-5a64ca4642f00272d7424684d72a7088e4103dec.tar.xz |
label load and save iar commands as experimental.
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs index 358f17e..00faabb 100644 --- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | |||
@@ -92,12 +92,12 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
92 | scene.AddCommand( | 92 | scene.AddCommand( |
93 | this, "load iar", | 93 | this, "load iar", |
94 | "load iar <first> <last> <inventory path> [<archive path>]", | 94 | "load iar <first> <last> <inventory path> [<archive path>]", |
95 | "Load user inventory archive. EXPERIMENTAL, CURRENTLY DISABLED", HandleLoadInvConsoleCommand); | 95 | "Load user inventory archive. EXPERIMENTAL", HandleLoadInvConsoleCommand); |
96 | 96 | ||
97 | scene.AddCommand( | 97 | scene.AddCommand( |
98 | this, "save iar", | 98 | this, "save iar", |
99 | "save iar <first> <last> <inventory path> [<archive path>]", | 99 | "save iar <first> <last> <inventory path> [<archive path>]", |
100 | "Save user inventory archive. EXPERIMENTAL, CURRENTLY DISABLED", HandleSaveInvConsoleCommand); | 100 | "Save user inventory archive. EXPERIMENTAL", HandleSaveInvConsoleCommand); |
101 | 101 | ||
102 | m_aScene = scene; | 102 | m_aScene = scene; |
103 | } | 103 | } |
@@ -240,6 +240,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
240 | return; | 240 | return; |
241 | } | 241 | } |
242 | 242 | ||
243 | m_log.Info("[INVENTORY ARCHIVER]: PLEASE NOTE THAT THIS FACILITY IS EXPERIMENTAL. BUG REPORTS WELCOME."); | ||
244 | |||
243 | string firstName = cmdparams[2]; | 245 | string firstName = cmdparams[2]; |
244 | string lastName = cmdparams[3]; | 246 | string lastName = cmdparams[3]; |
245 | string invPath = cmdparams[4]; | 247 | string invPath = cmdparams[4]; |
@@ -268,6 +270,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
268 | return; | 270 | return; |
269 | } | 271 | } |
270 | 272 | ||
273 | m_log.Info("[INVENTORY ARCHIVER]: PLEASE NOTE THAT THIS FACILITY IS EXPERIMENTAL. BUG REPORTS WELCOME."); | ||
274 | |||
271 | string firstName = cmdparams[2]; | 275 | string firstName = cmdparams[2]; |
272 | string lastName = cmdparams[3]; | 276 | string lastName = cmdparams[3]; |
273 | string invPath = cmdparams[4]; | 277 | string invPath = cmdparams[4]; |