aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llxmlrpctransaction.cpp
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-04-15 21:07:29 -0700
committerMcCabe Maxsted2011-04-15 21:07:29 -0700
commitf7df6f323e4746abae0a0858cb7ef56bedbb94ca (patch)
tree7a4a9e3be1ca658c0d72c78f413946249a38ad21 /linden/indra/newview/llxmlrpctransaction.cpp
parenttest commit - slviewer-0-v12500-DeadObjectsFixes_v2.patch (diff)
downloadmeta-impy-f7df6f323e4746abae0a0858cb7ef56bedbb94ca.zip
meta-impy-f7df6f323e4746abae0a0858cb7ef56bedbb94ca.tar.gz
meta-impy-f7df6f323e4746abae0a0858cb7ef56bedbb94ca.tar.bz2
meta-impy-f7df6f323e4746abae0a0858cb7ef56bedbb94ca.tar.xz
Updated the grid manager to save names and passwords along with grid info. This commit includes the following:
* Fixed missing GPL headers from hippo grid manager * Fixed grids named <required> or "" being saved in the list * Fixed grid manager list only showing grid nicks, not grid names * Fixed grid names not settable in the grid manager * Grid manager now remembers avatar names and passwords * Usernames can now be set in the grid manager for SL (needs work) * Fixed grid manager being stuck in an updating state * Some general code cleanup
Diffstat (limited to 'linden/indra/newview/llxmlrpctransaction.cpp')
-rw-r--r--linden/indra/newview/llxmlrpctransaction.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/newview/llxmlrpctransaction.cpp b/linden/indra/newview/llxmlrpctransaction.cpp
index 30b0249..e0805ee 100644
--- a/linden/indra/newview/llxmlrpctransaction.cpp
+++ b/linden/indra/newview/llxmlrpctransaction.cpp
@@ -438,7 +438,7 @@ void LLXMLRPCTransaction::Impl::setStatus(Status status,
438 mStatusMessage = 438 mStatusMessage =
439 "Despite our best efforts, something unexpected has gone wrong. \n" 439 "Despite our best efforts, something unexpected has gone wrong. \n"
440 " \n" 440 " \n"
441 "Please check " + gHippoGridManager->getCurrentGrid()->getGridNick() + "'s status \n" 441 "Please check " + gHippoGridManager->getCurrentGrid()->getGridName() + "'s status \n"
442 "to see if there is a known problem with the service."; 442 "to see if there is a known problem with the service.";
443 443
444 //mStatusURI = "http://secondlife.com/status/"; 444 //mStatusURI = "http://secondlife.com/status/";
@@ -449,14 +449,14 @@ void LLXMLRPCTransaction::Impl::setStatus(Status status,
449void LLXMLRPCTransaction::Impl::setCurlStatus(CURLcode code) 449void LLXMLRPCTransaction::Impl::setCurlStatus(CURLcode code)
450{ 450{
451 std::string message; 451 std::string message;
452 std::string uri = gHippoGridManager->getCurrentGrid()->getSupportUrl(); 452 std::string uri = gHippoGridManager->getCurrentGrid()->getSupportURL();
453 453
454 switch (code) 454 switch (code)
455 { 455 {
456 case CURLE_COULDNT_RESOLVE_HOST: 456 case CURLE_COULDNT_RESOLVE_HOST:
457 message = 457 message =
458 "DNS could not resolve the host name.\n" 458 "DNS could not resolve the host name.\n"
459 "Please verify that you can connect to " + gHippoGridManager->getCurrentGrid()->getGridNick() + "'s\n" 459 "Please verify that you can connect to " + gHippoGridManager->getCurrentGrid()->getGridName() + "'s\n"
460 "web site. If you can, but continue to receive this error,\n" 460 "web site. If you can, but continue to receive this error,\n"
461 "please go to the support section and report this problem."; 461 "please go to the support section and report this problem.";
462 break; 462 break;
@@ -465,7 +465,7 @@ void LLXMLRPCTransaction::Impl::setCurlStatus(CURLcode code)
465 message = 465 message =
466 "The login server couldn't verify itself via SSL.\n" 466 "The login server couldn't verify itself via SSL.\n"
467 "If you continue to receive this error, please go\n" 467 "If you continue to receive this error, please go\n"
468 "to the Support section of " + gHippoGridManager->getCurrentGrid()->getGridNick() + "'s web site\n" 468 "to the Support section of " + gHippoGridManager->getCurrentGrid()->getGridName() + "'s web site\n"
469 "and report the problem."; 469 "and report the problem.";
470 break; 470 break;
471 471
@@ -477,7 +477,7 @@ void LLXMLRPCTransaction::Impl::setCurlStatus(CURLcode code)
477 "are set correctly.\n" 477 "are set correctly.\n"
478 "\n" 478 "\n"
479 "If you continue to receive this error, please go\n" 479 "If you continue to receive this error, please go\n"
480 "to the Support section of " + gHippoGridManager->getCurrentGrid()->getGridNick() + "'s web site\n" 480 "to the Support section of " + gHippoGridManager->getCurrentGrid()->getGridName() + "'s web site\n"
481 "and report the problem."; 481 "and report the problem.";
482 break; 482 break;
483 483