aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs
diff options
context:
space:
mode:
authorE. Allen Soard2011-05-07 11:41:22 -0700
committerMelanie2011-05-09 03:14:54 +0100
commit527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc (patch)
tree276abdf2c8142006a2daf7c68c37a0da26c06f9c /OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs
parentIncremental patch to add config options to enable/disable the prim limits mod... (diff)
downloadopensim-SC_OLD-527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc.zip
opensim-SC_OLD-527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc.tar.gz
opensim-SC_OLD-527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc.tar.bz2
opensim-SC_OLD-527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc.tar.xz
Incremental - Just did some cleanup of comments and class name change to clean up from using BareBonesNonShared as a template.
Diffstat (limited to 'OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs')
-rw-r--r--OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs14
1 files changed, 3 insertions, 11 deletions
diff --git a/OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs b/OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs
index dd02bc7..5bafec3 100644
--- a/OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs
+++ b/OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs
@@ -38,21 +38,13 @@ using OpenSim.Region.Framework.Scenes;
38namespace OpenSim.Region.OptionalModules 38namespace OpenSim.Region.OptionalModules
39{ 39{
40 /// <summary> 40 /// <summary>
41 /// Simplest possible example of a non-shared region module. 41 /// Enables Prim limits for parcel.
42 /// </summary> 42 /// </summary>
43 /// <remarks> 43 /// <remarks>
44 /// This module is the simplest possible example of a non-shared region module (a module where each scene/region 44 /// This module selectivly enables parcel prim limits.
45 /// in the simulator has its own copy). If anybody wants to create a more complex example in the future then
46 /// please create a separate class.
47 ///
48 /// This module is not active by default. If you want to see it in action,
49 /// then just uncomment the line below starting with [Extension(Path...
50 ///
51 /// When the module is enabled it will print messages when it receives certain events to the screen and the log
52 /// file.
53 /// </remarks> 45 /// </remarks>
54 [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "PrimLimitsModule")] 46 [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "PrimLimitsModule")]
55 public class BareBonesNonSharedModule : INonSharedRegionModule 47 public class PrimLimitsModule : INonSharedRegionModule
56 { 48 {
57 protected IDialogModule m_dialogModule; 49 protected IDialogModule m_dialogModule;
58 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 50 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);