--- loncom/interface/lonnavdisplay.pm 2025/02/07 20:58:59 1.22.4.10.2.5 +++ loncom/interface/lonnavdisplay.pm 2025/05/28 04:40:55 1.22.4.10.2.6 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Navigate Maps Display Handler # -# $Id: lonnavdisplay.pm,v 1.22.4.10.2.5 2025/02/07 20:58:59 raeburn Exp $ +# $Id: lonnavdisplay.pm,v 1.22.4.10.2.6 2025/05/28 04:40:55 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -39,6 +39,7 @@ use Apache::lonnet; use Apache::lonlocal; use Apache::londocs(); use Apache::lonuserstate; +use LONCAPA; sub handler { my $r = shift; @@ -316,11 +317,88 @@ 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) { - $r->print("

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

"); + $noresmsg = &mt('All homework is currently completed.'); } else { # both jumpToFirstHomework and normal use the same: course must be empty - $r->print("

".&mt("This course is 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('

'.$noresmsg.'

'); } &endContentScreen($r); $r->print(&Apache::loncommon::end_page());