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

version 1.27, 2014/05/20 20:30:59 version 1.42, 2023/07/25 04:58:49
Line 1 Line 1
 # The LearningOnline Network with CAPA  # The LearningOnline Network with CAPA
   # Navigate Maps Display Handler
 #  #
 # $Id$  # $Id$
 #  #
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 Apache::lonuserstate;
   use LONCAPA::ltiutils;
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
Line 47  sub handler { Line 48  sub handler {
   
 sub real_handler {  sub real_handler {
     my $r = shift;      my $r = shift;
     #my $t0=[&gettimeofday()];  
     # Handle header-only request      # Handle header-only request
     if ($r->header_only) {      if ($r->header_only) {
         if ($env{'browser.mathml'}) {          &Apache::loncommon::content_type($r,'text/html');
             &Apache::loncommon::content_type($r,'text/xml');  
         } else {  
             &Apache::loncommon::content_type($r,'text/html');  
         }  
         $r->send_http_header;          $r->send_http_header;
         return OK;          return OK;
     }      }
   
     # Check for critical messages and redirect if present.        # Check for critical messages and redirect if present.  
     my ($redirect,$url) = &Apache::loncommon::critical_redirect(300);      my ($redirect,$url) = &Apache::loncommon::critical_redirect(300,'contents');
     if ($redirect) {      if ($redirect) {
         &Apache::loncommon::content_type($r,'text/html');          &Apache::loncommon::content_type($r,'text/html');
         $r->header_out(Location => $url);          $r->header_out(Location => $url);
         return REDIRECT;          return REDIRECT;
     }      }
   
   # ------------------------------------------------------------ Get query string
       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['sort',
                                                                     'showOnlyHomework',
                                                                     'postsymb']);
       # Check if course needs to be re-initialized
       my $loncaparev = $r->dir_config('lonVersion');
       my ($result,@reinit) = &Apache::loncommon::needs_coursereinit($loncaparev);
       my %prog_state=();
       my $closure;
   
       if ($result eq 'switch') {
     # Send header, don't cache this page  
     if ($env{'browser.mathml'}) {  
         &Apache::loncommon::content_type($r,'text/xml');  
     } else {  
         &Apache::loncommon::content_type($r,'text/html');          &Apache::loncommon::content_type($r,'text/html');
           $r->send_http_header;
           $r->print(&Apache::loncommon::check_release_result(@reinit));
           return OK;
       }
       my ($cid,$cnum,$cdom);
       if ($result) {
           $cid = $env{'request.course.id'};
           $cnum = $env{'course.'.$cid.'.num'};
           $cdom = $env{'course.'.$cid.'.domain'};
       }
       if (($result eq 'main') || ($result eq 'both')) {
           &Apache::loncommon::content_type($r,'text/html');
           $r->send_http_header;
           &startpage($r);
           my $preamble = '<div id="LC_update_'.$cid.'" class="LC_info">'.
                          '<br />'.
                          &mt('Your course session is being updated because of recent changes by course personnel.').
                          ' '.&mt('Please be patient').'.<br /></div>'.
                          '<div style="padding:0;clear:both;margin:0;border:0"></div>';
           $closure = <<ENDCLOSE;
   <script type="text/javascript">
   // <![CDATA[
   \$("#LC_update_$cid").hide('slow');
   // ]]>
   </script>
   ENDCLOSE
           %prog_state = &Apache::lonhtmlcommon::Create_PrgWin($r,undef,$preamble);
           &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,&mt('Updating course'));
           $r->rflush();
           my ($furl,$ferr) = &Apache::lonuserstate::readmap("$cdom/$cnum",\%prog_state,$r);
           &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,&mt('Finished!'));
           if ($ferr) {
               &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
               $r->print($closure.&Apache::loncommon::end_page());
               my $requrl = $r->uri;
               $env{'user.error.msg'}="$requrl:bre:0:0:Course not initialized";
               $env{'user.reinit'} = 1;
               return HTTP_NOT_ACCEPTABLE;
           }
       }
       if (($result eq 'both') || ($result eq 'supp')) {
           my $possdel;
           if ($result eq 'supp') {
               $possdel = 1;
           }
           my ($supplemental,$refs_updated) = &Apache::loncommon::get_supplemental($cnum,$cdom,'',$possdel);
           unless ($refs_updated) {
               &Apache::loncommon::set_supp_httprefs($cnum,$cdom,$supplemental,$possdel);
           }
     }      }
     &Apache::loncommon::no_cache($r);  
   
     my %toplinkitems=();      my $course_type = &Apache::loncommon::course_type();
       if (($course_type eq 'Placement') && (!$env{'request.role.adv'})) { 
           my $furl = &Apache::lonpageflip::first_accessible_resource();
           if ($result eq 'update') {
               &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
               $r->print($closure.&Apache::loncommon::end_page());
               return OK;
           } else {
               unless ($furl eq '/adm/navmaps') {
                   &Apache::loncommon::content_type($r,'text/html');
                   $r->header_out(Location => $furl);
                   return REDIRECT;
               }
           }
       }
   
       if ($env{'request.lti.login'}) {
           if ($env{'request.lti.uri'} ne '') {
               my $cid = $env{'request.course.id'};
               my $cnum = $env{'course.'.$cid.'.num'};
               my $cdom = $env{'course.'.$cid.'.domain'};
               my ($scope,$url) = &LONCAPA::ltiutils::lti_provider_scope($env{'request.lti.uri'},$cdom,$cnum);
               if (($scope eq 'map') || ($scope eq 'resource')) {
                   &Apache::loncommon::content_type($r,'text/html');
                   $r->header_out(Location => $url);
                   return REDIRECT;
               }
           }
       }
   
     # Create the nav map      # Create the nav map
     my $navmap = Apache::lonnavmaps::navmap->new();      my $navmap = Apache::lonnavmaps::navmap->new();
   
     if (!defined($navmap)) {      if (!defined($navmap)) {
           if ($result eq 'update') {
               &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
               $r->print($closure.&Apache::loncommon::end_page());
           }
         my $requrl = $r->uri;          my $requrl = $r->uri;
         $env{'user.error.msg'} = "$requrl:bre:0:0:Course not initialized";          $env{'user.error.msg'} = "$requrl:bre:0:0:Course not initialized";
         $env{'user.reinit'} = 1;          $env{'user.reinit'} = 1;
         return HTTP_NOT_ACCEPTABLE;          return HTTP_NOT_ACCEPTABLE;
     }      }
     $r->send_http_header;  
   
 # ------------------------------------------------------------ Get query string      if ($result eq 'update') {
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['sort','showOnlyHomework','postsymb','register']);          $r->rflush();
               &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
 # ----------------------------------------------------- Force menu registration          $r->print($closure);
     # Header          $r->rflush();
     my $course_type = &Apache::loncommon::course_type();  
     my $title = $course_type . ' Contents';  
     my ($start_page,$args);  
     if ($env{'form.register'}) {  
         $args = {'force_register' => $env{'form.register'}};  
         $start_page = &Apache::loncommon::start_page($title,undef,$args);  
     } else {      } else {
         my $brcrum = [{href => '/adm/navmaps',          # Send header, don't cache this page
                        text => &mt($course_type . ' Contents'),          &Apache::loncommon::content_type($r,'text/html');
                        no_mt => 1},          $r->send_http_header;
                      ];          &startpage($r);
         $args = {'bread_crumbs' => $brcrum};      }
         $start_page = &Apache::loncommon::start_page($title,undef,$args);  
       &startContentScreen($r,'navmaps',$course_type);
       unless ($result eq 'update') {
           $r->rflush();
     }      }
     $r->print($start_page.  
               '<script type="text/javascript">'."\n".  
               '// <![CDATA['."\n".  
               'window.focus();'."\n".  
               '// ]]>'."\n".  
               '</script>');  
     &startContentScreen($r,'navmaps');  
     $r->rflush();  
   
     # Check that it's defined      # Check that it's defined
     if (!($navmap->courseMapDefined())) {      if (!($navmap->courseMapDefined())) {
Line 127  sub real_handler { Line 196  sub real_handler {
         return OK;          return OK;
     }      }
   
       my %toplinkitems=();
     my @resources = $navmap->retrieveResources();      my @resources = $navmap->retrieveResources();
     my $sequenceCount = 0;      my $sequenceCount = 0;
     my $problemCount = 0;      my $problemCount = 0;
Line 203  sub real_handler { Line 273  sub real_handler {
                      ."</span>");                       ."</span>");
         }          }
     } else {      } else {
         my $link = 'navmaps?jumpToFirstHomework';          my $link = '/adm/navmaps?jumpToFirstHomework';
         if ($env{'form.register'}) {  
             $link .= '&amp;register='.$env{'form.register'};   
         }  
         unless ($notools) {          unless ($notools) {
     &Apache::lonnavmaps::add_linkitem(\%toplinkitems,'firsthomework',      &Apache::lonnavmaps::add_linkitem(\%toplinkitems,'firsthomework',
       'location.href="'.$link.'"',        'location.href="'.$link.'"',
Line 226  sub real_handler { Line 293  sub real_handler {
         $filterFunc = sub { my $res = shift;           $filterFunc = sub { my $res = shift; 
                             return $res->completable() || $res->is_map();                              return $res->completable() || $res->is_map();
                         };                          };
         my $link = 'navmaps?sort='.$env{'form.sort'};          my $link = '/adm/navmaps?sort='.$env{'form.sort'};
         if ($env{'form.register'}) {  
             $link .= '&amp;register='.$env{'form.register'};  
         }  
  &Apache::lonnavmaps::add_linkitem(\%toplinkitems,'everything',   &Apache::lonnavmaps::add_linkitem(\%toplinkitems,'everything',
   'location.href="'.$link.'"',    'location.href="'.$link.'"',
   'Show everything');    'Show everything');
Line 238  sub real_handler { Line 302  sub real_handler {
         $env{'form.condition'} = 1;          $env{'form.condition'} = 1;
  $resource_no_folder_link = 1;   $resource_no_folder_link = 1;
     } else {      } else {
         my $link = 'navmaps?sort='.$env{'form.sort'}.'&amp;showOnlyHomework=1';          my $link = '/adm/navmaps?sort='.$env{'form.sort'}.'&amp;showOnlyHomework=1';
         if ($env{'form.register'}) {  
             $link .= '&amp;register='.$env{'form.register'};  
         }  
         unless ($notools) {          unless ($notools) {
     &Apache::lonnavmaps::add_linkitem(\%toplinkitems,'uncompleted',      &Apache::lonnavmaps::add_linkitem(\%toplinkitems,'uncompleted',
       'location.href="'.$link.'"',        'location.href="'.$link.'"',
Line 263  sub real_handler { Line 324  sub real_handler {
                        <option value="duedate"'.$selected{'duedate'}.'>'.&mt('Due Date').'</option>                         <option value="duedate"'.$selected{'duedate'}.'>'.&mt('Due Date').'</option>
                        <option value="discussion"'.$selected{'discussion'}.'>'.&mt('Has New Discussion').'</option>                         <option value="discussion"'.$selected{'discussion'}.'>'.&mt('Has New Discussion').'</option>
                     </select>                      </select>
                     <input type="hidden" name="register" value="'.$env{'form.register'}.'" />  
                  </span>                   </span>
                </form>');                 </form>');
     }      }
Line 293  sub real_handler { Line 353  sub real_handler {
             $r->print("<p><span class=\"LC_info\">".&mt("This course is empty.")."</span></p>");              $r->print("<p><span class=\"LC_info\">".&mt("This course is empty.")."</span></p>");
         }          }
     }      }
     #my $td=&tv_interval($t0);  
     #$r->print("<br />$td");  
     &endContentScreen($r);      &endContentScreen($r);
     $r->print(&Apache::loncommon::end_page());      $r->print(&Apache::loncommon::end_page());
     $r->rflush();      $r->rflush();
Line 302  sub real_handler { Line 360  sub real_handler {
     return OK;      return OK;
 }  }
   
   sub startpage {
       my ($r) = @_;
   # ----------------------------------------------------- Force menu registration
       # Header
       my $course_type = &Apache::loncommon::course_type();
       my $title = $course_type . ' Contents';
       my $brcrum = [{href => '/adm/navmaps',
                      text => &mt($course_type . ' Contents'),
                      no_mt => 1},
                    ];
       my $args = {'bread_crumbs' => $brcrum};
       my $start_page = &Apache::loncommon::start_page($title,undef,$args);
       $r->print($start_page.
                 '<script type="text/javascript">'."\n".
                 '// <![CDATA['."\n".
                 'window.focus();'."\n".
                 '// ]]>'."\n".
                 '</script>');
       return;
   }
   
 sub startContentScreen {  sub startContentScreen {
     my ($r,$mode)=@_;      my ($r,$mode,$course_type)=@_;
   
     $r->print("\n".'<ul class="LC_TabContentBigger" id="mainnav">'."\n");      $r->print("\n".'<ul class="LC_TabContentBigger" id="mainnav">'."\n");
     $r->print('<li'.(($mode eq 'navmaps')?' class="active"':'').'><a href="/adm/navmaps"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Main Content').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n");      $r->print('<li'.(($mode eq 'navmaps')?' class="active"':'').'><a href="/adm/navmaps"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Main Content').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n");
     my $allowed = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});      my $supptab;
     my ($suppcount,$errors);      if ($env{'request.role.adv'}) {
     unless ($allowed) {          $supptab = 1;
       } else {
         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};          my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};          my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
         ($suppcount,$errors) = &Apache::lonnet::get_numsuppfiles($cnum,$cdom);          $supptab = &Apache::lonnet::has_unhidden_suppfiles($cnum,$cdom);
     }      }
     if ($allowed || $suppcount) {      if ($supptab) {
         $r->print('<li '.(($mode eq 'supplemental')?' class="active"':'').'><a href="/adm/supplemental"><b>'.&mt('Supplemental Content').'</b></a></li>');          $r->print('<li '.(($mode eq 'supplemental')?' class="active"':'').'><a href="/adm/supplemental"><b>'.&mt('Supplemental Content').'</b></a></li>');
     }      }
     $r->print('<li'.(($mode eq 'coursesearch')?' class="active"':'').'><a href="/adm/searchcourse"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Content Search').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n");      unless ($course_type eq 'Placement') {
     $r->print('<li'.(($mode eq 'courseindex')?' class="active"':'').'><a href="/adm/indexcourse"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Content Index').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n");          $r->print('<li'.(($mode eq 'coursesearch')?' class="active"':'').'><a href="/adm/searchcourse"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Content Search').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n");
           $r->print('<li'.(($mode eq 'courseindex')?' class="active"':'').'><a href="/adm/indexcourse"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Content Index').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n");
       }
     $r->print("\n".'</ul>'."\n");      $r->print("\n".'</ul>'."\n");
     $r->print('<div class="LC_Box" style="clear:both;margin:0;"><div id="maincoursedoc" style="margin:0 0;padding:0 0;"><div class="LC_ContentBox" id="mainCourseDocuments" style="display: block;">');      $r->print('<div class="LC_Box" style="clear:both;margin:0;"><div id="maincoursedoc" style="margin:0 0;padding:0 0;"><div class="LC_ContentBox" id="mainCourseDocuments" style="display: block;">');
 }  }

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


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