diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs index 5df6a069f1..893bd3ed91 100644 --- a/OpenSim/Framework/Communications/Capabilities/Caps.cs +++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs @@ -266,8 +266,7 @@ namespace OpenSim.Region.Capabilities #endregion /// - /// Callback for a client request for an upload url for a script task - /// inventory update + /// Called by the script task update handler. Provides a URL to which the client can upload a new asset. /// /// /// @@ -320,8 +319,7 @@ namespace OpenSim.Region.Capabilities } /// - /// Callback for a client request for an upload url for a notecard (or script) - /// agent inventory update + /// Called by the notecard update handler. Provides a URL to which the client can upload a new asset. /// /// /// diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 7ea528ce35..ba728416b0 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs @@ -94,7 +94,11 @@ namespace OpenSim.Region.Environment.Scenes protected SceneCommunicationService m_sceneGridService; protected SceneXmlLoader m_sceneXmlLoader; + /// + /// Each agent has its own capabilities handler. + /// protected Dictionary m_capsHandlers = new Dictionary(); + protected BaseHttpServer m_httpListener; protected Dictionary Modules = new Dictionary(); @@ -614,7 +618,7 @@ namespace OpenSim.Region.Environment.Scenes } /// - /// Start the timer which triggers regular scene updates + /// /// public void StartTimer() {