aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-01 20:28:00 +0000
committerJustin Clarke Casey2008-12-01 20:28:00 +0000
commit18ba6c35105fcddbd5a8abedb8f70f67c3033aa1 (patch)
tree72161dae4893f53399d539ace5c40e11a27a2b73 /OpenSim/Region
parent* Assume that asset data in a reset inventory post is not inlined by default (diff)
downloadopensim-SC_OLD-18ba6c35105fcddbd5a8abedb8f70f67c3033aa1.zip
opensim-SC_OLD-18ba6c35105fcddbd5a8abedb8f70f67c3033aa1.tar.gz
opensim-SC_OLD-18ba6c35105fcddbd5a8abedb8f70f67c3033aa1.tar.bz2
opensim-SC_OLD-18ba6c35105fcddbd5a8abedb8f70f67c3033aa1.tar.xz
* minor: A few tiny bits of documentation and log message cleanup before starting something different
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ClientStack/RegionApplicationBase.cs10
-rw-r--r--OpenSim/Region/Environment/Interfaces/IInventoryTransferModule.cs2
-rw-r--r--OpenSim/Region/Environment/Modules/Avatar/Inventory/Transfer/InventoryTransferModule.cs2
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneManager.cs3
4 files changed, 10 insertions, 7 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
index 61edae5..ce978df 100644
--- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs
+++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
@@ -53,13 +53,12 @@ namespace OpenSim.Region.ClientStack
53 53
54 protected BaseHttpServer m_httpServer; 54 protected BaseHttpServer m_httpServer;
55 protected uint m_httpServerPort; 55 protected uint m_httpServerPort;
56 56
57 protected CommunicationsManager m_commsManager; 57 public CommunicationsManager CommunicationsManager
58 public CommunicationsManager CommunicationsManager { 58 {
59 get { return m_commsManager; } 59 get { return m_commsManager; }
60 } 60 }
61 61 protected CommunicationsManager m_commsManager;
62 protected SceneManager m_sceneManager = new SceneManager();
63 62
64 protected StorageManager m_storageManager; 63 protected StorageManager m_storageManager;
65 64
@@ -69,6 +68,7 @@ namespace OpenSim.Region.ClientStack
69 { 68 {
70 get { return m_sceneManager; } 69 get { return m_sceneManager; }
71 } 70 }
71 protected SceneManager m_sceneManager = new SceneManager();
72 72
73 protected abstract void Initialize(); 73 protected abstract void Initialize();
74 protected abstract PhysicsScene GetPhysicsScene(); 74 protected abstract PhysicsScene GetPhysicsScene();
diff --git a/OpenSim/Region/Environment/Interfaces/IInventoryTransferModule.cs b/OpenSim/Region/Environment/Interfaces/IInventoryTransferModule.cs
index 10fbd58..ee170b9 100644
--- a/OpenSim/Region/Environment/Interfaces/IInventoryTransferModule.cs
+++ b/OpenSim/Region/Environment/Interfaces/IInventoryTransferModule.cs
@@ -33,7 +33,7 @@ using OpenSim.Region.Environment.Scenes;
33namespace OpenSim.Framework 33namespace OpenSim.Framework
34{ 34{
35 /// <summary> 35 /// <summary>
36 /// An interface for accessing and managing agent inventory 36 /// An interface for a module that manages inter-agent inventory offers and transfers.
37 /// </summary> 37 /// </summary>
38 public interface IInventoryTransferModule 38 public interface IInventoryTransferModule
39 { 39 {
diff --git a/OpenSim/Region/Environment/Modules/Avatar/Inventory/Transfer/InventoryTransferModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Inventory/Transfer/InventoryTransferModule.cs
index cb65e9e..73f1761 100644
--- a/OpenSim/Region/Environment/Modules/Avatar/Inventory/Transfer/InventoryTransferModule.cs
+++ b/OpenSim/Region/Environment/Modules/Avatar/Inventory/Transfer/InventoryTransferModule.cs
@@ -244,7 +244,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory.Transfer
244 if (item == null) 244 if (item == null)
245 reason += " Item not found."; 245 reason += " Item not found.";
246 client.SendAgentAlertMessage("Unable to delete "+ 246 client.SendAgentAlertMessage("Unable to delete "+
247 "received item"+reason, false); 247 "received item" + reason, false);
248 } 248 }
249 } 249 }
250 250
diff --git a/OpenSim/Region/Environment/Scenes/SceneManager.cs b/OpenSim/Region/Environment/Scenes/SceneManager.cs
index 30dd497..bb74c20 100644
--- a/OpenSim/Region/Environment/Scenes/SceneManager.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneManager.cs
@@ -38,6 +38,9 @@ namespace OpenSim.Region.Environment.Scenes
38{ 38{
39 public delegate void RestartSim(RegionInfo thisregion); 39 public delegate void RestartSim(RegionInfo thisregion);
40 40
41 /// <summary>
42 /// Manager for adding, closing and restarting scenes.
43 /// </summary>
41 public class SceneManager 44 public class SceneManager
42 { 45 {
43 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 46 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);