diff options
author | Charles Krinke | 2009-04-18 21:33:48 +0000 |
---|---|---|
committer | Charles Krinke | 2009-04-18 21:33:48 +0000 |
commit | 659b55905dc7e006ae73f3d569efdf52276aa825 (patch) | |
tree | f7df089ce48fa94895ad113afddc460688cb703b /OpenSim/Region/OptionalModules/Resources | |
parent | Allow reading of notecards by asset ID. (diff) | |
download | opensim-SC_OLD-659b55905dc7e006ae73f3d569efdf52276aa825.zip opensim-SC_OLD-659b55905dc7e006ae73f3d569efdf52276aa825.tar.gz opensim-SC_OLD-659b55905dc7e006ae73f3d569efdf52276aa825.tar.bz2 opensim-SC_OLD-659b55905dc7e006ae73f3d569efdf52276aa825.tar.xz |
Thank you kindly, MCortez, for a patch that:
Added is a patch that adds a rough Groups implementation. This patch allows
the creation, adding and maintaining Groups, Roles and Members. Work has begun
on a very naive implementation of messaging, and minimal support for notifications
{no attachments yet}. Proposals are not yet supported, but are on the to-do list.
This implementation is not active by default, and must be configured in
OpenSim.ini to become active.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Resources')
-rw-r--r-- | OpenSim/Region/OptionalModules/Resources/OptionalModules.addin.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Resources/OptionalModules.addin.xml b/OpenSim/Region/OptionalModules/Resources/OptionalModules.addin.xml new file mode 100644 index 0000000..4795edc --- /dev/null +++ b/OpenSim/Region/OptionalModules/Resources/OptionalModules.addin.xml | |||
@@ -0,0 +1,14 @@ | |||
1 | <Addin id="OpenSim.Region.OptionalModules" version="0.1"> | ||
2 | <Runtime> | ||
3 | <Import assembly="OpenSim.Region.OptionalModules.dll"/> | ||
4 | </Runtime> | ||
5 | |||
6 | <Dependencies> | ||
7 | <Addin id="OpenSim" version="0.5" /> | ||
8 | </Dependencies> | ||
9 | |||
10 | <Extension path = "/OpenSim/RegionModules"> | ||
11 | <RegionModule id="XmlRpcGroups" type="OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups.XmlRpcGroupsModule" /> | ||
12 | <RegionModule id="XmlRpcGroupsMessaging" type="OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups.XmlRpcGroupsMessaging" /> | ||
13 | </Extension> | ||
14 | </Addin> | ||