Diff for /loncom/interface/lonnavdisplay.pm between versions 1.25 and 1.27

version 1.25, 2014/02/28 19:20:06 version 1.27, 2014/05/20 20:30:59
Line 1 Line 1
 # The LearningOnline Network with CAPA  # The LearningOnline Network with CAPA
 # Navigate Maps Handler  
 #  #
 # $Id$  # $Id$
 #  #
Line 30 Line 30
 package Apache::lonnavdisplay;  package Apache::lonnavdisplay;
   
 use strict;  use strict;
 use Apache::Constants qw(:common :http);  use Apache::Constants qw(:common :http REDIRECT);
 use Apache::lonmenu();  use Apache::lonmenu();
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonnavmaps();  use Apache::lonnavmaps();
Line 38  use Apache::lonhtmlcommon(); Line 38  use Apache::lonhtmlcommon();
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::lonlocal;  use Apache::lonlocal;
 use Apache::londocs();  use Apache::londocs();
 use Time::HiRes qw( gettimeofday tv_interval );  #use Time::HiRes qw( gettimeofday tv_interval );
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
Line 59  sub real_handler { Line 59  sub real_handler {
         return OK;          return OK;
     }      }
   
       # Check for critical messages and redirect if present.  
       my ($redirect,$url) = &Apache::loncommon::critical_redirect(300);
       if ($redirect) {
           &Apache::loncommon::content_type($r,'text/html');
           $r->header_out(Location => $url);
           return REDIRECT;
       }
   
   
   
     # Send header, don't cache this page      # Send header, don't cache this page
     if ($env{'browser.mathml'}) {      if ($env{'browser.mathml'}) {
         &Apache::loncommon::content_type($r,'text/xml');          &Apache::loncommon::content_type($r,'text/xml');
Line 100  sub real_handler { Line 110  sub real_handler {
         $start_page = &Apache::loncommon::start_page($title,undef,$args);          $start_page = &Apache::loncommon::start_page($title,undef,$args);
     }      }
     $r->print($start_page.      $r->print($start_page.
               '<script type="text/javascript">window.focus();</script>');                '<script type="text/javascript">'."\n".
                 '// <![CDATA['."\n".
                 'window.focus();'."\n".
                 '// ]]>'."\n".
                 '</script>');
     &startContentScreen($r,'navmaps');      &startContentScreen($r,'navmaps');
     $r->rflush();      $r->rflush();
   

Removed from v.1.25  
changed lines
  Added in v.1.27


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