aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/ScenePresence.cs
diff options
context:
space:
mode:
authorDiva Canto2012-03-27 20:36:54 -0700
committerDiva Canto2012-03-27 20:36:54 -0700
commitaf96b99356414eca2e65f4976e9c6ea5ab36f87a (patch)
tree1b5a671dbc431369a3714fffcffd258c16954337 /OpenSim/Region/Framework/Scenes/ScenePresence.cs
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-af96b99356414eca2e65f4976e9c6ea5ab36f87a.zip
opensim-SC_OLD-af96b99356414eca2e65f4976e9c6ea5ab36f87a.tar.gz
opensim-SC_OLD-af96b99356414eca2e65f4976e9c6ea5ab36f87a.tar.bz2
opensim-SC_OLD-af96b99356414eca2e65f4976e9c6ea5ab36f87a.tar.xz
More on switching the root folder from under the viewer. More experiments.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index cf60c69..547f66f 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -32,6 +32,7 @@ using System.Reflection;
32using System.Timers; 32using System.Timers;
33using OpenMetaverse; 33using OpenMetaverse;
34using log4net; 34using log4net;
35using Nini.Config;
35using OpenSim.Framework; 36using OpenSim.Framework;
36using OpenSim.Framework.Client; 37using OpenSim.Framework.Client;
37using OpenSim.Region.Framework.Interfaces; 38using OpenSim.Region.Framework.Interfaces;
@@ -1162,6 +1163,23 @@ namespace OpenSim.Region.Framework.Scenes
1162 friendsModule.SendFriendsOnlineIfNeeded(ControllingClient); 1163 friendsModule.SendFriendsOnlineIfNeeded(ControllingClient);
1163 } 1164 }
1164 1165
1166 // HACK HACK -- just seeing how the viewer responds
1167 // Let's send the Suitcase or the real root folder folder for incoming HG agents
1168 // Visiting agents get their suitcase contents; incoming local users get their real root folder's content
1169 AgentCircuitData aCircuit = m_scene.AuthenticateHandler.GetAgentCircuitData(UUID);
1170 if ((aCircuit.teleportFlags & (uint)Constants.TeleportFlags.ViaHGLogin) != 0)
1171 {
1172 // HACK FOR NOW. JUST TESTING, SO KEEPING EVERYONE ELSE OUT OF THESE TESTS
1173 IConfig config = m_scene.Config.Configs["HGEntityTransferModule"];
1174 if (config != null && config.GetBoolean("RestrictInventoryAccessAbroad", false))
1175 {
1176 m_log.DebugFormat("[SCENE]: Sending root folder to viewer...");
1177 InventoryFolderBase root = m_scene.InventoryService.GetRootFolder(client.AgentId);
1178 //InventoryCollection rootContents = InventoryService.GetFolderContent(client.AgentId, root.ID);
1179 client.SendBulkUpdateInventory(root);
1180 }
1181 }
1182
1165// m_log.DebugFormat( 1183// m_log.DebugFormat(
1166// "[SCENE PRESENCE]: Completing movement of {0} into region {1} took {2}ms", 1184// "[SCENE PRESENCE]: Completing movement of {0} into region {1} took {2}ms",
1167// client.Name, Scene.RegionInfo.RegionName, (DateTime.Now - startTime).Milliseconds); 1185// client.Name, Scene.RegionInfo.RegionName, (DateTime.Now - startTime).Milliseconds);