Diff for /loncom/auth/lonlogout.pm between versions 1.42.2.2 and 1.42.2.2.2.4

version 1.42.2.2, 2011/11/19 19:10:34 version 1.42.2.2.2.4, 2012/02/13 17:03:59
Line 120  sub handler { Line 120  sub handler {
                      $login_url = $domdefaults{'portal_def'};                       $login_url = $domdefaults{'portal_def'};
                  } else {                   } else {
                      my $checkloginvia = 1;                       my $checkloginvia = 1;
                      my ($lonhost,$server,$path) =                        my ($lonhost,$server,$path,$isredirect) = 
                          &Apache::lonnet::choose_server($domain,$checkloginvia);                           &Apache::lonnet::choose_server($domain,$checkloginvia);
                      if ($server && $lonhost) {                       if ($server && $lonhost) {
                          $login_url = $Apache::lonnet::protocol{$lonhost}.                           $login_url = $Apache::lonnet::protocol{$lonhost}.
                                       '://'.$server.$path;                                        '://'.$server.$path;
                            if (($path eq '') && (!$isredirect)) {
                                my $serverhomeID =
                                    &Apache::lonnet::get_server_homeID($server);
                                my $serverhomedom =
                                    &Apache::lonnet::host_domain($serverhomeID);
                                if ($serverhomedom eq $domain) {
                                    $login_url = '/adm/login';
                                } else {
                                    $path = '/adm/login';
                                    $login_url .= $path;
                                }
                            }
                          if ($path eq '/adm/login' && $domain ne '') {                           if ($path eq '/adm/login' && $domain ne '') {
                              $login_url .= '?domain='.$domain;                               $login_url .= '?domain='.$domain;
                          }                           }
Line 148  sub handler { Line 160  sub handler {
 Due to security reasons in new web browsers a window could only be closed with java script, if this window has also been opend with javascript. This is not done here which means that in most cases the close link will not work. Unless we find another solution, this link should not be offered. (Stefan Bisitz, 2008-08-01)  Due to security reasons in new web browsers a window could only be closed with java script, if this window has also been opend with javascript. This is not done here which means that in most cases the close link will not work. Unless we find another solution, this link should not be offered. (Stefan Bisitz, 2008-08-01)
   
 =cut  =cut
   
             $relogmessage.='<p>'.&mt('[_1]Log in again[_2]'              $relogmessage.='<p>'.&mt('[_1]Log in again[_2]'
                               ,'<a href="'.$login_url.'">','</a>')                                ,'<a href="'.$login_url.'">','</a>')
                             .('&nbsp;'x6).&mt('[_1]Return to course information page[_2]'
                                 ,'<a href="http://relate.mit.edu/physicscourse">'
                                 ,'</a>')
                           .'</p>';                            .'</p>';
         }          }
         if ($env{'request.sso.login'}          if ($env{'request.sso.login'}

Removed from v.1.42.2.2  
changed lines
  Added in v.1.42.2.2.2.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>