version 1.19, 2001/10/31 17:44:42
|
version 1.24, 2002/02/11 18:32:22
|
Line 1
|
Line 1
|
# The LearningOnline Network with CAPA |
# The LearningOnline Network with CAPA |
# Navigate Maps Handler |
# Navigate Maps Handler |
# |
# |
|
# $Id$ |
|
# |
|
# Copyright Michigan State University Board of Trustees |
|
# |
|
# This file is part of the LearningOnline Network with CAPA (LON-CAPA). |
|
# |
|
# LON-CAPA is free software; you can redistribute it and/or modify |
|
# it under the terms of the GNU General Public License as published by |
|
# the Free Software Foundation; either version 2 of the License, or |
|
# (at your option) any later version. |
|
# |
|
# LON-CAPA is distributed in the hope that it will be useful, |
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
# GNU General Public License for more details. |
|
# |
|
# You should have received a copy of the GNU General Public License |
|
# along with LON-CAPA; if not, write to the Free Software |
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
# |
|
# /home/httpd/html/adm/gpl.txt |
|
# |
|
# http://www.lon-capa.org/ |
|
# |
# (Page Handler |
# (Page Handler |
# |
# |
# (TeX Content Handler |
# (TeX Content Handler |
Line 10
|
Line 34
|
# 10/02,10/10,10/14,10/16,10/18,10/19,10/31,11/6,11/14,11/16 Gerd Kortemeyer) |
# 10/02,10/10,10/14,10/16,10/18,10/19,10/31,11/6,11/14,11/16 Gerd Kortemeyer) |
# |
# |
# 3/1/1,6/1,17/1,29/1,30/1,2/8,9/21,9/24,9/25 Gerd Kortemeyer |
# 3/1/1,6/1,17/1,29/1,30/1,2/8,9/21,9/24,9/25 Gerd Kortemeyer |
|
# YEAR=2002 |
|
# 1/1 Gerd Kortemeyer |
|
# |
|
|
package Apache::lonnavmaps; |
package Apache::lonnavmaps; |
|
|
Line 40 my %courseopt;
|
Line 67 my %courseopt;
|
my %useropt; |
my %useropt; |
my %parmhash; |
my %parmhash; |
|
|
|
|
# ------------------------------------------------------------------ Euclid gcd |
# ------------------------------------------------------------------ Euclid gcd |
|
|
sub euclid { |
sub euclid { |
Line 77 sub parmval {
|
Line 103 sub parmval {
|
my ($mapname,$id,$fn)=split(/\_\_\_/,$symb); |
my ($mapname,$id,$fn)=split(/\_\_\_/,$symb); |
|
|
# ----------------------------------------------------- Cascading lookup scheme |
# ----------------------------------------------------- Cascading lookup scheme |
my $rwhat=$what; |
my $rwhat=$what; |
$what=~s/^parameter\_//; |
$what=~s/^parameter\_//; |
$what=~s/\_/\./; |
$what=~s/\_/\./; |
|
|
my $symbparm=$symb.'.'.$what; |
my $symbparm=$symb.'.'.$what; |
my $mapparm=$mapname.'___(all).'.$what; |
my $mapparm=$mapname.'___(all).'.$what; |
my $usercourseprefix=$uname.'_'.$udom.'_'.$cid; |
my $usercourseprefix=$uname.'_'.$udom.'_'.$cid; |
|
|
my $seclevel= |
my $seclevel= $usercourseprefix.'.['.$csec.'].'.$what; |
$usercourseprefix.'.['. |
my $seclevelr=$usercourseprefix.'.['.$csec.'].'.$symbparm; |
$csec.'].'.$what; |
my $seclevelm=$usercourseprefix.'.['.$csec.'].'.$mapparm; |
my $seclevelr= |
|
$usercourseprefix.'.['. |
my $courselevel= $usercourseprefix.'.'.$what; |
$csec.'].'.$symbparm; |
my $courselevelr=$usercourseprefix.'.'.$symbparm; |
my $seclevelm= |
my $courselevelm=$usercourseprefix.'.'.$mapparm; |
$usercourseprefix.'.['. |
|
$csec.'].'.$mapparm; |
# ---------------------------------------------------------- first, check user |
|
if ($uname) { |
my $courselevel= |
if ($useropt{$courselevelr}) { return $useropt{$courselevelr}; } |
$usercourseprefix.'.'.$what; |
if ($useropt{$courselevelm}) { return $useropt{$courselevelm}; } |
my $courselevelr= |
if ($useropt{$courselevel}) { return $useropt{$courselevel}; } |
$usercourseprefix.'.'.$symbparm; |
} |
my $courselevelm= |
|
$usercourseprefix.'.'.$mapparm; |
|
|
|
# ---------------------------------------------------------- fourth, check user |
|
|
|
if ($uname) { |
|
|
|
if ($useropt{$courselevelr}) { return $useropt{$courselevelr}; } |
|
|
|
if ($useropt{$courselevelm}) { return $useropt{$courselevelm}; } |
|
|
|
if ($useropt{$courselevel}) { return $useropt{$courselevel}; } |
|
|
|
} |
|
|
|
# --------------------------------------------------------- third, check course |
|
|
|
if ($csec) { |
|
|
|
if ($courseopt{$seclevelr}) { return $courseopt{$seclevelr}; } |
|
|
|
if ($courseopt{$seclevelm}) { return $courseopt{$seclevelm}; } |
|
|
|
|
# ------------------------------------------------------- second, check course |
|
if ($csec) { |
|
if ($courseopt{$seclevelr}) { return $courseopt{$seclevelr}; } |
|
if ($courseopt{$seclevelm}) { return $courseopt{$seclevelm}; } |
if ($courseopt{$seclevel}) { return $courseopt{$seclevel}; } |
if ($courseopt{$seclevel}) { return $courseopt{$seclevel}; } |
|
} |
} |
|
|
|
if ($courseopt{$courselevelr}) { return $courseopt{$courselevelr}; } |
|
|
|
if ($courseopt{$courselevelm}) { return $courseopt{$courselevelm}; } |
|
|
|
if ($courseopt{$courselevel}) { return $courseopt{$courselevel}; } |
if ($courseopt{$courselevelr}) { return $courseopt{$courselevelr}; } |
|
if ($courseopt{$courselevelm}) { return $courseopt{$courselevelm}; } |
|
if ($courseopt{$courselevel}) { return $courseopt{$courselevel}; } |
|
|
# ----------------------------------------------------- second, check map parms |
# ----------------------------------------------------- third, check map parms |
|
|
my $thisparm=$parmhash{$symbparm}; |
my $thisparm=$parmhash{$symbparm}; |
if ($thisparm) { return $thisparm; } |
if ($thisparm) { return $thisparm; } |
|
|
# -------------------------------------------------------- first, check default |
# ----------------------------------------------------- fourth , check default |
|
|
return &Apache::lonnet::metadata($fn,$rwhat.'.default'); |
return &Apache::lonnet::metadata($fn,$rwhat.'.default'); |
|
|
} |
} |
|
|
|
|
Line 153 sub astatus {
|
Line 157 sub astatus {
|
my $ctext=''; |
my $ctext=''; |
$rid=~/(\d+)\.(\d+)/; |
$rid=~/(\d+)\.(\d+)/; |
my $symb=&Apache::lonnet::declutter($hash{'map_id_'.$1}).'___'.$2.'___'. |
my $symb=&Apache::lonnet::declutter($hash{'map_id_'.$1}).'___'.$2.'___'. |
&Apache::lonnet::declutter($hash{'src_'.$rid}); |
&Apache::lonnet::declutter($hash{'src_'.$rid}); |
|
|
my %duedate=(); |
my %duedate=(); |
my %opendate=(); |
my %opendate=(); |
Line 172 sub astatus {
|
Line 176 sub astatus {
|
|
|
my %returnhash=&Apache::lonnet::restore($symb); |
my %returnhash=&Apache::lonnet::restore($symb); |
|
|
map { |
map { |
|
my $duedate=$duedate{$_}; |
my $duedate=$duedate{$_}; |
my $opendate=$opendate{$_}; |
my $opendate=$opendate{$_}; |
my $answerdate=$answerdate{$_}; |
my $answerdate=$answerdate{$_}; |
my $preface=''; |
my $preface=''; |
unless ($_ eq '0') { $preface=' Part: '.$_.' '; } |
unless ($_ eq '0') { $preface=' Part: '.$_.' '; } |
if ($opendate) { |
if ($opendate) { |
if ($now<$duedate) { |
if ($now<$duedate) { |
unless ($tcode==4) { $tcode=2; } |
unless ($tcode==4) { $tcode=2; } |
$ctext.=$preface.'Due: '.localtime($duedate); |
$ctext.=$preface.'Due: '.localtime($duedate); |
if ($now<$opendate) { |
if ($now<$opendate) { |
unless ($tcode) { $tcode=1; } |
unless ($tcode) { $tcode=1; } |
$ctext.=$preface.'Open: '.localtime($opendate); |
$ctext.=$preface.'Open: '.localtime($opendate); |
} |
} |
if ($duedate-$now<86400) { |
if ($duedate-$now<86400) { |
$tcode=4; |
$tcode=4; |
$ctext.=$preface.'Due: '.localtime($duedate); |
$ctext.=$preface.'Due: '.localtime($duedate); |
} |
} |
} else { |
} else { |
unless (($tcode==4) || ($tcode eq 2)) { $tcode=3; } |
unless (($tcode==4) || ($tcode eq 2)) { $tcode=3; } |
if ($now<$answerdate) { |
if ($now<$answerdate) { |
$ctext.='Answer: '.localtime($duedate); |
$ctext.='Answer: '.localtime($duedate); |
} |
} |
} |
} |
} else { |
} else { |
unless (($tcode==2) || ($tcode==4)) { $tcode=1; } |
unless (($tcode==2) || ($tcode==4)) { $tcode=1; } |
} |
} |
|
|
my $status=$returnhash{'resource.'.$_.'.solved'}; |
my $status=$returnhash{'resource.'.$_.'.solved'}; |
|
|
if ($status eq 'correct_by_student') { |
if ($status eq 'correct_by_student') { |
unless ($code==2) { $code=3; } |
unless ($code==2) { $code=3; } |
$ctext.=' solved'; |
$ctext.=' solved'; |
} elsif ($status eq 'correct_by_override') { |
} elsif ($status eq 'correct_by_override') { |
unless ($code==2) { $code=3; } |
unless ($code==2) { $code=3; } |
$ctext.=' override'; |
$ctext.=' override'; |
} elsif ($status eq 'incorrect_attempted') { |
} elsif ($status eq 'incorrect_attempted') { |
$code=2; |
$code=2; |
$ctext.=' ('. |
$ctext.=' ('. |
($returnhash{'resource.'.$_.'.tries'}? |
($returnhash{'resource.'.$_.'.tries'}? |
$returnhash{'resource.'.$_.'.tries'}:'0').'/'. |
$returnhash{'resource.'.$_.'.tries'}:'0').'/'. |
|
&parmval($_.'.maxtries',$symb).' tries)'; |
&parmval($_.'.maxtries',$symb).' tries)'; |
} elsif ($status eq 'incorrect_by_override') { |
} elsif ($status eq 'incorrect_by_override') { |
$code=2; |
$code=2; |
$ctext.=' override'; |
$ctext.=' override'; |
} elsif ($status eq 'excused') { |
} elsif ($status eq 'excused') { |
unless ($code==2) { $code=3; } |
unless ($code==2) { $code=3; } |
$ctext.=' excused'; |
$ctext.=' excused'; |
} |
} |
|
|
} sort keys %opendate; |
} sort keys %opendate; |
|
|
return 'p'.$code.$tcode.'"'.$ctext.'"'; |
return 'p'.$code.$tcode.'"'.$ctext.'"'; |
} |
} |
Line 446 sub handler {
|
Line 449 sub handler {
|
$r->content_type('text/html'); |
$r->content_type('text/html'); |
&Apache::loncommon::no_cache($r); |
&Apache::loncommon::no_cache($r); |
$r->send_http_header; |
$r->send_http_header; |
|
|
my $date=localtime; |
my $date=localtime; |
|
my $now=time; |
|
# ----------------------------------------- Get email status and discussiontime |
|
|
|
my %emailstatus=&Apache::lonnet::dump('email_status'); |
|
my $logouttime=$emailstatus{'logout'}; |
|
my $courseleave= |
|
$emailstatus{'logout_'.$ENV{'request.course.id'}}; |
|
my $lastcheck= |
|
($courseleave>$logouttime?$courseleave:$logouttime); |
|
|
|
my %discussiontimes=&Apache::lonnet::dump( |
|
'discussiontimes', |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}, |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}); |
|
|
|
my %feedback=(); |
|
my %error=(); |
|
foreach my $msgid ( |
|
split(/\&/,&Apache::lonnet::reply('keys:'. |
|
$ENV{'user.domain'}.':'. |
|
$ENV{'user.name'}.':nohist_email', |
|
$ENV{'user.home'}))) { |
|
$msgid=&Apache::lonnet::unescape($msgid); |
|
my $plain=&Apache::lonnet::unescape( |
|
&Apache::lonnet::unescape($msgid)); |
|
if ($plain=~/(Error|Feedback) \[([^\]]+)\]/) { |
|
my ($what,$url)=($1,$2); |
|
my %status= |
|
&Apache::lonnet::get('email_status',[$msgid]); |
|
if ($status{$msgid}=~/^error\:/) { |
|
$status{$msgid}=''; |
|
} |
|
|
|
if (($status{$msgid} eq 'new') || |
|
(!$status{$msgid})) { |
|
if ($what eq 'Error') { |
|
$error{$url}.=','.$msgid; |
|
} else { |
|
$feedback{$url}.=','.$msgid; |
|
} |
|
} |
|
} |
|
} |
|
# ----------------------------------------------------------- Start Page Output |
$r->print( |
$r->print( |
'<html><head><title>Navigate LON-CAPA Maps</title></head>'); |
'<html><head><title>Navigate LON-CAPA Maps</title></head>'); |
$r->print('<body bgcolor="#FFFFFF"'); |
$r->print('<body bgcolor="#FFFFFF"'); |
Line 457 sub handler {
|
Line 505 sub handler {
|
} |
} |
$r->print('><script>window.focus();</script>'. |
$r->print('><script>window.focus();</script>'. |
'<img align=right src=/adm/lonIcons/lonlogos.gif>'. |
'<img align=right src=/adm/lonIcons/lonlogos.gif>'. |
'<h1>Navigate Course Map</h1>'); |
'<h1>Navigate Course Map</h1>'. |
|
"<h3>$date</h3>"); |
$r->rflush(); |
$r->rflush(); |
|
$r->print( |
|
'<img src="/adm/lonMisc/chat.gif"> New discussion since '. |
|
localtime($lastcheck). |
|
'<br><img src="/adm/lonMisc/feedback.gif"> New message (click to open)<p>'); |
if (($currenturl=~/^\/res/) && |
if (($currenturl=~/^\/res/) && |
($currenturl!~/^\/res\/adm/)) { |
($currenturl!~/^\/res\/adm/)) { |
$r->print('<a href="#curloc">Current Location</a><p>'); |
$r->print('<a href="#curloc">Current Location</a><p>'); |
Line 533 sub handler {
|
Line 586 sub handler {
|
} |
} |
if ($hash{'src_'.$rid} eq $currenturl) { |
if ($hash{'src_'.$rid} eq $currenturl) { |
$add=$add.'<a name="curloc"></a>'. |
$add=$add.'<a name="curloc"></a>'. |
'<font color=red><b>-> </b></font>'; |
'<font color=red size=+2><b>> </b></font>'; |
$adde= |
$adde= |
'<font color=red><b> <-</b></font>'.$adde; |
'<font color=red size=+2><b> <</b></font>'.$adde; |
|
} |
|
my $src= |
|
&Apache::lonnet::declutter($hash{'src_'.$rid}); |
|
$rid=~/^(\d+)\.(\d+)$/; |
|
my $symb= |
|
&Apache::lonnet::declutter($hash{'map_id_'.$1}).'___'.$2.'___'.$src; |
|
if ($discussiontimes{$symb}>$lastcheck) { |
|
$adde= |
|
'<img border=0 src="/adm/lonMisc/chat.gif">'. |
|
$adde; |
|
} |
|
if ($error{$src}) { |
|
foreach (split(/\,/,$error{$src})) { |
|
if ($_) { |
|
$adde= |
|
' <a href="/adm/email?display='. |
|
&Apache::lonnet::escape($_). |
|
'"><img src="/adm/lonMisc/bomb.gif" border=0></a>' |
|
.$adde; |
|
} |
|
} |
|
} |
|
if ($feedback{$src}) { |
|
foreach (split(/\,/,$feedback{$src})) { |
|
if ($_) { |
|
$adde= |
|
' <a href="/adm/email?display='. |
|
&Apache::lonnet::escape($_). |
|
'"><img src="/adm/lonMisc/feedback.gif" border=0></a>' |
|
.$adde; |
|
} |
|
} |
} |
} |
$r->print($add.'<a href="'.$hash{'src_'.$rid}. |
$r->print($add.'<a href="'.$hash{'src_'.$rid}. |
'">'.$hwk. |
'">'.$hwk. |