Merge remote-tracking branch 'shyotl/master'
This commit is contained in:
@@ -3749,9 +3749,9 @@ void LLPieMenu::draw()
|
||||
F32 center_y = height/2;
|
||||
S32 steps = 100;
|
||||
|
||||
gGL.pushMatrix();
|
||||
gGL.pushUIMatrix();
|
||||
{
|
||||
gGL.translatef(center_x, center_y, 0.f);
|
||||
gGL.translateUI(center_x, center_y, 0.f);
|
||||
|
||||
F32 line_width = LLUI::sConfigGroup->getF32("PieMenuLineWidth");
|
||||
LLColor4 line_color = LLUI::sColorsGroup->getColor("PieMenuLineColor");
|
||||
@@ -3799,7 +3799,7 @@ void LLPieMenu::draw()
|
||||
|
||||
LLUI::setLineWidth(1.0f);
|
||||
}
|
||||
gGL.popMatrix();
|
||||
gGL.popUIMatrix();
|
||||
|
||||
mHoverThisFrame = FALSE;
|
||||
|
||||
@@ -3815,9 +3815,9 @@ void LLPieMenu::drawBackground(LLMenuItemGL* itemp, LLColor4& color)
|
||||
S32 steps = 100;
|
||||
|
||||
gGL.color4fv( color.mV );
|
||||
gGL.pushMatrix();
|
||||
gGL.pushUIMatrix();
|
||||
{
|
||||
gGL.translatef(center_x - itemp->getRect().mLeft, center_y - itemp->getRect().mBottom, 0.f);
|
||||
gGL.translateUI(center_x - itemp->getRect().mLeft, center_y - itemp->getRect().mBottom, 0.f);
|
||||
|
||||
item_list_t::iterator item_iter;
|
||||
S32 i = 0;
|
||||
@@ -3837,7 +3837,7 @@ void LLPieMenu::drawBackground(LLMenuItemGL* itemp, LLColor4& color)
|
||||
i++;
|
||||
}
|
||||
}
|
||||
gGL.popMatrix();
|
||||
gGL.popUIMatrix();
|
||||
}
|
||||
|
||||
// virtual
|
||||
|
||||
@@ -391,6 +391,7 @@ bool idle_startup()
|
||||
static LLUUID web_login_key;
|
||||
static std::string password;
|
||||
static std::vector<const char*> requested_options;
|
||||
static std::string redirect_uri;
|
||||
|
||||
static LLVector3 initial_sun_direction(1.f, 0.f, 0.f);
|
||||
static LLVector3 agent_start_position_region(10.f, 10.f, 10.f); // default for when no space server
|
||||
@@ -1255,6 +1256,8 @@ bool idle_startup()
|
||||
|
||||
if (STATE_LOGIN_AUTHENTICATE == LLStartUp::getStartupState())
|
||||
{
|
||||
redirect_uri.clear();
|
||||
|
||||
LL_DEBUGS("AppInit") << "STATE_LOGIN_AUTHENTICATE" << LL_ENDL;
|
||||
set_startup_status(progress, auth_desc, auth_message);
|
||||
|
||||
@@ -1342,6 +1345,9 @@ bool idle_startup()
|
||||
|
||||
LLViewerLogin* vl = LLViewerLogin::getInstance();
|
||||
std::string grid_uri = vl->getCurrentGridURI();
|
||||
if(!redirect_uri.empty())
|
||||
grid_uri = redirect_uri;
|
||||
//redirect_uri.clear(); //Should this be cleared immediately after consumption? Doing this will break retrying on http error.
|
||||
|
||||
llinfos << "Authenticating with " << grid_uri << llendl;
|
||||
|
||||
@@ -1460,6 +1466,24 @@ bool idle_startup()
|
||||
successful_login = true;
|
||||
Debug(if (gCurlIo) dc::curlio.off()); // Login succeeded: restore dc::curlio to original state.
|
||||
}
|
||||
else if(login_response == "indeterminate")
|
||||
{
|
||||
progress += 0.01f;
|
||||
auth_message = message_response;
|
||||
auth_method = response["next_method"].asString();
|
||||
redirect_uri = response["next_url"].asString();
|
||||
if(auth_method.substr(0, 5) == "login")
|
||||
{
|
||||
auth_desc = LLTrans::getString("LoginAuthenticating");
|
||||
}
|
||||
else
|
||||
{
|
||||
auth_desc = LLTrans::getString("LoginMaintenance");
|
||||
}
|
||||
set_startup_status(progress, auth_desc, auth_message);
|
||||
LLStartUp::setStartupState(STATE_XMLRPC_LEGACY_LOGIN );
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
emsg << LLTrans::getString("LoginFailed") + "\n";
|
||||
|
||||
Reference in New Issue
Block a user