--- loncom/interface/lonnavdisplay.pm 2025/05/28 04:40:55 1.22.4.10.2.6 +++ loncom/interface/lonnavdisplay.pm 2017/11/16 13:41:56 1.35 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Navigate Maps Display Handler # -# $Id: lonnavdisplay.pm,v 1.22.4.10.2.6 2025/05/28 04:40:55 raeburn Exp $ +# $Id: lonnavdisplay.pm,v 1.35 2017/11/16 13:41:56 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -39,7 +39,6 @@ use Apache::lonnet; use Apache::lonlocal; use Apache::londocs(); use Apache::lonuserstate; -use LONCAPA; sub handler { my $r = shift; @@ -55,7 +54,7 @@ sub real_handler { 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,'contents'); if ($redirect) { &Apache::loncommon::content_type($r,'text/html'); @@ -66,7 +65,7 @@ sub real_handler { # ------------------------------------------------------------ Get query string &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['sort', 'showOnlyHomework', - 'postsymb']); + 'postsymb','register']); # Check if course needs to be re-initialized my $loncaparev = $r->dir_config('lonVersion'); my ($result,@reinit) = &Apache::loncommon::needs_coursereinit($loncaparev); @@ -78,21 +77,17 @@ sub real_handler { $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')) { + } elsif ($result eq 'update') { + my $cid = $env{'request.course.id'}; + my $cnum = $env{'course.'.$cid.'.num'}; + my $cdom = $env{'course.'.$cid.'.domain'}; &Apache::loncommon::content_type($r,'text/html'); $r->send_http_header; &startpage($r); my $preamble = '
'. '
'. &mt('Your course session is being updated because of recent changes by course personnel.'). - ' '.&mt('Please be patient').'.
'. + ' '.&mt('Please be patient.').'
'. '
'; $closure = < @@ -105,7 +100,7 @@ ENDCLOSE &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!')); + &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()); @@ -115,14 +110,18 @@ ENDCLOSE 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); + + 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 { + &Apache::loncommon::content_type($r,'text/html'); + $r->header_out(Location => $furl); + return REDIRECT; } } @@ -130,7 +129,7 @@ ENDCLOSE my $navmap = Apache::lonnavmaps::navmap->new(); if (!defined($navmap)) { - if (($result eq 'main') || ($result eq 'both')) { + if ($result eq 'update') { &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); $r->print($closure.&Apache::loncommon::end_page()); } @@ -140,7 +139,7 @@ ENDCLOSE return HTTP_NOT_ACCEPTABLE; } - if (($result eq 'main') || ($result eq 'both')) { + if ($result eq 'update') { $r->rflush(); &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); $r->print($closure); @@ -153,7 +152,7 @@ ENDCLOSE } &startContentScreen($r,'navmaps'); - unless (($result eq 'main') || ($result eq 'both')) { + unless ($result eq 'update') { $r->rflush(); } @@ -243,7 +242,10 @@ ENDCLOSE .""); } } else { - my $link = '/adm/navmaps?jumpToFirstHomework'; + my $link = 'navmaps?jumpToFirstHomework'; + if ($env{'form.register'}) { + $link .= '&register='.$env{'form.register'}; + } unless ($notools) { &Apache::lonnavmaps::add_linkitem(\%toplinkitems,'firsthomework', 'location.href="'.$link.'"', @@ -263,7 +265,10 @@ ENDCLOSE $filterFunc = sub { my $res = shift; return $res->completable() || $res->is_map(); }; - my $link = '/adm/navmaps?sort='.$env{'form.sort'}; + my $link = 'navmaps?sort='.$env{'form.sort'}; + if ($env{'form.register'}) { + $link .= '&register='.$env{'form.register'}; + } &Apache::lonnavmaps::add_linkitem(\%toplinkitems,'everything', 'location.href="'.$link.'"', 'Show everything'); @@ -272,7 +277,10 @@ ENDCLOSE $env{'form.condition'} = 1; $resource_no_folder_link = 1; } else { - my $link = '/adm/navmaps?sort='.$env{'form.sort'}.'&showOnlyHomework=1'; + my $link = 'navmaps?sort='.$env{'form.sort'}.'&showOnlyHomework=1'; + if ($env{'form.register'}) { + $link .= '&register='.$env{'form.register'}; + } unless ($notools) { &Apache::lonnavmaps::add_linkitem(\%toplinkitems,'uncompleted', 'location.href="'.$link.'"', @@ -294,6 +302,7 @@ ENDCLOSE + '); } @@ -317,88 +326,11 @@ ENDCLOSE # If no resources were printed, print a reassuring message so the # user knows there was no error. if ($renderArgs->{'counter'} == 0) { - my $noresmsg; if ($showOnlyHomework) { - $noresmsg = &mt('All homework is currently completed.'); + $r->print("

".&mt("All homework is currently completed.")."

"); } else { # both jumpToFirstHomework and normal use the same: course must be empty - $noresmsg = &mt('This course is empty.'); - if (($renderArgs->{'deeplinknolist'}) && - ($env{'request.course.deeponlyprot'})) { - my ($linkprot,$currmatch,$othermatches,@names); - if ($env{'request.linkprot'}) { - ($linkprot) = split(/:/,$env{'request.linkprot'}); - } - foreach my $launcher (split(/&/,$env{'request.course.deeponlyprot'})) { - my ($name,$itemnums) = split(/:/,$launcher); - my @nums = split(/,/,$itemnums); - if (($linkprot) && - (grep(/^\Q$linkprot\E$/,@nums))) { - $currmatch = &LONCAPA::unescape($name); - if (@nums > 1) { - $othermatches = 1; - } - } else { - push(@names,&LONCAPA::unescape($name)); - } - } - my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; - my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; - my $has_supp = &Apache::lonnet::has_unhidden_suppfiles($cnum,$cdom); - if ($linkprot) { - if ($currmatch) { - if ($has_supp) { - $noresmsg = &mt('No main content available when accessed using the link you followed from [_1].', - $currmatch); - } else { - $noresmsg = &mt('No content available when accessed using the link you followed from [_1].', - $currmatch); - } - if ($othermatches) { - $noresmsg = '
'; - if ($has_supp) { - $noresmsg .= &mt('Main content may be available by following a different link from [_1].', - $currmatch); - } else { - $noresmsg .= &mt('Content may be available by following a different link from [_1].', - $currmatch); - } - } - } else { - if ($has_supp) { - $noresmsg = &mt('No main content available using the link you followed.'); - } else { - $noresmsg = &mt('No content available using the link you followed.'); - } - } - } elsif (@names > 0) { - if ($has_supp) { - $noresmsg = &mt('No main content available from direct login to this course.'); - } else { - $noresmsg = &mt('No content available from direct login to this course.'); - } - } - if (@names == 1) { - $noresmsg .= '
'; - if ($has_supp) { - $noresmsg .= &mt('Main content is likely available by following links from [_1]', - $names[0]); - } else { - $noresmsg .= &mt('Content is likely available by following links from [_1]', - $names[0]); - } - } elsif (@names > 1) { - $noresmsg .= '
'; - if ($has_supp) { - $noresmsg .= &mt('Main content is likely available by following links from the following: [_1]', - join(', ',@names)); - } else { - $noresmsg .= &mt('Content is likely available by following links from the following: [_1]', - join(', ',@names)); - } - } - } + $r->print("

".&mt("This course is empty.")."

"); } - $r->print('

'.$noresmsg.'

'); } &endContentScreen($r); $r->print(&Apache::loncommon::end_page()); @@ -413,12 +345,19 @@ sub startpage { # 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}; - $r->print(&Apache::loncommon::start_page($title,undef,$args). + my ($start_page,$args); + if ($env{'form.register'}) { + $args = {'force_register' => $env{'form.register'}}; + $start_page = &Apache::loncommon::start_page($title,undef,$args); + } else { + my $brcrum = [{href => '/adm/navmaps', + text => &mt($course_type . ' Contents'), + no_mt => 1}, + ]; + $args = {'bread_crumbs' => $brcrum}; + $start_page = &Apache::loncommon::start_page($title,undef,$args); + } + $r->print($start_page. '