diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/Capabilities/Caps.cs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs index c2b0046..2bfcaca 100644 --- a/OpenSim/Framework/Communications/Capabilities/Caps.cs +++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs | |||
@@ -135,10 +135,10 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
135 | { | 135 | { |
136 | // the root of all evil | 136 | // the root of all evil |
137 | m_capsHandlers["SEED"] = new RestStreamHandler("POST", capsBase + m_requestPath, CapsRequest); | 137 | m_capsHandlers["SEED"] = new RestStreamHandler("POST", capsBase + m_requestPath, CapsRequest); |
138 | m_capsHandlers["MapLayer"] = | 138 | //m_capsHandlers["MapLayer"] = |
139 | new LLSDStreamhandler<LLSDMapRequest, LLSDMapLayerResponse>("POST", | 139 | // new LLSDStreamhandler<LLSDMapRequest, LLSDMapLayerResponse>("POST", |
140 | capsBase + m_mapLayerPath, | 140 | // capsBase + m_mapLayerPath, |
141 | GetMapLayer); | 141 | // GetMapLayer); |
142 | m_capsHandlers["NewFileAgentInventory"] = | 142 | m_capsHandlers["NewFileAgentInventory"] = |
143 | new LLSDStreamhandler<LLSDAssetUploadRequest, LLSDAssetUploadResponse>("POST", | 143 | new LLSDStreamhandler<LLSDAssetUploadRequest, LLSDAssetUploadResponse>("POST", |
144 | capsBase + m_newInventory, | 144 | capsBase + m_newInventory, |
@@ -420,6 +420,7 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
420 | mapLayer.Right = 5000; | 420 | mapLayer.Right = 5000; |
421 | mapLayer.Top = 5000; | 421 | mapLayer.Top = 5000; |
422 | mapLayer.ImageID = new LLUUID("00000000-0000-1111-9999-000000000006"); | 422 | mapLayer.ImageID = new LLUUID("00000000-0000-1111-9999-000000000006"); |
423 | |||
423 | return mapLayer; | 424 | return mapLayer; |
424 | } | 425 | } |
425 | 426 | ||