aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Capabilities/Caps.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-09-20 20:56:39 +0000
committerMelanie Thielker2008-09-20 20:56:39 +0000
commit82d79e3b0bfa73ed3682c61e14b12471631eda93 (patch)
treeccdf4a9744ef8b501b872510f9a2c1351be5ef11 /OpenSim/Framework/Communications/Capabilities/Caps.cs
parentXEngine: Fix loading lists from saved state (diff)
downloadopensim-SC_OLD-82d79e3b0bfa73ed3682c61e14b12471631eda93.zip
opensim-SC_OLD-82d79e3b0bfa73ed3682c61e14b12471631eda93.tar.gz
opensim-SC_OLD-82d79e3b0bfa73ed3682c61e14b12471631eda93.tar.bz2
opensim-SC_OLD-82d79e3b0bfa73ed3682c61e14b12471631eda93.tar.xz
Partially implement notecard saves in task inventory. Still makes the
notecard go read-only, but changes are saved.
Diffstat (limited to 'OpenSim/Framework/Communications/Capabilities/Caps.cs')
-rw-r--r--OpenSim/Framework/Communications/Capabilities/Caps.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs
index a0c59ad..a891517 100644
--- a/OpenSim/Framework/Communications/Capabilities/Caps.cs
+++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs
@@ -168,8 +168,9 @@ namespace OpenSim.Framework.Communications.Capabilities
168 m_capsHandlers["UpdateNotecardAgentInventory"] = 168 m_capsHandlers["UpdateNotecardAgentInventory"] =
169 new RestStreamHandler("POST", capsBase + m_notecardUpdatePath, NoteCardAgentInventory); 169 new RestStreamHandler("POST", capsBase + m_notecardUpdatePath, NoteCardAgentInventory);
170 m_capsHandlers["UpdateScriptAgentInventory"] = m_capsHandlers["UpdateNotecardAgentInventory"]; 170 m_capsHandlers["UpdateScriptAgentInventory"] = m_capsHandlers["UpdateNotecardAgentInventory"];
171 m_capsHandlers["UpdateScriptTaskInventory"] = 171 m_capsHandlers["UpdateNotecardTaskInventory"] =
172 new RestStreamHandler("POST", capsBase + m_notecardTaskUpdatePath, ScriptTaskInventory); 172 new RestStreamHandler("POST", capsBase + m_notecardTaskUpdatePath, ScriptTaskInventory);
173 m_capsHandlers["UpdateScriptTaskInventory"] = m_capsHandlers["UpdateNotecardTaskInventory"];
173 174
174 // justincc: I've disabled the CAPS service for now to fix problems with selecting textures, and 175 // justincc: I've disabled the CAPS service for now to fix problems with selecting textures, and
175 // subsequent inventory breakage, in the edit object pane (such as mantis 1085). This requires 176 // subsequent inventory breakage, in the edit object pane (such as mantis 1085). This requires