diff options
author | Teravus Ovares | 2009-05-09 05:21:56 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-05-09 05:21:56 +0000 |
commit | dac793ea47a5ec370f86dd54b624de8510dc124f (patch) | |
tree | 862e4bd25ff423ec357c54b752cf1b97c6d434d3 /OpenSim | |
parent | Make remote assets work through the new server system (diff) | |
download | opensim-SC_OLD-dac793ea47a5ec370f86dd54b624de8510dc124f.zip opensim-SC_OLD-dac793ea47a5ec370f86dd54b624de8510dc124f.tar.gz opensim-SC_OLD-dac793ea47a5ec370f86dd54b624de8510dc124f.tar.bz2 opensim-SC_OLD-dac793ea47a5ec370f86dd54b624de8510dc124f.tar.xz |
* Break out the SampleMoneyModule to a new namespace
* Create the OpenSim.Region.ReplaceableModules namespace for modules that we intend to have people replace (see readme)
* Create the OpenSim.Region.ReplaceableModules.MoneyModule namespace
* Put our current Sample MoneyModule in this namespace. (more modifications here next commit)
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ReplaceableModules/MoneyModule/Resources/MoneyModulePlugin.addin.xml | 8 | ||||
-rw-r--r-- | OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs (renamed from OpenSim/Region/CoreModules/Avatar/Currency/SampleMoney/SampleMoneyModule.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Region/ReplaceableModules/README.txt | 5 |
3 files changed, 14 insertions, 1 deletions
diff --git a/OpenSim/Region/ReplaceableModules/MoneyModule/Resources/MoneyModulePlugin.addin.xml b/OpenSim/Region/ReplaceableModules/MoneyModule/Resources/MoneyModulePlugin.addin.xml new file mode 100644 index 0000000..a25f297 --- /dev/null +++ b/OpenSim/Region/ReplaceableModules/MoneyModule/Resources/MoneyModulePlugin.addin.xml | |||
@@ -0,0 +1,8 @@ | |||
1 | <Addin id="OpenSim.Region.ReplaceableModules.MoneyModule" version="0.2"> | ||
2 | <Runtime> | ||
3 | <Import assembly="OpenSim.Region.ReplaceableModules.MoneyModule.dll"/> | ||
4 | </Runtime> | ||
5 | <Dependencies> | ||
6 | <Addin id="OpenSim" version="0.5" /> | ||
7 | </Dependencies> | ||
8 | </Addin> \ No newline at end of file | ||
diff --git a/OpenSim/Region/CoreModules/Avatar/Currency/SampleMoney/SampleMoneyModule.cs b/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs index ea4a785..7d79102 100644 --- a/OpenSim/Region/CoreModules/Avatar/Currency/SampleMoney/SampleMoneyModule.cs +++ b/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs | |||
@@ -42,7 +42,7 @@ using OpenSim.Framework.Servers.HttpServer; | |||
42 | using OpenSim.Region.Framework.Interfaces; | 42 | using OpenSim.Region.Framework.Interfaces; |
43 | using OpenSim.Region.Framework.Scenes; | 43 | using OpenSim.Region.Framework.Scenes; |
44 | 44 | ||
45 | namespace OpenSim.Region.CoreModules.Avatar.Currency.SampleMoney | 45 | namespace OpenSim.Region.ReplaceableModules.MoneyModule |
46 | { | 46 | { |
47 | /// <summary> | 47 | /// <summary> |
48 | /// Demo Economy/Money Module. This is not a production quality money/economy module! | 48 | /// Demo Economy/Money Module. This is not a production quality money/economy module! |
diff --git a/OpenSim/Region/ReplaceableModules/README.txt b/OpenSim/Region/ReplaceableModules/README.txt new file mode 100644 index 0000000..e8e759b --- /dev/null +++ b/OpenSim/Region/ReplaceableModules/README.txt | |||
@@ -0,0 +1,5 @@ | |||
1 | This folder is for modules that we intend to let users and system admins replace. | ||
2 | |||
3 | This folder should never end up a project. Only subfolders should end up as a project. The idea here is that each folder | ||
4 | will produce a project and a separate .dll assembly for the module that will get picked up by the module loader. | ||
5 | To replace the functionality, you simply replace the .dll with a different one. \ No newline at end of file | ||