diff options
Diffstat (limited to 'OpenSim/Grid/UserServer/UserManager.cs')
-rw-r--r-- | OpenSim/Grid/UserServer/UserManager.cs | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/OpenSim/Grid/UserServer/UserManager.cs b/OpenSim/Grid/UserServer/UserManager.cs index c2d0a7a..5db4901 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.Firstname; | 86 | responseData["firstname"] = profile.username; |
87 | responseData["lastname"] = profile.Lastname; | 87 | responseData["lastname"] = profile.surname; |
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; |