version 1.13.6.2, 2010/10/04 21:46:32
|
version 1.18, 2010/06/24 14:21:39
|
Line 67 sub real_handler {
|
Line 67 sub real_handler {
|
&Apache::loncommon::no_cache($r); |
&Apache::loncommon::no_cache($r); |
|
|
my %toplinkitems=(); |
my %toplinkitems=(); |
&Apache::lonnavmaps::add_linkitem(\%toplinkitems,'blank','', |
|
"Select Action"); |
|
if ($ENV{QUERY_STRING} eq 'collapseExternal') { |
|
&Apache::lonnet::put('environment',{'remotenavmap' => 'off'}); |
|
&Apache::lonnet::appenv({'environment.remotenavmap' => 'off'}); |
|
my $menu=&Apache::lonmenu::reopenmenu(); |
|
my $navstatus=&Apache::lonmenu::get_nav_status(); |
|
if ($menu) { |
|
$menu=(<<MENU) |
|
swmenu=$menu |
|
swmenu.clearTimeout(swmenu.menucltim); |
|
$navstatus |
|
MENU |
|
} else { |
|
my $nothing = &Apache::lonhtmlcommon::javascript_nothing(); |
|
my $mainwindow='window.open('.$nothing.',"loncapaclient","",false);'; |
|
$menu=(<<MENU) |
|
swmenu=$mainwindow |
|
$navstatus |
|
MENU |
|
} |
|
$r->send_http_header; |
|
my $js =<<"ENDSUBM"; |
|
<script type="text/javascript"> |
|
function submitthis() { |
|
$menu |
|
self.close(); |
|
} |
|
|
|
</script> |
|
ENDSUBM |
|
$r->print(&Apache::loncommon::start_page(undef,$js, |
|
{'only_body' => 1, |
|
'bgcolor' => '#FFFFFF', |
|
'add_entries' => |
|
{'onload' => |
|
"submitthis()"}}). |
|
&Apache::loncommon::end_page()); |
|
|
|
return OK; |
|
} |
|
if ($ENV{QUERY_STRING} =~ /^launchExternal/) { |
|
&Apache::lonnet::put('environment',{'remotenavmap' => 'on'}); |
|
&Apache::lonnet::appenv({'environment.remotenavmap' => 'on'}); |
|
my $menu=&Apache::lonmenu::reopenmenu(); |
|
my $navstatus=&Apache::lonmenu::get_nav_status(); |
|
if ($menu) { |
|
$r->print(<<MENU); |
|
<script type="text/javascript"> |
|
swmenu=$menu |
|
swmenu.clearTimeout(swmenu.menucltim); |
|
$navstatus |
|
</script> |
|
MENU |
|
} |
|
} |
|
if ($ENV{QUERY_STRING} eq 'turningOffExternal') { |
|
$env{'environment.remotenavmap'}='off'; |
|
} |
|
|
|
# Create the nav map |
# Create the nav map |
my $navmap = Apache::lonnavmaps::navmap->new(); |
my $navmap = Apache::lonnavmaps::navmap->new(); |
Line 142 MENU
|
Line 83 MENU
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['sort','showOnlyHomework','postsymb','register']); |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['sort','showOnlyHomework','postsymb','register']); |
|
|
# ----------------------------------------------------- Force menu registration |
# ----------------------------------------------------- Force menu registration |
my $body_only=''; |
|
my $js; |
|
if ($env{'environment.remotenavmap'} eq 'on') { |
|
$js='<script type="text/javascript"> |
|
function collapse() { |
|
this.document.location="/adm/navmaps?collapseExternal"; |
|
} |
|
</script>'; |
|
$body_only=1; |
|
} |
|
|
|
# Header |
# Header |
my $course_type = &Apache::loncommon::course_type(); |
my $course_type = &Apache::loncommon::course_type(); |
my ($title,$breadcrumb_text,$start_page,$args); |
my $title = $course_type . ' Contents'; |
if ($course_type eq 'Community') { |
my ($start_page,$args); |
$title = 'Community Contents'; |
|
$breadcrumb_text = &mt('Community Contents'); |
|
} else { |
|
$title = 'Course Contents'; |
|
$breadcrumb_text = &mt('Course Contents'); |
|
} |
|
if ($env{'form.register'}) { |
if ($env{'form.register'}) { |
$args = {'force_register' => $env{'form.register'}, |
$args = {'force_register' => $env{'form.register'}}; |
'only_body' => $body_only}; |
$start_page = &Apache::loncommon::start_page($title,undef,$args); |
$start_page = &Apache::loncommon::start_page($title,$js,$args); |
|
} else { |
} else { |
my $brcrum = [{href => '/adm/navmaps', |
my $brcrum = [{href => '/adm/navmaps', |
text => $breadcrumb_text, |
text => &mt($course_type . ' Contents'), |
no_mt => 1}, |
no_mt => 1}, |
]; |
]; |
$args = {'bread_crumbs' => $brcrum, |
$args = {'bread_crumbs' => $brcrum}; |
'only_body' => $body_only}; |
$start_page = &Apache::loncommon::start_page($title,undef,$args); |
$start_page = &Apache::loncommon::start_page($title,$js,$args); |
|
} |
} |
$r->print($start_page. |
$r->print($start_page. |
'<script type="text/javascript">window.focus();</script>'); |
'<script type="text/javascript">window.focus();</script>'); |
|
|
$r->rflush(); |
$r->rflush(); |
|
|
# Check that it's defined |
# Check that it's defined |
Line 214 MENU
|
Line 135 MENU
|
} |
} |
} |
} |
|
|
if ($ENV{QUERY_STRING} eq 'launchExternal') { |
|
$r->print(' |
|
<form name="returnwin" action="/adm/flip?postdata=navlaunch%3a" |
|
method="post" target="loncapaclient"> |
|
</form>'); |
|
$r->print(' |
|
<script type="text/javascript"> |
|
this.document.returnwin.submit(); |
|
</script>'); |
|
} |
|
|
|
if ($env{'environment.remotenavmap'} ne 'on') { |
|
$r->print(&launch_win('link','yes',\%toplinkitems)); |
|
} |
|
if ($env{'environment.remotenavmap'} eq 'on') { |
|
&Apache::lonnavmaps::add_linkitem(\%toplinkitems,'closenav', |
|
'collapse()', |
|
"Close navigation window"); |
|
} |
|
|
|
|
|
# Check to see if the student is jumping to next open, do-able problem |
# Check to see if the student is jumping to next open, do-able problem |
if ($ENV{QUERY_STRING} =~ /^jumpToFirstHomework/) { |
if ($ENV{QUERY_STRING} =~ /^jumpToFirstHomework/) { |
# Find the next homework problem that they can do. |
# Find the next homework problem that they can do. |
Line 279 MENU
|
Line 179 MENU
|
} else { |
} else { |
my $link = 'navmaps?jumpToFirstHomework'; |
my $link = 'navmaps?jumpToFirstHomework'; |
if ($env{'form.register'}) { |
if ($env{'form.register'}) { |
$link .= '&register='.$env{'form.register'}; |
$link .= '&register='.$env{'form.register'}; |
} |
} |
&Apache::lonnavmaps::add_linkitem(\%toplinkitems,'firsthomework', |
&Apache::lonnavmaps::add_linkitem(\%toplinkitems,'firsthomework', |
'location.href="'.$link.'"', |
'location.href="'.$link.'"', |
Line 304 MENU
|
Line 204 MENU
|
} |
} |
&Apache::lonnavmaps::add_linkitem(\%toplinkitems,'everything', |
&Apache::lonnavmaps::add_linkitem(\%toplinkitems,'everything', |
'location.href="'.$link.'"', |
'location.href="'.$link.'"', |
"Show everything"); |
'Show everything'); |
$r->print("<span class=\"LC_info\">".&mt("Uncompleted Problems")."</span>"); |
$r->print("<span class=\"LC_info\">".&mt("Uncompleted Problems")."</span>"); |
$env{'form.filter'} = ''; |
$env{'form.filter'} = ''; |
$env{'form.condition'} = 1; |
$env{'form.condition'} = 1; |
Line 316 MENU
|
Line 216 MENU
|
} |
} |
&Apache::lonnavmaps::add_linkitem(\%toplinkitems,'uncompleted', |
&Apache::lonnavmaps::add_linkitem(\%toplinkitems,'uncompleted', |
'location.href="'.$link.'"', |
'location.href="'.$link.'"', |
"Show only uncompleted problems"); |
'Show only uncompleted problems'); |
} |
} |
|
|
my %selected=($env{'form.sort'} => ' selected="selected"'); |
my %selected=($env{'form.sort'} => ' selected="selected"'); |
Line 366 MENU
|
Line 266 MENU
|
return OK; |
return OK; |
} |
} |
|
|
sub launch_win { |
|
my ($mode,$script,$toplinkitems,$firsttime)=@_; |
|
my $result; |
|
if ($script ne 'no') { |
|
$result.='<script type="text/javascript">'; |
|
} |
|
if ($firsttime) { |
|
$result.='function launch_navmapwin() { |
|
newWindow=open(\'/adm/navmaps?launchExternalRoles\',\'loncapanav\',\'width=400,height=600,scrollbars=1\'); |
|
}'; |
|
} else { |
|
$result.='function launch_navmapwin() { |
|
newWindow=open(\'/adm/navmaps?launchExternal\',\'loncapanav\',\'width=400,height=600,scrollbars=1\'); |
|
}'; |
|
} |
|
if ($mode eq 'now') { |
|
$result.="\nlaunch_navmapwin();\n"; |
|
} |
|
if ($script ne 'no') { |
|
$result.='</script>'; |
|
} |
|
if ($mode eq 'link') { |
|
&Apache::lonnavmaps::add_linkitem($toplinkitems,'launchnav', |
|
'launch_navmapwin()', |
|
"Launch navigation window"); |
|
} |
|
return $result; |
|
} |
|
|
|
1; |
1; |
__END__ |
__END__ |
|
|