diff options
author | Michael Cortez | 2009-08-05 14:56:48 -0700 |
---|---|---|
committer | Michael Cortez | 2009-08-05 14:56:48 -0700 |
commit | c73a6ab7e01efd07f68798de8b402343bef12de4 (patch) | |
tree | b8e55dca9d63ce90b6f0a15afd24145c1b240a06 /OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs | |
parent | Fixes mono Add-In references for the OptionalModules add-in so that groups do... (diff) | |
download | opensim-SC_OLD-c73a6ab7e01efd07f68798de8b402343bef12de4.zip opensim-SC_OLD-c73a6ab7e01efd07f68798de8b402343bef12de4.tar.gz opensim-SC_OLD-c73a6ab7e01efd07f68798de8b402343bef12de4.tar.bz2 opensim-SC_OLD-c73a6ab7e01efd07f68798de8b402343bef12de4.tar.xz |
Continue with renaming of Groups module components
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs index 3fd2a85..5ec8de8 100644 --- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs | |||
@@ -57,14 +57,19 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
57 | /// ; To use this module, you must specify the following in your OpenSim.ini | 57 | /// ; To use this module, you must specify the following in your OpenSim.ini |
58 | /// [GROUPS] | 58 | /// [GROUPS] |
59 | /// Enabled = true | 59 | /// Enabled = true |
60 | /// Module = XmlRpcGroups | 60 | /// |
61 | /// XmlRpcServiceURL = http://osflotsam.org/xmlrpc.php | 61 | /// GroupsModule = GroupsModule |
62 | /// XmlRpcMessagingEnabled = true | 62 | /// NoticesEnabled = true |
63 | /// XmlRpcNoticesEnabled = true | 63 | /// DebugEnabled = true |
64 | /// XmlRpcDebugEnabled = true | 64 | /// |
65 | /// XmlRpcServiceReadKey = 1234 | 65 | /// GroupsServicesConnectorModule = XmlRpcGroupsServicesConnector |
66 | /// XmlRpcServiceURL = http://osflotsam.org/xmlrpc.php | ||
67 | /// XmlRpcServiceReadKey = 1234 | ||
66 | /// XmlRpcServiceWriteKey = 1234 | 68 | /// XmlRpcServiceWriteKey = 1234 |
67 | /// | 69 | /// |
70 | /// GroupsMessagingModule = GroupsMessagingModule | ||
71 | /// GroupsMessagingEnabled = true | ||
72 | /// | ||
68 | /// ; Disables HTTP Keep-Alive for Groups Module HTTP Requests, work around for | 73 | /// ; Disables HTTP Keep-Alive for Groups Module HTTP Requests, work around for |
69 | /// ; a problem discovered on some Windows based region servers. Only disable | 74 | /// ; a problem discovered on some Windows based region servers. Only disable |
70 | /// ; if you see a large number (dozens) of the following Exceptions: | 75 | /// ; if you see a large number (dozens) of the following Exceptions: |
@@ -116,7 +121,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
116 | return; | 121 | return; |
117 | } | 122 | } |
118 | 123 | ||
119 | if (groupsConfig.GetString("Module", "Default") != "XmlRpcGroups") | 124 | if (groupsConfig.GetString("Module", "Default") != Name) |
120 | { | 125 | { |
121 | m_groupsEnabled = false; | 126 | m_groupsEnabled = false; |
122 | 127 | ||
@@ -125,8 +130,8 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
125 | 130 | ||
126 | m_log.InfoFormat("[GROUPS]: Initializing {0}", this.Name); | 131 | m_log.InfoFormat("[GROUPS]: Initializing {0}", this.Name); |
127 | 132 | ||
128 | m_groupNoticesEnabled = groupsConfig.GetBoolean("XmlRpcNoticesEnabled", true); | 133 | m_groupNoticesEnabled = groupsConfig.GetBoolean("NoticesEnabled", true); |
129 | m_debugEnabled = groupsConfig.GetBoolean("XmlRpcDebugEnabled", true); | 134 | m_debugEnabled = groupsConfig.GetBoolean("DebugEnabled", true); |
130 | 135 | ||
131 | m_clientRequestIDFlushTimer.Interval = m_clientRequestIDFlushTimeOut; | 136 | m_clientRequestIDFlushTimer.Interval = m_clientRequestIDFlushTimeOut; |
132 | m_clientRequestIDFlushTimer.Elapsed += FlushClientRequestIDInfoCache; | 137 | m_clientRequestIDFlushTimer.Elapsed += FlushClientRequestIDInfoCache; |
@@ -224,7 +229,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
224 | if (!m_groupsEnabled) | 229 | if (!m_groupsEnabled) |
225 | return; | 230 | return; |
226 | 231 | ||
227 | if (m_debugEnabled) m_log.Debug("[GROUPS]: Shutting down XmlRpcGroups module."); | 232 | if (m_debugEnabled) m_log.Debug("[GROUPS]: Shutting down Groups module."); |
228 | 233 | ||
229 | m_clientRequestIDFlushTimer.Stop(); | 234 | m_clientRequestIDFlushTimer.Stop(); |
230 | } | 235 | } |
@@ -236,7 +241,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
236 | 241 | ||
237 | public string Name | 242 | public string Name |
238 | { | 243 | { |
239 | get { return "XmlRpcGroupsModule"; } | 244 | get { return "GroupsModule"; } |
240 | } | 245 | } |
241 | 246 | ||
242 | #endregion | 247 | #endregion |