diff options
-rw-r--r-- | CONTRIBUTORS.txt | 1 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/World/Archiver/ArchiverModule.cs | 10 | ||||
-rw-r--r-- | bin/NDesk.Options.dll | bin | 0 -> 22016 bytes | |||
-rw-r--r-- | prebuild.xml | 1 |
4 files changed, 11 insertions, 1 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index ee263a1..8744a08 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt | |||
@@ -158,6 +158,7 @@ This software uses components from the following developers: | |||
158 | * Nini (http://nini.sourceforge.net/) | 158 | * Nini (http://nini.sourceforge.net/) |
159 | * log4net (http://logging.apache.org/log4net/) | 159 | * log4net (http://logging.apache.org/log4net/) |
160 | * GlynnTucker.Cache (http://gtcache.sourceforge.net/) | 160 | * GlynnTucker.Cache (http://gtcache.sourceforge.net/) |
161 | * NDesk.Options 0.2.1 (http://www.ndesk.org/Options) | ||
161 | 162 | ||
162 | Some plugins are based on Cable Beach | 163 | Some plugins are based on Cable Beach |
163 | Cable Beach is Copyright (c) 2008 Intel Corporation | 164 | Cable Beach is Copyright (c) 2008 Intel Corporation |
diff --git a/OpenSim/Region/CoreModules/World/Archiver/ArchiverModule.cs b/OpenSim/Region/CoreModules/World/Archiver/ArchiverModule.cs index 181f4c6..98fdec3 100644 --- a/OpenSim/Region/CoreModules/World/Archiver/ArchiverModule.cs +++ b/OpenSim/Region/CoreModules/World/Archiver/ArchiverModule.cs | |||
@@ -26,9 +26,11 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
29 | using System.IO; | 30 | using System.IO; |
30 | using System.Reflection; | 31 | using System.Reflection; |
31 | using log4net; | 32 | using log4net; |
33 | using NDesk.Options; | ||
32 | using Nini.Config; | 34 | using Nini.Config; |
33 | using OpenSim.Region.Framework.Interfaces; | 35 | using OpenSim.Region.Framework.Interfaces; |
34 | using OpenSim.Region.Framework.Scenes; | 36 | using OpenSim.Region.Framework.Scenes; |
@@ -91,7 +93,13 @@ namespace OpenSim.Region.CoreModules.World.Archiver | |||
91 | /// <param name="cmdparams"></param> | 93 | /// <param name="cmdparams"></param> |
92 | public void HandleLoadOarConsoleCommand(string module, string[] cmdparams) | 94 | public void HandleLoadOarConsoleCommand(string module, string[] cmdparams) |
93 | { | 95 | { |
94 | if (cmdparams.Length > 2) | 96 | OptionSet options = new OptionSet() {}; |
97 | List<string> mainParams = options.Parse(cmdparams); | ||
98 | |||
99 | foreach (string param in mainParams) | ||
100 | m_log.DebugFormat("Found param [{0}]", param); | ||
101 | |||
102 | if (mainParams.Count > 2) | ||
95 | { | 103 | { |
96 | DearchiveRegion(cmdparams[2]); | 104 | DearchiveRegion(cmdparams[2]); |
97 | } | 105 | } |
diff --git a/bin/NDesk.Options.dll b/bin/NDesk.Options.dll new file mode 100644 index 0000000..df45878 --- /dev/null +++ b/bin/NDesk.Options.dll | |||
Binary files differ | |||
diff --git a/prebuild.xml b/prebuild.xml index 26535fb..ad06938 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -1596,6 +1596,7 @@ | |||
1596 | <Reference name="System.Xml"/> | 1596 | <Reference name="System.Xml"/> |
1597 | <Reference name="System.Drawing"/> | 1597 | <Reference name="System.Drawing"/> |
1598 | <Reference name="System.Web"/> | 1598 | <Reference name="System.Web"/> |
1599 | <Reference name="NDesk.Options"/> | ||
1599 | <Reference name="OpenMetaverseTypes.dll"/> | 1600 | <Reference name="OpenMetaverseTypes.dll"/> |
1600 | <Reference name="OpenMetaverse.StructuredData.dll"/> | 1601 | <Reference name="OpenMetaverse.StructuredData.dll"/> |
1601 | <Reference name="OpenMetaverse.dll"/> | 1602 | <Reference name="OpenMetaverse.dll"/> |