diff options
author | Melanie | 2013-06-18 01:50:08 +0100 |
---|---|---|
committer | Melanie | 2013-06-18 01:50:08 +0100 |
commit | 56f4adeb60622aaec687f3a6699a03c964f59d5b (patch) | |
tree | 0ba2fe5ffd3984b41fab05b56361fda507b2a34a /OpenSim/Services/LLLoginService/LLLoginResponse.cs | |
parent | Merge branch 'master' into careminster (diff) | |
parent | correct method doc for llRot2Axis() (diff) | |
download | opensim-SC-56f4adeb60622aaec687f3a6699a03c964f59d5b.zip opensim-SC-56f4adeb60622aaec687f3a6699a03c964f59d5b.tar.gz opensim-SC-56f4adeb60622aaec687f3a6699a03c964f59d5b.tar.bz2 opensim-SC-56f4adeb60622aaec687f3a6699a03c964f59d5b.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
OpenSim/Services/LLLoginService/LLLoginResponse.cs
OpenSim/Services/LLLoginService/LLLoginService.cs
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginResponse.cs')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginResponse.cs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginResponse.cs b/OpenSim/Services/LLLoginService/LLLoginResponse.cs index da6c016..057c492 100644 --- a/OpenSim/Services/LLLoginService/LLLoginResponse.cs +++ b/OpenSim/Services/LLLoginService/LLLoginResponse.cs | |||
@@ -196,6 +196,7 @@ namespace OpenSim.Services.LLLoginService | |||
196 | private BuddyList m_buddyList = null; | 196 | private BuddyList m_buddyList = null; |
197 | 197 | ||
198 | private string currency; | 198 | private string currency; |
199 | private string classifiedFee; | ||
199 | 200 | ||
200 | static LLLoginResponse() | 201 | static LLLoginResponse() |
201 | { | 202 | { |
@@ -233,7 +234,7 @@ namespace OpenSim.Services.LLLoginService | |||
233 | GridRegion destination, List<InventoryFolderBase> invSkel, FriendInfo[] friendsList, ILibraryService libService, | 234 | GridRegion destination, List<InventoryFolderBase> invSkel, FriendInfo[] friendsList, ILibraryService libService, |
234 | string where, string startlocation, Vector3 position, Vector3 lookAt, List<InventoryItemBase> gestures, string message, | 235 | string where, string startlocation, Vector3 position, Vector3 lookAt, List<InventoryItemBase> gestures, string message, |
235 | GridRegion home, IPEndPoint clientIP, string mapTileURL, string profileURL, string openIDURL, string searchURL, string currency, | 236 | GridRegion home, IPEndPoint clientIP, string mapTileURL, string profileURL, string openIDURL, string searchURL, string currency, |
236 | string DSTZone, string destinationsURL, string avatarsURL, UUID realID) | 237 | string DSTZone, string destinationsURL, string avatarsURL, UUID realID, string classifiedFee) |
237 | : this() | 238 | : this() |
238 | { | 239 | { |
239 | FillOutInventoryData(invSkel, libService); | 240 | FillOutInventoryData(invSkel, libService); |
@@ -258,6 +259,8 @@ namespace OpenSim.Services.LLLoginService | |||
258 | 259 | ||
259 | SearchURL = searchURL; | 260 | SearchURL = searchURL; |
260 | Currency = currency; | 261 | Currency = currency; |
262 | ClassifiedFee = classifiedFee; | ||
263 | |||
261 | 264 | ||
262 | FillOutHomeData(pinfo, home); | 265 | FillOutHomeData(pinfo, home); |
263 | LookAt = String.Format("[r{0},r{1},r{2}]", lookAt.X, lookAt.Y, lookAt.Z); | 266 | LookAt = String.Format("[r{0},r{1},r{2}]", lookAt.X, lookAt.Y, lookAt.Z); |
@@ -472,6 +475,7 @@ namespace OpenSim.Services.LLLoginService | |||
472 | searchURL = String.Empty; | 475 | searchURL = String.Empty; |
473 | 476 | ||
474 | currency = String.Empty; | 477 | currency = String.Empty; |
478 | ClassifiedFee = "0"; | ||
475 | } | 479 | } |
476 | 480 | ||
477 | 481 | ||
@@ -565,6 +569,9 @@ namespace OpenSim.Services.LLLoginService | |||
565 | // responseData["real_currency"] = currency; | 569 | // responseData["real_currency"] = currency; |
566 | responseData["currency"] = currency; | 570 | responseData["currency"] = currency; |
567 | } | 571 | } |
572 | |||
573 | if (ClassifiedFee != String.Empty) | ||
574 | responseData["classified_fee"] = ClassifiedFee; | ||
568 | 575 | ||
569 | responseData["login"] = "true"; | 576 | responseData["login"] = "true"; |
570 | 577 | ||
@@ -670,6 +677,9 @@ namespace OpenSim.Services.LLLoginService | |||
670 | if (searchURL != String.Empty) | 677 | if (searchURL != String.Empty) |
671 | map["search"] = OSD.FromString(searchURL); | 678 | map["search"] = OSD.FromString(searchURL); |
672 | 679 | ||
680 | if (ClassifiedFee != String.Empty) | ||
681 | map["classified_fee"] = OSD.FromString(ClassifiedFee); | ||
682 | |||
673 | if (m_buddyList != null) | 683 | if (m_buddyList != null) |
674 | { | 684 | { |
675 | map["buddy-list"] = ArrayListToOSDArray(m_buddyList.ToArray()); | 685 | map["buddy-list"] = ArrayListToOSDArray(m_buddyList.ToArray()); |
@@ -1081,6 +1091,12 @@ namespace OpenSim.Services.LLLoginService | |||
1081 | set { currency = value; } | 1091 | set { currency = value; } |
1082 | } | 1092 | } |
1083 | 1093 | ||
1094 | public string ClassifiedFee | ||
1095 | { | ||
1096 | get { return classifiedFee; } | ||
1097 | set { classifiedFee = value; } | ||
1098 | } | ||
1099 | |||
1084 | public string DestinationsURL | 1100 | public string DestinationsURL |
1085 | { | 1101 | { |
1086 | get; set; | 1102 | get; set; |