version 1.22.4.10.2.6, 2025/05/28 04:40:55
|
version 1.22.4.11, 2024/07/02 02:17:56
|
Line 39 use Apache::lonnet;
|
Line 39 use Apache::lonnet;
|
use Apache::lonlocal; |
use Apache::lonlocal; |
use Apache::londocs(); |
use Apache::londocs(); |
use Apache::lonuserstate; |
use Apache::lonuserstate; |
use LONCAPA; |
|
|
|
sub handler { |
sub handler { |
my $r = shift; |
my $r = shift; |
Line 56 sub real_handler {
|
Line 55 sub real_handler {
|
} |
} |
|
|
# 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'); |
my ($redirect,$url) = &Apache::loncommon::critical_redirect(300); |
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); |
Line 78 sub real_handler {
|
Line 77 sub real_handler {
|
$r->send_http_header; |
$r->send_http_header; |
$r->print(&Apache::loncommon::check_release_result(@reinit)); |
$r->print(&Apache::loncommon::check_release_result(@reinit)); |
return OK; |
return OK; |
} |
} elsif ($result eq 'update') { |
my ($cid,$cnum,$cdom); |
my $cid = $env{'request.course.id'}; |
if ($result) { |
my $cnum = $env{'course.'.$cid.'.num'}; |
$cid = $env{'request.course.id'}; |
my $cdom = $env{'course.'.$cid.'.domain'}; |
$cnum = $env{'course.'.$cid.'.num'}; |
|
$cdom = $env{'course.'.$cid.'.domain'}; |
|
} |
|
if (($result eq 'main') || ($result eq 'both')) { |
|
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
&startpage($r); |
&startpage($r); |
Line 115 ENDCLOSE
|
Line 110 ENDCLOSE
|
return HTTP_NOT_ACCEPTABLE; |
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); |
|
} |
|
} |
|
|
|
# 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 'main') || ($result eq 'both')) { |
if ($result eq 'update') { |
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
$r->print($closure.&Apache::loncommon::end_page()); |
$r->print($closure.&Apache::loncommon::end_page()); |
} |
} |
Line 140 ENDCLOSE
|
Line 125 ENDCLOSE
|
return HTTP_NOT_ACCEPTABLE; |
return HTTP_NOT_ACCEPTABLE; |
} |
} |
|
|
if (($result eq 'main') || ($result eq 'both')) { |
if ($result eq 'update') { |
$r->rflush(); |
$r->rflush(); |
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
$r->print($closure); |
$r->print($closure); |
Line 153 ENDCLOSE
|
Line 138 ENDCLOSE
|
} |
} |
|
|
&startContentScreen($r,'navmaps'); |
&startContentScreen($r,'navmaps'); |
unless (($result eq 'main') || ($result eq 'both')) { |
unless ($result eq 'update') { |
$r->rflush(); |
$r->rflush(); |
} |
} |
|
|
Line 317 ENDCLOSE
|
Line 302 ENDCLOSE
|
# If no resources were printed, print a reassuring message so the |
# If no resources were printed, print a reassuring message so the |
# user knows there was no error. |
# user knows there was no error. |
if ($renderArgs->{'counter'} == 0) { |
if ($renderArgs->{'counter'} == 0) { |
my $noresmsg; |
|
if ($showOnlyHomework) { |
if ($showOnlyHomework) { |
$noresmsg = &mt('All homework is currently completed.'); |
$r->print("<p><span class=\"LC_info\">".&mt("All homework is currently completed.")."</span></p>"); |
} else { # both jumpToFirstHomework and normal use the same: course must be empty |
} else { # both jumpToFirstHomework and normal use the same: course must be empty |
$noresmsg = &mt('This course is empty.'); |
$r->print("<p><span class=\"LC_info\">".&mt("This course is empty.")."</span></p>"); |
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 = '<br />'; |
|
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 .= '<br />'; |
|
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 .= '<br />'; |
|
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('<p><span class="LC_info">'.$noresmsg.'</span></p>'); |
|
} |
} |
&endContentScreen($r); |
&endContentScreen($r); |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
Line 432 sub startContentScreen {
|
Line 340 sub startContentScreen {
|
|
|
$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> '.&mt('Main Content').' </b></a></li>'."\n"); |
$r->print('<li'.(($mode eq 'navmaps')?' class="active"':'').'><a href="/adm/navmaps"><b> '.&mt('Main Content').' </b></a></li>'."\n"); |
my $supptab; |
my $allowed = &Apache::lonnet::allowed('mdc',$env{'request.course.id'}); |
if ($env{'request.role.adv'}) { |
my ($suppcount,$errors); |
$supptab = 1; |
unless ($allowed) { |
} 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'}; |
$supptab = &Apache::lonnet::has_unhidden_suppfiles($cnum,$cdom); |
($suppcount,$errors) = &Apache::lonnet::get_numsuppfiles($cnum,$cdom); |
} |
} |
if ($supptab) { |
if ($allowed || $suppcount) { |
$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> '.&mt('Content Search').' </b></a></li>'."\n"); |
$r->print('<li'.(($mode eq 'coursesearch')?' class="active"':'').'><a href="/adm/searchcourse"><b> '.&mt('Content Search').' </b></a></li>'."\n"); |