aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/UserManager.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/UserServer/UserManager.cs38
1 files changed, 19 insertions, 19 deletions
diff --git a/OpenSim/Grid/UserServer/UserManager.cs b/OpenSim/Grid/UserServer/UserManager.cs
index 5db4901..c2d0a7a 100644
--- a/OpenSim/Grid/UserServer/UserManager.cs
+++ b/OpenSim/Grid/UserServer/UserManager.cs
@@ -83,31 +83,31 @@ namespace OpenSim.Grid.UserServer
83 Hashtable responseData = new Hashtable(); 83 Hashtable responseData = new Hashtable();
84 84
85 // Account information 85 // Account information
86 responseData["firstname"] = profile.username; 86 responseData["firstname"] = profile.Firstname;
87 responseData["lastname"] = profile.surname; 87 responseData["lastname"] = profile.Lastname;
88 responseData["uuid"] = profile.UUID.ToStringHyphenated(); 88 responseData["uuid"] = profile.UUID.ToStringHyphenated();
89 // Server Information 89 // Server Information
90 responseData["server_inventory"] = profile.userInventoryURI; 90 responseData["server_inventory"] = profile.UserInventoryUri;
91 responseData["server_asset"] = profile.userAssetURI; 91 responseData["server_asset"] = profile.UserAssetUri;
92 // Profile Information 92 // Profile Information
93 responseData["profile_about"] = profile.profileAboutText; 93 responseData["profile_about"] = profile.ProfileAboutText;
94 responseData["profile_firstlife_about"] = profile.profileFirstText; 94 responseData["profile_firstlife_about"] = profile.ProfileFirstText;
95 responseData["profile_firstlife_image"] = profile.profileFirstImage.ToStringHyphenated(); 95 responseData["profile_firstlife_image"] = profile.ProfileFirstImage.ToStringHyphenated();
96 responseData["profile_can_do"] = profile.profileCanDoMask.ToString(); 96 responseData["profile_can_do"] = profile.ProfileCanDoMask.ToString();
97 responseData["profile_want_do"] = profile.profileWantDoMask.ToString(); 97 responseData["profile_want_do"] = profile.ProfileWantDoMask.ToString();
98 responseData["profile_image"] = profile.profileImage.ToStringHyphenated(); 98 responseData["profile_image"] = profile.ProfileImage.ToStringHyphenated();
99 responseData["profile_created"] = profile.created.ToString(); 99 responseData["profile_created"] = profile.Created.ToString();
100 responseData["profile_lastlogin"] = profile.lastLogin.ToString(); 100 responseData["profile_lastlogin"] = profile.LastLogin.ToString();
101 // Home region information 101 // Home region information
102 responseData["home_coordinates_x"] = profile.homeLocation.X.ToString(); 102 responseData["home_coordinates_x"] = profile.HomeLocation.X.ToString();
103 responseData["home_coordinates_y"] = profile.homeLocation.Y.ToString(); 103 responseData["home_coordinates_y"] = profile.HomeLocation.Y.ToString();
104 responseData["home_coordinates_z"] = profile.homeLocation.Z.ToString(); 104 responseData["home_coordinates_z"] = profile.HomeLocation.Z.ToString();
105 105
106 responseData["home_region"] = profile.homeRegion.ToString(); 106 responseData["home_region"] = profile.HomeRegion.ToString();
107 107
108 responseData["home_look_x"] = profile.homeLookAt.X.ToString(); 108 responseData["home_look_x"] = profile.HomeLookAt.X.ToString();
109 responseData["home_look_y"] = profile.homeLookAt.Y.ToString(); 109 responseData["home_look_y"] = profile.HomeLookAt.Y.ToString();
110 responseData["home_look_z"] = profile.homeLookAt.Z.ToString(); 110 responseData["home_look_z"] = profile.HomeLookAt.Z.ToString();
111 response.Value = responseData; 111 response.Value = responseData;
112 112
113 return response; 113 return response;