diff options
author | MW | 2007-06-22 22:21:08 +0000 |
---|---|---|
committer | MW | 2007-06-22 22:21:08 +0000 |
commit | d7121a422a334f20e96d09251cf7382164b590db (patch) | |
tree | 64ebfea926bc57569963bd1a8adc16e71c942ab1 /Common/OpenGrid.Framework.UserManager | |
parent | Imported Share folder from trunk (diff) | |
download | opensim-SC_OLD-d7121a422a334f20e96d09251cf7382164b590db.zip opensim-SC_OLD-d7121a422a334f20e96d09251cf7382164b590db.tar.gz opensim-SC_OLD-d7121a422a334f20e96d09251cf7382164b590db.tar.bz2 opensim-SC_OLD-d7121a422a334f20e96d09251cf7382164b590db.tar.xz |
Started work on CAPS support, now we have our first test capability, MapLayer requests are handled by CAPS.
Diffstat (limited to '')
-rw-r--r-- | Common/OpenGrid.Framework.UserManager/LoginResponse.cs | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/Common/OpenGrid.Framework.UserManager/LoginResponse.cs b/Common/OpenGrid.Framework.UserManager/LoginResponse.cs index 1c51aeb..514ebef 100644 --- a/Common/OpenGrid.Framework.UserManager/LoginResponse.cs +++ b/Common/OpenGrid.Framework.UserManager/LoginResponse.cs | |||
@@ -40,8 +40,6 @@ namespace OpenGrid.Framework.UserManagement | |||
40 | private LLUUID agentID; | 40 | private LLUUID agentID; |
41 | private LLUUID sessionID; | 41 | private LLUUID sessionID; |
42 | private LLUUID secureSessionID; | 42 | private LLUUID secureSessionID; |
43 | private LLUUID baseFolderID; | ||
44 | private LLUUID inventoryFolderID; | ||
45 | 43 | ||
46 | // Login Flags | 44 | // Login Flags |
47 | private string dst; | 45 | private string dst; |
@@ -107,8 +105,6 @@ namespace OpenGrid.Framework.UserManagement | |||
107 | 105 | ||
108 | public void SetDefaultValues() | 106 | public void SetDefaultValues() |
109 | { | 107 | { |
110 | try | ||
111 | { | ||
112 | this.DST = "N"; | 108 | this.DST = "N"; |
113 | this.StipendSinceLogin = "N"; | 109 | this.StipendSinceLogin = "N"; |
114 | this.Gendered = "Y"; | 110 | this.Gendered = "Y"; |
@@ -153,14 +149,7 @@ namespace OpenGrid.Framework.UserManagement | |||
153 | InitialOutfitHash["folder_name"] = "Nightclub Female"; | 149 | InitialOutfitHash["folder_name"] = "Nightclub Female"; |
154 | InitialOutfitHash["gender"] = "female"; | 150 | InitialOutfitHash["gender"] = "female"; |
155 | this.initialOutfit.Add(InitialOutfitHash); | 151 | this.initialOutfit.Add(InitialOutfitHash); |
156 | } | 152 | |
157 | catch (Exception e) | ||
158 | { | ||
159 | OpenSim.Framework.Console.MainLog.Instance.WriteLine( | ||
160 | OpenSim.Framework.Console.LogPriority.LOW, | ||
161 | "LoginResponse: Unable to set default values: " + e.Message | ||
162 | ); | ||
163 | } | ||
164 | 153 | ||
165 | } // SetDefaultValues | 154 | } // SetDefaultValues |
166 | 155 | ||