version 1.22.4.10.2.2, 2023/01/20 23:04:26
|
version 1.45, 2025/02/07 20:46:01
|
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::ltiutils; |
|
|
sub handler { |
sub handler { |
my $r = shift; |
my $r = shift; |
Line 54 sub real_handler {
|
Line 55 sub real_handler {
|
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,'contents'); |
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'); |
Line 77 sub real_handler {
|
Line 78 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 = $env{'request.course.id'}; |
my ($cid,$cnum,$cdom); |
my $cnum = $env{'course.'.$cid.'.num'}; |
if ($result) { |
my $cdom = $env{'course.'.$cid.'.domain'}; |
$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'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
&startpage($r); |
&startpage($r); |
Line 110 ENDCLOSE
|
Line 115 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); |
|
} |
|
} |
|
|
|
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 'main') || ($result eq 'both')) { |
|
&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') { |
if (($result eq 'main') || ($result eq 'both')) { |
&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 125 ENDCLOSE
|
Line 170 ENDCLOSE
|
return HTTP_NOT_ACCEPTABLE; |
return HTTP_NOT_ACCEPTABLE; |
} |
} |
|
|
if ($result eq 'update') { |
if (($result eq 'main') || ($result eq 'both')) { |
$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 137 ENDCLOSE
|
Line 182 ENDCLOSE
|
&startpage($r); |
&startpage($r); |
} |
} |
|
|
&startContentScreen($r,'navmaps'); |
&startContentScreen($r,'navmaps',$course_type); |
unless ($result eq 'update') { |
unless (($result eq 'main') || ($result eq 'both')) { |
$r->rflush(); |
$r->rflush(); |
} |
} |
|
|
Line 272 ENDCLOSE
|
Line 317 ENDCLOSE
|
'<form name="sortForm" action=""> |
'<form name="sortForm" action=""> |
<span class="LC_nobreak"> |
<span class="LC_nobreak"> |
<input type="hidden" name="showOnlyHomework" value="'.$env{'form.showOnlyHomework'}.'" /> |
<input type="hidden" name="showOnlyHomework" value="'.$env{'form.showOnlyHomework'}.'" /> |
'.&mt('Sort by:').' |
<label for="LC_navmap_sort">'.&mt('Sort by:').'</label> |
<select name="sort" onchange="document.sortForm.submit()"> |
<select name="sort" id="LC_navmap_sort"> |
<option value="default"'.$selected{'default'}.'>'.&mt('Default').'</option> |
<option value="default"'.$selected{'default'}.'>'.&mt('Default').'</option> |
<option value="title"'.$selected{'title'}.'>'.&mt('Title').'</option> |
<option value="title"'.$selected{'title'}.'>'.&mt('Title').'</option> |
<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="submit" value="'.&mt('Go').'" /> |
</span> |
</span> |
</form>'); |
</form>'); |
} |
} |
Line 326 sub startpage {
|
Line 372 sub startpage {
|
no_mt => 1}, |
no_mt => 1}, |
]; |
]; |
my $args = {'bread_crumbs' => $brcrum}; |
my $args = {'bread_crumbs' => $brcrum}; |
my $start_page = &Apache::loncommon::start_page($title,undef,$args); |
$r->print(&Apache::loncommon::start_page($title,undef,$args). |
$r->print($start_page. |
|
'<script type="text/javascript">'."\n". |
'<script type="text/javascript">'."\n". |
'// <![CDATA['."\n". |
'// <![CDATA['."\n". |
'window.focus();'."\n". |
'window.focus();'."\n". |
Line 337 sub startpage {
|
Line 382 sub startpage {
|
} |
} |
|
|
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> '.&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 $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> '.&mt('Content Search').' </b></a></li>'."\n"); |
unless ($course_type eq 'Placement') { |
|
$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 'courseindex')?' class="active"':'').'><a href="/adm/indexcourse"><b> '.&mt('Content Index').' </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;">'); |
} |
} |