Skip to content
Snippets Groups Projects
Commit d6ec3cf5 authored by Gilbert Gonzales's avatar Gilbert Gonzales
Browse files

merge

parents 11aed44b 67726254
No related branches found
No related tags found
No related merge requests found
...@@ -78,6 +78,8 @@ static const std::string FBCTEST_TAB_NAME = "fbctest_panel"; ...@@ -78,6 +78,8 @@ static const std::string FBCTEST_TAB_NAME = "fbctest_panel";
static const std::string COLLAPSED_BY_USER = "collapsed_by_user"; static const std::string COLLAPSED_BY_USER = "collapsed_by_user";
static const std::string FBC_SERVICES_URL = "https://pdp15.lindenlab.com";
/** Comparator for comparing avatar items by last interaction date */ /** Comparator for comparing avatar items by last interaction date */
class LLAvatarItemRecentComparator : public LLAvatarItemComparator class LLAvatarItemRecentComparator : public LLAvatarItemComparator
{ {
...@@ -890,19 +892,18 @@ void LLPanelPeople::updateFbcTestList() ...@@ -890,19 +892,18 @@ void LLPanelPeople::updateFbcTestList()
std::string title = mFbcTestBrowserHandle.get()->getTitle(); std::string title = mFbcTestBrowserHandle.get()->getTitle();
// if the data is ready (if it says the magic word) // if the data is ready (if it says the magic word)
if (title.length() > 8 && title.substr(0, 8) == "FBCTEST ") if (title.length() >= 2 && title[0] == ':')
{ {
// get the list of friends' names from the title bar // success! :)
std::vector<std::string> names = LLStringUtil::getTokens(title.substr(8), ","); if (title[1] == ')')
{
// display the names in the list mFbcTestText->setText(std::string("okay, now we can get the list of friends!"));
std::string label; }
for (std::vector<std::string>::const_iterator i = names.begin() + 1; i != names.end(); ++i) // failure :(
else if (title[1] == '(')
{ {
label += *i; mFbcTestText->setText(std::string("hmm, the authentication failed somehow"));
label += "\n";
} }
mFbcTestText->setText(label);
// close the browser window // close the browser window
mFbcTestBrowserHandle.get()->die(); mFbcTestBrowserHandle.get()->die();
...@@ -1690,10 +1691,10 @@ class LLFacebookLogin : public LLHTTPClient::Responder ...@@ -1690,10 +1691,10 @@ class LLFacebookLogin : public LLHTTPClient::Responder
//request user to login //request user to login
else else
{ {
LLFloaterWebContent::Params p; LLFloaterWebContent::Params p;
p.url("https://www.facebook.com/dialog/oauth?client_id=565771023434202&redirect_uri=https://pdp15.lindenlab.com/authenticate/" + gAgentID.asString()); p.url("https://www.facebook.com/dialog/oauth?client_id=565771023434202&redirect_uri=" + FBC_SERVICES_URL + "/authenticate/" + gAgentID.asString());
mPanelPeople->openFacebookWeb(p); mPanelPeople->openFacebookWeb(p);
} }
} }
else else
{ {
...@@ -1710,14 +1711,14 @@ void LLPanelPeople::onLoginFbcButtonClicked() ...@@ -1710,14 +1711,14 @@ void LLPanelPeople::onLoginFbcButtonClicked()
void LLPanelPeople::onFacebookAppRequestClicked() void LLPanelPeople::onFacebookAppRequestClicked()
{ {
LLFloaterWebContent::Params p; LLFloaterWebContent::Params p;
p.url("http://www.facebook.com/dialog/apprequests?app_id=565771023434202&message=Test&redirect_uri=https://pdp15.lindenlab.com/"); p.url("http://www.facebook.com/dialog/apprequests?app_id=565771023434202&message=Test&redirect_uri=" + FBC_SERVICES_URL);
openFacebookWeb(p); openFacebookWeb(p);
} }
void LLPanelPeople::onFacebookAppSendClicked() void LLPanelPeople::onFacebookAppSendClicked()
{ {
LLFloaterWebContent::Params p; LLFloaterWebContent::Params p;
p.url("https://www.facebook.com/dialog/send?app_id=565771023434202&name=Test&link=http://www.cnet.com&redirect_uri=https://pdp15.lindenlab.com/"); p.url("https://www.facebook.com/dialog/send?app_id=565771023434202&name=Test&link=http://www.cnet.com&redirect_uri=" + FBC_SERVICES_URL);
openFacebookWeb(p); openFacebookWeb(p);
} }
// EOF // EOF
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment