Diff for /loncom/auth/lonlogout.pm between versions 1.31 and 1.32

version 1.31, 2008/05/13 15:06:34 version 1.32, 2008/08/01 11:04:09
Line 92  sub handler { Line 92  sub handler {
  $start_page=&Apache::loncommon::start_page('Logged Out',undef,   $start_page=&Apache::loncommon::start_page('Logged Out',undef,
    {'no_inline_link' => 1,});     {'no_inline_link' => 1,});
   
  $relogmessage.='<h1>'.&mt('Goodbye').'</h1>';          $relogmessage.='<h1>'.&mt('Goodbye').'</h1>'
                         .'<p>'.&mt('Thank you for using LON-CAPA.').'</p>';
   
  if (!$env{'request.sso.norelogin'}) {   if (!$env{'request.sso.norelogin'}) {
     my $relogin_server;      my $relogin_server;
Line 102  sub handler { Line 103  sub handler {
     my $login_url = $relogin_server.'/adm/'.      my $login_url = $relogin_server.'/adm/'.
  ($env{'request.sso.login'} ? 'roles': 'login');   ($env{'request.sso.login'} ? 'roles': 'login');
   
     $relogmessage.=&mt('Please either [_1]close this window[_2] or [_3]log in again[_4].'              $relogmessage.='<p>'.&mt('You have been successfully logged out.').' '
                               ,'<a href="javascript:self.close();">','</a>'                            .&mt('You can [_1]close this window[_2] now.'
                               ,'<a href="'.$login_url.'?domain='.$env{'user.domain'}.'">','</a>');                                ,'','')
   #                              ,'<a href="javascript:self.close();">','</a>');
   # 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)
                             .'</p>'
                             .'<p>'.&mt('[_1]Log in again[_2]'
                                 ,'<a href="'.$login_url.'?domain='.$env{'user.domain'}.'">','</a>')
                             .'</p>';
         }          }
  my $domain = $env{'user.domain'};   my $domain = $env{'user.domain'};
         if ($env{'request.sso.login'}          if ($env{'request.sso.login'}

Removed from v.1.31  
changed lines
  Added in v.1.32


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