--- loncom/interface/lonnavmaps.pm 2002/10/01 19:39:11 1.60
+++ loncom/interface/lonnavmaps.pm 2002/12/02 14:22:50 1.121
@@ -1,7 +1,8 @@
+
# The LearningOnline Network with CAPA
# Navigate Maps Handler
#
-# $Id: lonnavmaps.pm,v 1.60 2002/10/01 19:39:11 bowersj2 Exp $
+# $Id: lonnavmaps.pm,v 1.121 2002/12/02 14:22:50 bowersj2 Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -36,381 +37,26 @@
# 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
-#
+# Oct-Nov Jeremy Bowers
package Apache::lonnavmaps;
use strict;
use Apache::Constants qw(:common :http);
-use Apache::lonnet();
use Apache::loncommon();
-use HTML::TokeParser;
-use GDBM_File;
-
-# -------------------------------------------------------------- Module Globals
-my %hash;
-my @rows;
-
-#
-# These cache hashes need to be independent of user, resource and course
-# (user and course can/should be in the keys)
-#
-
-my %courserdatas;
-my %userrdatas;
-
-#
-# These global hashes are dependent on user, course and resource,
-# and need to be initialized every time when a sheet is calculated
-#
-my %courseopt;
-my %useropt;
-my %parmhash;
-
-# This parameter keeps track of whether obtaining the user's information
-# failed, which the colorizer in astatus can use
-my $networkFailedFlag = 0;
-
-# ------------------------------------------------------------------ Euclid gcd
-
-sub euclid {
- my ($e,$f)=@_;
- my $a; my $b; my $r;
- if ($e>$f) { $b=$e; $r=$f; } else { $r=$e; $b=$f; }
- while ($r!=0) {
- $a=$b; $b=$r;
- $r=$a%$b;
- }
- return $b;
-}
-
-# --------------------------------------------------------------------- Parmval
-
-# -------------------------------------------- Figure out a cascading parameter
-#
-# For this function to work
-#
-# * parmhash needs to be tied
-# * courseopt and useropt need to be initialized for this user and course
-#
-
-sub parmval {
- my ($what,$symb)=@_;
- my $cid=$ENV{'request.course.id'};
- my $csec=$ENV{'request.course.sec'};
- my $uname=$ENV{'user.name'};
- my $udom=$ENV{'user.domain'};
-
- unless ($symb) { return ''; }
- my $result='';
-
- my ($mapname,$id,$fn)=split(/\_\_\_/,$symb);
-
-# ----------------------------------------------------- Cascading lookup scheme
- my $rwhat=$what;
- $what=~s/^parameter\_//;
- $what=~s/\_/\./;
-
- my $symbparm=$symb.'.'.$what;
- my $mapparm=$mapname.'___(all).'.$what;
- my $usercourseprefix=$uname.'_'.$udom.'_'.$cid;
-
- my $seclevel= $usercourseprefix.'.['.$csec.'].'.$what;
- my $seclevelr=$usercourseprefix.'.['.$csec.'].'.$symbparm;
- my $seclevelm=$usercourseprefix.'.['.$csec.'].'.$mapparm;
-
- my $courselevel= $usercourseprefix.'.'.$what;
- my $courselevelr=$usercourseprefix.'.'.$symbparm;
- my $courselevelm=$usercourseprefix.'.'.$mapparm;
-
-# ---------------------------------------------------------- first, check user
- if (defined($uname)) {
- if (defined($useropt{$courselevelr})) { return $useropt{$courselevelr}; }
- if (defined($useropt{$courselevelm})) { return $useropt{$courselevelm}; }
- if (defined($useropt{$courselevel})) { return $useropt{$courselevel}; }
- }
-
-# ------------------------------------------------------- second, check course
- if (defined($csec)) {
- if (defined($courseopt{$seclevelr})) { return $courseopt{$seclevelr}; }
- if (defined($courseopt{$seclevelm})) { return $courseopt{$seclevelm}; }
- if (defined($courseopt{$seclevel})) { return $courseopt{$seclevel}; }
- }
-
- if (defined($courseopt{$courselevelr})) { return $courseopt{$courselevelr}; }
- if (defined($courseopt{$courselevelm})) { return $courseopt{$courselevelm}; }
- if (defined($courseopt{$courselevel})) { return $courseopt{$courselevel}; }
-
-# ----------------------------------------------------- third, check map parms
-
- my $thisparm=$parmhash{$symbparm};
- if (defined($thisparm)) { return $thisparm; }
-
-# ----------------------------------------------------- fourth , check default
-
- my $default=&Apache::lonnet::metadata($fn,$rwhat.'.default');
- if (defined($default)) { return $default}
-
-# --------------------------------------------------- fifth , cascade up parts
-
- my ($space,@qualifier)=split(/\./,$rwhat);
- my $qualifier=join('.',@qualifier);
- unless ($space eq '0') {
- my ($part,$id)=split(/\_/,$space);
- if ($id) {
- my $partgeneral=&parmval($part.".$qualifier",$symb);
- if (defined($partgeneral)) { return $partgeneral; }
- } else {
- my $resourcegeneral=&parmval("0.$qualifier",$symb);
- if (defined($resourcegeneral)) { return $resourcegeneral; }
- }
- }
- return '';
-}
-
-
-
-# ------------------------------------------------------------- Find out status
-# return codes
-# tcode (timecode)
-# 1: will open later
-# 2: is open and not past due yet
-# 3: is past due date
-# 4: due in the next 24 hours
-#
-# code (curent solved status)
-# 1: not attempted
-# 2: attempted but wrong, or incorrect by instructor
-# 3: solved or correct by instructor
-# 4: partially correct (one or more parts correct)
-# "excused" needs to be supported, but is not yet.
-sub astatus {
- my $rid=shift;
- my $code=0;
- my $ctext='';
- $rid=~/(\d+)\.(\d+)/;
- my $symb=&Apache::lonnet::declutter($hash{'map_id_'.$1}).'___'.$2.'___'.
- &Apache::lonnet::declutter($hash{'src_'.$rid});
- my %duedate=();
- my %opendate=();
- my %answerdate=();
- # need to always check part 0's open/due/answer status
- foreach (sort(split(/\,/,&Apache::lonnet::metadata($hash{'src_'.$rid},'allpo\ssiblekeys')))) {
- if ($_=~/^parameter\_(.*)\_opendate$/) {
- my $part=$1;
- $duedate{$part}=&parmval($part.'.duedate',$symb);
- $opendate{$part}=&parmval($part.'.opendate',$symb);
- $answerdate{$part}=&parmval($part.'.answerdate',$symb);
- if (&parmval($part.'.opendate.type',$symb) eq 'date_interval') {
- $opendate{$part}=$duedate{$part}-$opendate{$part};
- }
- if (&parmval($part.'.answerdate.type',$symb) eq 'date_interval') {
- $answerdate{$part}=$duedate{$part}+$answerdate{$part};
- }
- }
- }
- my $now=time;
- my $tcode=0;
-
- my %returnhash=&Apache::lonnet::restore($symb);
-
- foreach (sort(keys(%opendate))) {
- my $duedate=$duedate{$_};
- my $opendate=$opendate{$_};
- my $answerdate=$answerdate{$_};
- my $preface='';
- unless ($_ eq '0') { $preface=' Part: '.$_.' '; }
- if ($opendate) {
- if ($now<$duedate || (!$duedate)) {
- unless ($tcode==4) { $tcode=2; }
- if ($duedate) {
- $ctext.=$preface.'Due: '.localtime($duedate);
- } else {
- $ctext.=$preface.'No Due Date';
- }
- if ($now<$opendate) {
- unless ($tcode) { $tcode=1; }
- $ctext.=$preface.'Open: '.localtime($opendate);
- }
- if ($duedate && $duedate-$now<86400) {
- $tcode=4;
- $ctext.=$preface.'Due: '.localtime($duedate);
- }
- } else {
- unless (($tcode==4) || ($tcode eq 2)) { $tcode=3; }
- if ($now<$answerdate) {
- $ctext.='Answer: '.localtime($duedate);
- }
- }
- } else {
- unless (($tcode==2) || ($tcode==4)) { $tcode=1; }
- }
-
- my $status=$returnhash{'resource.'.$_.'.solved'};
-
- if ($status eq 'correct_by_student') {
- if ($code==0||$code==3) { $code=3; } else { $code=4; }
- $ctext.=' solved';
- } elsif ($status eq 'correct_by_override') {
- if ($code==0||$code==3) { $code=3; } else { $code=4; }
- $ctext.=' override';
- } elsif ($status eq 'incorrect_attempted') {
- if ($code!=4 && $code!=3) { $code=2; }
- if ($code==3) { $code=4; }
- $ctext.=' ('.
- ($returnhash{'resource.'.$_.'.tries'}?
- $returnhash{'resource.'.$_.'.tries'}:'0');
- my $numtries = &parmval($_.'.maxtries',$symb);
- if ($numtries) { $ctext.='/'.$numtries.' tries'; }
- $ctext.=')';
- } elsif ($status eq 'incorrect_by_override') {
- if ($code!=4 && $code!=3) { $code=2; }
- if ($code==3) { $code=4; }
- $ctext.=' override';
- } elsif ($status eq 'excused') {
- if ($code==0||$code==3) { $code=3; } else { $code=4; }
- $ctext.=' excused';
- } else {
- if ($code==0) { $code=1; }
- }
- }
-
- return 'p'.$code.$tcode.'"'.$ctext.'"';
-}
-
-
-sub addresource {
- my ($resource,$sofar,$rid,$showtypes,$indent,$linkid)=@_;
- if ($showtypes eq 'problems') {
- if ($resource!~/\.(problem|exam|quiz|assess|survey|form)$/) {
- return;
- }
- }
- my $brepriv=&Apache::lonnet::allowed('bre',$resource);
- if ($hash{'src_'.$rid}) {
- if (($brepriv eq '2') || ($brepriv eq 'F')) {
- my $pprefix='';
- if ($resource=~/\.(problem|exam|quiz|assess|survey|form)$/) {
- $pprefix=&astatus($rid);
- }
- $$sofar++;
- if ($indent) { $pprefix='i'.$indent.','.$pprefix; }
- if ($linkid) { $pprefix='l'.$linkid.','.$pprefix; }
- if (defined($rows[$$sofar])) {
- $rows[$$sofar].='&'.$pprefix.$rid;
- } else {
- $rows[$$sofar]=$pprefix.$rid;
- }
- }
- }
-}
-
-sub followlinks () {
- my ($rid,$sofar,$beenhere,$further,$showtypes,$indent,$linkid)=@_;
- my $mincond=1;
- my $next='';
- foreach (split(/\,/,$hash{'to_'.$rid})) {
- my $thiscond=
- &Apache::lonnet::directcondval($hash{'condid_'.$hash{'undercond_'.$_}});
- if ($thiscond>=$mincond) {
- if ($next) {
- $next.=','.$_.':'.$thiscond;
- } else {
- $next=$_.':'.$thiscond;
- }
- if ($thiscond>$mincond) { $mincond=$thiscond; }
- }
- }
- my $col=0;
- &Apache::lonxml::debug("following links -$next-");
- foreach (split(/\,/,$next)) {
- my ($nextlinkid,$condval)=split(/\:/,$_);
- if ($condval>=$mincond) {
- my $now=&tracetable($sofar,$hash{'goesto_'.$nextlinkid},
- $beenhere,$showtypes,$indent,$linkid);
- if ($now>$further) {
- if ($col>0) {
- my $string;
- for(my $i=0;$i<$col;$i++) { $string.='&'; }
- for(my $i=$further+1;$now-1>$i;$i++) {
- $rows[$i]=$string.$rows[$i];
- }
- }
- $further=$now;
- }
- }
- $col++;
- }
- return $further;
-}
-# ------------------------------------------------------------ Build page table
+use POSIX qw (floor strftime);
-sub tracetable {
- my ($sofar,$rid,$beenhere,$showtypes,$indent,$linkid)=@_;
- my $newshowtypes=$showtypes;
- my $further=$sofar;
-# $Apache::lonxml::debug=1;
- &Apache::lonxml::debug("$rid ; $linkid ; $sofar ; $beenhere ; ".$hash{'src_'.$rid});
- if ($beenhere=~/\&$rid\&/) { return $further; }
- $beenhere.=$rid.'&';
-
- if (defined($hash{'is_map_'.$rid})) {
- $sofar++;
- my $tprefix='';
- if ($hash{'map_type_'.$hash{'map_pc_'.$hash{'src_'.$rid}}}
- eq 'sequence') {
- $tprefix='h';
- } elsif ($hash{'map_type_'.$hash{'map_pc_'.$hash{'src_'.$rid}}}
- eq 'page') {
- $tprefix='j';
- if ($indent) { $tprefix='i'.$indent.','.$tprefix; }
- if ($linkid) { $tprefix='l'.$linkid.','.$tprefix; }
- $newshowtypes='problems';
- $indent++;
- #if in a .page continue to link the encompising .page
- if (!$linkid) { $linkid=$rid; }
- }
- if (defined($rows[$sofar])) {
- $rows[$sofar].='&'.$tprefix.$rid;
- } else {
- $rows[$sofar]=$tprefix.$rid;
- }
- if ((defined($hash{'map_start_'.$hash{'src_'.$rid}})) &&
- (defined($hash{'map_finish_'.$hash{'src_'.$rid}}))) {
- my $frid=$hash{'map_finish_'.$hash{'src_'.$rid}};
- $sofar=&tracetable($sofar,$hash{'map_start_'.$hash{'src_'.$rid}},
- '&'.$frid.'&',$newshowtypes,$indent,$linkid);
- &addresource($hash{'src_'.$frid},\$sofar,$frid,$newshowtypes,
- $indent,$linkid);
- if ($tprefix =~ /j$/) { $indent--; $linkid=''; }
- }
- } else {
- &addresource($hash{'src_'.$rid},\$sofar,$rid,$showtypes,
- $indent,$linkid);
- }
-
- if (defined($hash{'to_'.$rid})) {
- $further=&followlinks($rid,$sofar,$beenhere,$further,$showtypes,
- $indent,$linkid);
- }
-
- return $further;
+sub handler {
+ my $r = shift;
+ real_handler($r);
}
-# ================================================================ Main Handler
-
-sub handler {
- my $r=shift;
+sub real_handler {
+ my $r = shift;
&Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
- if ($ENV{'form.jtest'} ne "1")
- {
- return new_handle($r);
- }
-
-# ------------------------------------------- Set document type for header only
-
+ # Handle header-only request
if ($r->header_only) {
if ($ENV{'browser.mathml'}) {
$r->content_type('text/xml');
@@ -420,28 +66,8 @@ sub handler {
$r->send_http_header;
return OK;
}
- my $requrl=$r->uri;
- my $hashtied;
-# ----------------------------------------------------------------- Tie db file
- my $fn;
- if ($ENV{'request.course.fn'}) {
- $fn=$ENV{'request.course.fn'};
- if (-e "$fn.db") {
- if ((tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640)) &&
- (tie(%parmhash,'GDBM_File',
- $ENV{'request.course.fn'}.'_parms.db',
- &GDBM_READER(),0640))) {
- $hashtied=1;
- }
- }
- }
- if (!$hashtied) {
- $ENV{'user.error.msg'}="$requrl:bre:0:0:Course not initialized";
- return HTTP_NOT_ACCEPTABLE;
- }
-
-# ------------------------------------------------------------------- Hash tied
+ # Send header, don't cache this page
if ($ENV{'browser.mathml'}) {
$r->content_type('text/xml');
} else {
@@ -450,389 +76,110 @@ sub handler {
&Apache::loncommon::no_cache($r);
$r->send_http_header;
- my $firstres=$hash{'map_start_'.
- &Apache::lonnet::clutter($ENV{'request.course.uri'})};
- my $lastres=$hash{'map_finish_'.
- &Apache::lonnet::clutter($ENV{'request.course.uri'})};
- if (!(($firstres) && ($lastres))) {
- $r->print('
Coursemap undefined.');
- } else {
+ # Create the nav map
+ my $navmap = Apache::lonnavmaps::navmap->new(
+ $ENV{"request.course.fn"}.".db",
+ $ENV{"request.course.fn"}."_parms.db", 1, 1);
-# ----------------------------------------------------------------- Render page
-# -------------------------------------------------------------- Set parameters
+ if (!defined($navmap)) {
+ my $requrl = $r->uri;
+ $ENV{'user.error.msg'} = "$requrl:bre:0:0:Course not initialized";
+ return HTTP_NOT_ACCEPTABLE;
+ }
-# ---------------------------- initialize coursedata and userdata for this user
- undef %courseopt;
- undef %useropt;
+ $r->print("\n");
+ $r->print("Navigate Course Contents");
- my $uname=$ENV{'user.name'};
- my $udom=$ENV{'user.domain'};
- my $uhome=$ENV{'user.home'};
- my $cid=$ENV{'request.course.id'};
- my $chome=$ENV{'course.'.$cid.'.home'};
- my ($cdom,$cnum)=split(/\_/,$cid);
+ # Header
+ $r->print(&Apache::loncommon::bodytag('Navigate Course Contents','',
+ ''));
+ $r->print('');
- my $userprefix=$uname.'_'.$udom.'_';
+ $r->print('');
+
+ my $condition = 0;
+ if ($ENV{'form.condition'}) {
+ $condition = 1;
+ }
+
+ # Determine where the "here" marker is and where the screen jumps to.
+ my $SYMB = 1; my $URL = 2; my $NOTHING = 3; # symbolic constants
+ my $hereType; # the type of marker, $SYMB, $URL, or $NOTHING
+ my $here; # the actual URL or SYMB for the here marker
+ my $jumpType; # The type of the thing we have a jump for, $SYMB or $URL
+ my $jump; # the SYMB/URL of the resource we need to jump to
+
+ if ( $ENV{'form.alreadyHere'} ) { # we came from a user's manipulation of the nav page
+ # If this is a click on a folder or something, we want to preserve the "here"
+ # from the querystring, and get the new "jump" marker
+ $hereType = $ENV{'form.hereType'};
+ $here = $ENV{'form.here'};
+ $jumpType = $ENV{'form.jumpType'} || $NOTHING;
+ $jump = $ENV{'form.jump'};
+ } else { # the user is visiting the nav map from the remote
+ # We're coming from the remote. We have either a url, a symb, or nothing,
+ # and we need to figure out what.
+ # Preference: Symb
- unless ($uhome eq 'no_host') {
-# ------------------------------------------------- Get coursedata (if present)
- unless ((time-$courserdatas{$cid.'.last_cache'})<240) {
- my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.
- ':resourcedata',$chome);
- if ($reply!~/^error\:/) {
- $courserdatas{$cid}=$reply;
- $courserdatas{$cid.'.last_cache'}=time;
- }
- # check to see if network failed
- elsif ( $reply=~/no.such.host/i || $reply=~/con.*lost/i )
- {
- $networkFailedFlag = 1;
- }
- }
- foreach (split(/\&/,$courserdatas{$cid})) {
- my ($name,$value)=split(/\=/,$_);
- $courseopt{$userprefix.&Apache::lonnet::unescape($name)}=
- &Apache::lonnet::unescape($value);
- }
-# --------------------------------------------------- Get userdata (if present)
- unless ((time-$userrdatas{$uname.'___'.$udom.'.last_cache'})<240) {
- my $reply=&Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);
- if ($reply!~/^error\:/) {
- $userrdatas{$uname.'___'.$udom}=$reply;
- $userrdatas{$uname.'___'.$udom.'.last_cache'}=time;
- }
- }
- foreach (split(/\&/,$userrdatas{$uname.'___'.$udom})) {
- my ($name,$value)=split(/\=/,$_);
- $useropt{$userprefix.&Apache::lonnet::unescape($name)}=
- &Apache::lonnet::unescape($value);
- }
- }
-
- @rows=();
-
- &tracetable(0,$firstres,'&','',0);
-
-# ------------------------------------------------------------------ Page parms
-
- my $j;
- my $i;
- my $lcm=1;
- my $contents=0;
-
-# ---------------------------------------------- Go through table to get layout
-
- for ($i=0;$i<=$#rows;$i++) {
- if ($rows[$i]) {
- &Apache::lonxml::debug("Row $i is:".$rows[$i]);
- $contents++;
- my @colcont=split(/\&/,$rows[$i]);
- $lcm*=($#colcont+1)/euclid($lcm,($#colcont+1));
- }
- }
-
-
- unless ($contents) {
- $r->print('Empty Map.');
- } else {
-
-# ------------------------------------------------------------------ Build page
-
- my $currenturl=$ENV{'form.postdata'};
+ if ($ENV{'form.symb'}) {
+ $hereType = $jumpType = $SYMB;
+ $here = $jump = $ENV{'form.symb'};
+ } elsif ($ENV{'form.postdata'}) {
+ # couldn't find a symb, is there a URL?
+ my $currenturl = $ENV{'form.postdata'};
$currenturl=~s/^http\:\/\///;
$currenturl=~s/^[^\/]+//;
-# ---------------------------------------------------------------- Send headers
-
- 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',
- $cdom,$cnum);
-
- 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
- my $bodytagadd='';
- $r->print(
- 'Navigate Course Map');
- if (($currenturl=~/^\/res/) &&
- ($currenturl!~/^\/res\/adm/)) {
- $bodytagadd='onLoad="window.location.hash='."'curloc'".'"';
- }
- $r->print(&Apache::loncommon::bodytag('Navigate Course Map','',
- $bodytagadd));
- $r->print('');
- my $desc=$ENV{'course.'.$ENV{'request.course.id'}.'.description'};
- if (defined($desc)) { $r->print("$desc
\n"); }
- $r->print("$date
\n");
- $r->rflush();
- $r->print('
New discussion since '.
- localtime($lastcheck).
- '
New message (click to open)');
- if (($currenturl=~/^\/res/) &&
- ($currenturl!~/^\/res\/adm/)) {
- $r->print('Current Location
');
- }
-
- # Handle a network error
-
- if ($networkFailedFlag)
- {
- $r->print('
LON-CAPA network failure.
'."\n");
- $r->print("LON-CAPA's network is having difficulties, some problem" .
- " information, such as due dates, will not be available.");
- }
-# ----------------------------------------------------- The little content list
- for ($i=0;$i<=$#rows;$i++) {
- if ($rows[$i]) {
- my @colcont=split(/\&/,$rows[$i]);
- my $avespan=$lcm/($#colcont+1);
- for ($j=0;$j<=$#colcont;$j++) {
- my $rid=$colcont[$j];
- if ($rid=~/^h(.+)/) {
- $rid=$1;
- $r->print(' '.$hash{'title_'.$rid}.
- '
');
- }
- }
- }
- }
-# ----------------------------------------------------------------- Start table
- $r->print('
');
- for ($i=0;$i<=$#rows;$i++) {
- if ($rows[$i]) {
- $r->print("\n");
- my @colcont=split(/\&/,$rows[$i]);
- my $avespan=$lcm/($#colcont+1);
-
- # for each item I wish to print on this row...
- for ($j=0;$j<=$#colcont;$j++) {
- my $indent;my $indentstr;
- my $linkid;
- my $rid=$colcont[$j];
- $rid=~/(\d+)\.(\d+)$/;
- my $src=
- &Apache::lonnet::declutter($hash{'src_'.$1.'.'.$2});
- my $symb=
- &Apache::lonnet::declutter($hash{'map_id_'.$1}).'___'.$2.'___'.$src;
- my $add='';
- my $adde=' | ';
- my $hwk='';
- my $hwke='';
- if ($rid=~/^l(\d+\.\d+),(.+)/) { $linkid=$1; $rid=$2; }
- if ($rid=~/^i(\d+),(.+)/) { $indent=$1; $rid=$2; }
- if ($rid=~/^h(.+)/) {
- $rid=$1;
- $add='';
- $adde=' | ';
- if (($ENV{'user.adv'}) &&
- ($parmhash{$symb.'.0.parameter_randompick'})) {
- $adde=' (randomly select '.
- $parmhash{$symb.'.0.parameter_randompick'}.
- ')';
- }
- }
- if ($rid=~/^j(.+)/) { $rid=$1; }
- if ($rid=~/^p(\d)(\d)\"([\w\: \(\)\/\,]*)\"(.+)/) {
- # sub astatus describes what code/tcode mean
- my $code=$1;
- my $tcode=$2;
- my $ctext=$3;
- $rid=$4;
-
- # will open later
- if ($tcode eq '1') {
- $add='';
- }
-
- # solved/correct
- if ($code eq '3') {
- $add=' | ';
- } elsif ($code eq '4') { # partially correct
- $add=' | ';
- } else {
- # not attempted
-
- # we end up here on network failure, so pick a neutral
- # color if the network failed instead of bright red.
- if ( $networkFailedFlag )
- {
- $add = ' | ';
- }
- else
- {
- $add=' | ';
- }
-
- if ($tcode eq '2') { # open, not past due
- $add=' | ';
- }
-
- if ($tcode eq '4') { # due in next 24 hours
- $add=' | ';
- $adde=' | ';
- }
- }
- $hwk='';
- $hwke='';
- if ($code eq '1') {
- $hwke=' ('.$ctext.')';
- }
- if ($code eq '2' || $code eq '4') {
- $hwk='';
- $hwke=' ('.$ctext.')';
- }
- if ($code eq '3') {
- $hwk='';
- $hwke=' ('.$ctext.')';
- }
- if ($networkFailedFlag)
- {
- $hwke=' (status unavailable)';
- }
- }
- if ($rid && $hash{'src_'.$rid} eq $currenturl) {
- $add=$add.''.
- '> ';
- $adde=
- ' <'.$adde;
- }
- if ($discussiontimes{$symb}>$lastcheck) {
- $adde=
- '
'.
- $adde;
- }
- if ($error{$src}) {
- foreach (split(/\,/,$error{$src})) {
- if ($_) {
- $adde=
- '
'
- .$adde;
- }
- }
- }
- if ($feedback{$src}) {
- foreach (split(/\,/,$feedback{$src})) {
- if ($_) {
- $adde=
- '
'
- .$adde;
- }
- }
- }
- if ($indent) {
- my $is=" ";
- for(my $i=-1;$i<$indent;$i++) { $indentstr.=$is; }
- }
- if (!$linkid) { $linkid=$rid; }
- if ($hash{'randomout_'.$rid}) {
- $adde=' (hidden)'.$adde;
- }
- $r->print($add.$indentstr);
- if ($rid) {
- $r->print(''.
- $hwk.$hash{'title_'.$rid}.$hwke.'');
- }
- $r->print($adde);
- }
- $r->print('
');
- }
- }
- $r->print("\n
");
- $r->print('');
-# -------------------------------------------------------------------- End page
- }
-# ------------------------------------------------------------- End render page
- }
-# ------------------------------------------------------------------ Untie hash
- unless (untie(%hash)) {
- &Apache::lonnet::logthis("WARNING: ".
- "Could not untie coursemap $fn (browse).");
- }
- unless (untie(%parmhash)) {
- &Apache::lonnet::logthis("WARNING: ".
- "Could not untie parmhash (browse).");
- }
- return OK;
-}
-
-sub new_handle {
- my $r = shift;
-
- # Handle header-only request
- if ($r->header_only) {
- if ($ENV{'browser.mathml'}) {
- $r->content_type('text/xml');
+ $hereType = $jumpType = $URL;
+ $here = $jump = $currenturl;
} else {
- $r->content_type('text/html');
+ # Nothing
+ $hereType = $jumpType = $NOTHING;
}
- $r->send_http_header;
- return OK;
}
- # Send header, don't cache this page
- if ($ENV{'browser.mathml'}) {
- $r->content_type('text/xml');
+
+ # alreadyHere allows us to only open the maps necessary to view
+ # the current location once, while at the same time remembering
+ # the current location. Without that check, the user would never
+ # be able to close those maps; the user would close it, and the
+ # currenturl scan would re-open it.
+ my $queryAdd = "&alreadyHere=1";
+
+ if ($condition) {
+ $r->print("Close All Folders");
} else {
- $r->content_type('text/html');
+ $r->print("Open All Folders");
}
- &Apache::loncommon::no_cache($r);
- $r->send_http_header;
- # Header
- $r->print(&Apache::loncommon::bodytag('Navigate Course Map','',
- ''));
- # Initialize the nav map
- my $navmap = Apache::lonnavmaps::navmap->new(
- $ENV{"request.course.fn"}.".db",
- $ENV{"request.course.fn"}."_parms.db", 1);
+ $r->print('
');
+ $r->rflush();
-
- if (!defined($navmap)) {
- my $requrl = $r->uri;
- $ENV{'user.error.msg'} = "$requrl:bre:0:0:Course not initialized";
- return HTTP_NOT_ACCEPTABLE;
- }
+ # Now that we've displayed some stuff to the user, init the navmap
+ $navmap->init();
# Check that it's defined
if (!($navmap->courseMapDefined())) {
@@ -845,14 +192,17 @@ sub new_handle {
# is technically not proper, but should be harmless
my $res = $navmap->firstResource();
+ # These are some data tables, which make it easy to change some of
+ # of the specific visualization parameters if desired.
+
# Defines a status->color mapping, null string means don't color
my %colormap =
( $res->NETWORK_FAILURE => '',
$res->CORRECT => '',
- $res->EXCUSED => '#BBBBFF',
+ $res->EXCUSED => '#3333FF',
$res->PAST_DUE_ANSWER_LATER => '',
$res->PAST_DUE_NO_ANSWER => '',
- $res->ANSWER_OPEN => '#CCFFCC',
+ $res->ANSWER_OPEN => '#006600',
$res->OPEN_LATER => '',
$res->TRIES_LEFT => '',
$res->INCORRECT => '',
@@ -860,26 +210,33 @@ sub new_handle {
$res->NOTHING_SET => '' );
# And a special case in the nav map; what to do when the assignment
# is not yet done and due in less then 24 hours
- my $hurryUpColor = "#FFCCCC";
+ my $hurryUpColor = "#FF0000";
+ # Keep these mappings in sync with lonquickgrades, which uses the colors
+ # instead of the icons.
my %statusIconMap =
- ( $res->NETWORK_FAILURE => '',
- $res->NOTHING_SET => '',
- $res->CORRECT => 'navmap.correct.gif',
- $res->EXCUSED => 'navmap.correct.gif',
- $res->PAST_DUE_NO_ANSWER => 'navmap.wrong.gif',
- $res->PAST_DUE_ANSWER_LATER => 'navmap.wrong.gif',
- $res->ANSWER_OPEN => 'navmap.wrong.gif',
- $res->OPEN_LATER => '',
- $res->TRIES_LEFT => 'navmap.open.gif',
- $res->INCORRECT => 'navmap.wrong.gif',
- $res->OPEN => 'navmap.open.gif' );
+ ( $res->NETWORK_FAILURE => '',
+ $res->NOTHING_SET => '',
+ $res->CORRECT => 'navmap.correct.gif',
+ $res->EXCUSED => 'navmap.correct.gif',
+ $res->PAST_DUE_NO_ANSWER => 'navmap.wrong.gif',
+ $res->PAST_DUE_ANSWER_LATER => 'navmap.wrong.gif',
+ $res->ANSWER_OPEN => 'navmap.wrong.gif',
+ $res->OPEN_LATER => '',
+ $res->TRIES_LEFT => 'navmap.open.gif',
+ $res->INCORRECT => 'navmap.wrong.gif',
+ $res->OPEN => 'navmap.open.gif',
+ $res->ATTEMPTED => 'navmap.open.gif' );
+
+ my %iconAltTags =
+ ( 'navmap.correct.gif' => 'Correct',
+ 'navmap.wrong.gif' => 'Incorrect',
+ 'navmap.open.gif' => 'Open' );
my %condenseStatuses =
- ( $res->NETWORK_FAILURE => 1,
- $res->NOTHING_SET => 1,
- $res->CORRECT => 1,
- $res->OPEN => 1 );
+ ( $res->NETWORK_FAILURE => 1,
+ $res->NOTHING_SET => 1,
+ $res->CORRECT => 1 );
my %filterHash;
# Figure out what we're not displaying
@@ -889,21 +246,112 @@ sub new_handle {
}
}
+ # Is this a new-style course? If so, we want to suppress showing the top-level
+ # maps in their own folders, in favor of "inlining" them.
+ my $topResource = $navmap->getById("0.0");
+
# Begin the HTML table
# four cols: resource + indent, chat+feedback, icon, text string
- $r->print('' ."\n");
+ $r->print('' ."\n");
- my $mapIterator = $navmap->getIterator(undef, undef, \%filterHash);
+ # This needs to be updated to use symbs from the remote,
+ # instead of uris. The changes to this and the main rendering
+ # loop should be obvious.
+ # Here's a simple example of the iterator.
+ # Preprocess the map: Look for current URL, force inlined maps to display
+
+ my $mapIterator = $navmap->getIterator(undef, undef, undef, 1);
+ my $found = 0;
+ my $depth = 1;
+ my $currentJumpIndex = 0; # keeps track of when the current resource is found,
+ # so we can back up a few and put the anchor above the
+ # current resource
+ my $currentJumpDelta = 2; # change this to change how many resources are displayed
+ # before the current resource when using #current
+ $mapIterator->next(); # discard the first BEGIN_MAP
my $curRes = $mapIterator->next();
+ my $counter = 0;
+ my $foundJump = ($jumpType == $NOTHING); # look for jump point if we have one
+ my $looped = 0;
+
+ # We only need to do this if we need to open the maps to show the
+ # current position. This will change the counter so we can't count
+ # for the jump marker with this loop.
+ while ($depth > 0 && !$ENV{'form.alreadyHere'}) {
+ if ($curRes == $mapIterator->BEGIN_MAP()) { $depth++; }
+ if ($curRes == $mapIterator->END_MAP()) { $depth--; }
+
+ if (ref($curRes) && !$ENV{'form.alreadyHere'} &&
+ ($hereType == $SYMB && $curRes->symb() eq $here) ||
+ (ref($curRes) && $hereType == $URL && $curRes->src() eq $here)) {
+ my $mapStack = $mapIterator->getStack();
+
+ # Ensure the parent maps are open
+ for my $map (@{$mapStack}) {
+ if ($condition) {
+ undef $filterHash{$map->map_pc()};
+ } else {
+ $filterHash{$map->map_pc()} = 1;
+ }
+ }
+ $ENV{'form.alreadyHere'} = 1;
+ }
+ $looped = 1;
+
+ $curRes = $mapIterator->next();
+ }
+
+ $mapIterator = $navmap->getIterator(undef, undef, \%filterHash, 0);
+ $depth = 1;
+ $mapIterator->next();
+ $curRes = $mapIterator->next();
+
+ while ($depth > 0 && !$foundJump) {
+ if ($curRes == $mapIterator->BEGIN_MAP()) { $depth++; }
+ if ($curRes == $mapIterator->END_MAP()) { $depth--; }
+ if (ref($curRes)) { $counter++; }
+
+ if (ref($curRes) &&
+ (($jumpType == $SYMB && $curRes->symb() eq $jump) ||
+ ($jumpType == $URL && $curRes->src() eq $jump))) {
+ # If this is the correct resource, be sure to
+ # show it by making sure the containing maps
+ # are open.
+
+ # This is why we have to use the main iterator instead of the
+ # potentially faster DFS: The count has to be the same, so
+ # the order has to be the same, which DFS won't give us.
+ $currentJumpIndex = $counter;
+ $foundJump = 1;
+ }
+
+ $curRes = $mapIterator->next();
+ }
+
undef $res; # so we don't accidentally use it later
- my $indentLevel = -1;
- my $indentString = "
";
+ my $indentLevel = 0;
+ my $indentString = "
";
my $isNewBranch = 0;
my $now = time();
my $in24Hours = $now + 24 * 60 * 60;
+ my $displayedHereMarker = 0;
+ my $displayedJumpMarker = 0;
+
+ # We know the first thing is a BEGIN_MAP (see "$self->{STARTED}"
+ # code in iterator->next), so ignore the first one
+ $mapIterator = $navmap->getIterator(undef, undef, \%filterHash,
+ $condition);
+ $mapIterator->next();
+ $curRes = $mapIterator->next();
+ $depth = 1;
+
+ my @backgroundColors = ("#FFFFFF", "#F6F6F6");
+ my $rowNum = 0;
+
+ $counter = 0;
- while ($curRes != $mapIterator->END_NAV_MAP) {
+ while ($depth > 0) {
if ($curRes == $mapIterator->BEGIN_MAP() ||
$curRes == $mapIterator->BEGIN_BRANCH()) {
$indentLevel++;
@@ -915,184 +363,312 @@ sub new_handle {
if ($curRes == $mapIterator->BEGIN_BRANCH()) {
$isNewBranch = 1;
}
+ if ($curRes == $mapIterator->BEGIN_MAP()) { $depth++; }
+ if ($curRes == $mapIterator->END_MAP()) { $depth--; }
+
+ if (ref($curRes)) { $counter++; }
+
+ # Is this resource being ignored because it is in a random-out
+ # map and it was not selected?
+ if (ref($curRes) && !advancedUser() && $curRes->randomout()) {
+ $curRes = $mapIterator->next();
+ next; # if yes, then just ignore this resource
+ }
- if (ref($curRes) && $curRes->src()) {
+ if (ref($curRes)) {
- # Step one: Decide which parts to show
- my @parts;
+ my $deltalevel = $isNewBranch? 1 : 0; # reserves space for branch icon
+
+ if ($indentLevel - $deltalevel < 0) {
+ # If this would be at a negative depth (top-level maps in
+ # new-style courses, we want to suppress their title display)
+ # then ignore it.
+ $curRes = $mapIterator->next();
+ next;
+ }
+
+ # Step one: Decide which parts to show
+ my @parts = @{$curRes->parts()};
+ my $multipart = scalar(@parts) > 1;
+ my $condensed = 0;
+
if ($curRes->is_problem()) {
- # Is it multipart?
- @parts = @{$curRes->parts()};
- my $multipart = scalar(@parts) > 1;
-
- if ($multipart) {
- # If it's multipart, see if part 0 is "open"
- # if it is, display all parts, if it isn't,
- # just display first
- if (!$curRes->opendate("0")) {
- @parts = ("0"); # just display the zero-th part
- } else {
- # Otherwise, only display part 0 if we want to
- # attach feedback or email information to it
- if (!$curRes->hasDiscussion() && !$curRes->getFeedback()) {
- shift @parts;
- } else {
- # If there's discussion or feedback, that counts
- # as a difference, so display the parts.
-
- # Now, we decide whether to condense the
- # parts due to similarity
- my $status = $curRes->status($parts[0]);
- my $allSame = 1;
- for (my $i = 1; $i < scalar(@parts); $i++) {
- if ($curRes->status($parts[$i]) != $status){
- $allSame = 0;
- }
- }
-
- # $allSame is true if all the statuses were
- # the same. Now, if they are all the same and
- # match one of the statuses to condense, then
- # only display part 0.
- if ($allSame && defined($condenseStatuses{$status})){
- @parts = ("0");
- }
- }
- }
- }
+ # Is it multipart?
+ if ($multipart) {
+ # If it's multipart, see if part 0 is "open"
+ # if it is, display all parts, if it isn't,
+ # just display first
+ if (!$curRes->opendate("0")) {
+ # no parts are open, display as one part
+ @parts = ("0");
+ $condensed = 1;
+ } else {
+ # Otherwise, only display part 0 if we want to
+ # attach feedback or email information to it
+ if ($curRes->hasDiscussion() || $curRes->getFeedback()) {
+ shift @parts;
+ } else {
+ # Now, we decide whether to condense the
+ # parts due to similarity
+ my $status = $curRes->status($parts[1]);
+ my $due = $curRes->duedate($parts[1]);
+ my $open = $curRes->opendate($parts[1]);
+ my $statusAllSame = 1;
+ my $dueAllSame = 1;
+ my $openAllSame = 1;
+ for (my $i = 2; $i < scalar(@parts); $i++) {
+ if ($curRes->status($parts[$i]) != $status){
+ $statusAllSame = 0;
+ }
+ if ($curRes->duedate($parts[$i]) != $due ) {
+ $dueAllSame = 0;
+ }
+ if ($curRes->opendate($parts[$i]) != $open) {
+ $openAllSame = 0;
+ }
+ }
+
+ # $allSame is true if all the statuses were
+ # the same. Now, if they are all the same and
+ # match one of the statuses to condense, or they
+ # are all open with the same due date, or they are
+ # all OPEN_LATER with the same open date, display the
+ # status of the first non-zero part (to get the 'correct'
+ # status right, since 0 is never 'correct' or 'open').
+ if (($statusAllSame && defined($condenseStatuses{$status})) ||
+ ($dueAllSame && $status == $curRes->OPEN && $statusAllSame)||
+ ($openAllSame && $status == $curRes->OPEN_LATER && $statusAllSame) ){
+ @parts = ($parts[1]);
+ $condensed = 1;
+ }
+ }
+ }
+ }
} else {
- @parts[0] = "0"; # this is to get past foreach loop below
+ $parts[0] = "0"; # this is to get past foreach loop below
# you can consider a non-problem resource as a resource
- # with only one part without loss
+ # with only one part without loss, and it simplifies the looping
+ }
+
+ # Is it a multipart problem with a single part, now in
+ # @parts with "0" filtered out? If so, 'forget' it's a multi-part
+ # problem and treat it like a single-part problem.
+ if ( scalar(@parts) == 1 ) {
+ $multipart = 0;
+ }
+
+ # Display one part, in event of network error.
+ # If this is a single part, we can at least show the correct
+ # status, but if it's multipart, we're lost, since we can't
+ # retreive the metadata to count the parts
+ if ($curRes->{RESOURCE_ERROR}) {
+ @parts = ("0");
}
- # Step two: Show the parts
+ # Step Two: Print the actual data.
+
+ # For each part we intend to display...
foreach my $part (@parts) {
- my $deltalevel = 0; # for inserting the branch icon
+ my $nonLinkedText = ""; # unlinked stuff after title
- # For each thing we're displaying...
-
my $stack = $mapIterator->getStack();
my $src = getLinkForResource($stack);
+ # Pass the correct symb on the querystring, so the
+ # remote will figure out where we are if we click a link
my $srcHasQuestion = $src =~ /\?/;
my $link = $src.
($srcHasQuestion?'&':'?') .
'symb='.&Apache::lonnet::escape($curRes->symb()).
'"';
- my $title = $curRes->title();
+
+ my $title = $curRes->compTitle();
my $partLabel = "";
my $newBranchText = "";
# If this is a new branch, label it so
- # (temporary, this should be an icon w/ alt text)
if ($isNewBranch) {
$newBranchText = "
";
$isNewBranch = 0;
- $deltalevel = 1;
}
# links to open and close the folders
my $linkopen = "";
my $linkclose = "";
- my $icon = "html.gif";
+ my $icon = "
";
if ($curRes->is_problem()) {
- $icon = "problem.gif";
+ if ($part eq "0" || $condensed) {
+ $icon = '
';
+ } else {
+ $icon = $indentString;
+ }
}
# Display the correct icon, link to open or shut map
if ($curRes->is_map()) {
my $mapId = $curRes->map_pc();
- my $nowOpen = !defined($filterHash{$mapId});
+ my $nowOpen = (!defined($filterHash{$mapId}));
+ if ($condition) {$nowOpen = !$nowOpen;}
$icon = $nowOpen ?
- "folder_opened.gif" : "folder_closed.gif";
+ "navmap.folder.closed.gif" : "navmap.folder.open.gif";
+ $icon = "
";
$linkopen = "";
+ $linkopen .= "&condition=$condition&$queryAdd" .
+ "&hereType=$hereType&here=" .
+ Apache::lonnet::escape($here) . "&jumpType=$SYMB&" .
+ "jump=" . Apache::lonnet::escape($curRes->symb()) ."\">";
$linkclose = "";
-
+
}
my $colorizer = "";
+ my $color;
if ($curRes->is_problem()) {
- my $status = $curRes->status($part);
- my $color = $colormap{$status};
+ $color = $colormap{$curRes->status};
+
+ if (dueInLessThen24Hours($curRes, $part) ||
+ lastTry($curRes, $part)) {
+ $color = $hurryUpColor;
+ }
+
if ($color ne "") {
$colorizer = "bgcolor=\"$color\"";
}
}
- # FIRST ROW: The resource indentation, branch icon, and name
- $r->print(" \n");
+ if ($curRes->randomout()) {
+ $nonLinkedText .= ' (hidden) ';
+ }
+
+ $rowNum++;
+ my $backgroundColor = $backgroundColors[$rowNum % scalar(@backgroundColors)];
+
+ # FIRST COL: The resource indentation, branch icon, name, and anchor
+ $r->print(" |
\n");
+
+ # Print the anchor if necessary
+ if ($counter == $currentJumpIndex - $currentJumpDelta ) {
+ $r->print('');
+ $displayedJumpMarker = 1;
+ }
# print indentation
for (my $i = 0; $i < $indentLevel - $deltalevel; $i++) {
$r->print($indentString);
}
- $r->print(" ${newBranchText}${linkopen} ${linkclose}\n");
+ $r->print(" ${newBranchText}${linkopen}$icon${linkclose}\n");
+
+ my $curMarkerBegin = "";
+ my $curMarkerEnd = "";
- if ($curRes->is_problem() && $part != "0") { $partLabel = " (Part $part)"; }
+ # Is this the current resource?
+ if (!$displayedHereMarker &&
+ (($hereType == $SYMB && $curRes->symb eq $here) ||
+ ($hereType == $URL && $curRes->src eq $here))) {
+ $curMarkerBegin = '> ';
+ $curMarkerEnd = ' <';
+ $displayedHereMarker = 1;
+ }
- $r->print(" $title$partLabel | ");
+ if ($curRes->is_problem() && $part ne "0" && !$condensed) {
+ $partLabel = " (Part $part)";
+ $title = "";
+ }
+ if ($multipart && $condensed) {
+ $nonLinkedText .= ' (' . $curRes->countParts() . ' parts)';
+ }
- my $discussionHTML = ""; my $feedbackHTML = "";
+ $r->print(" $curMarkerBegin$title$partLabel $curMarkerEnd $nonLinkedText");
- # SECOND ROW: Is there text or feedback?
- if ($curRes->hasDiscussion()) {
- $discussionHTML = $linkopen .
- '
' .
- $linkclose;
- }
-
- if ($curRes->getFeedback()) {
- my $feedback = $curRes->getFeedback();
- foreach (split(/\,/, $feedback)) {
- if ($_) {
- $feedbackHTML .= ' '
- . '
';
- }
- }
- }
-
- $r->print("$discussionHTML$feedbackHTML | ");
-
- # THIRD ROW: Problem status icon
- if ($curRes->is_problem()) {
- my $icon = $statusIconMap{$curRes->status()};
- if ($icon) {
- $r->print("$linkopen $linkclose | \n");
- } else {
- $r->print(" | \n");
- }
- } else { # not problem, no icon
- $r->print(" | \n");
- }
+ #if ($curRes->{RESOURCE_ERROR}) {
+ # $r->print(&Apache::loncommon::help_open_topic ("Navmap_Host_Down",
+ # 'Host down'));
+ # }
- # FOURTH ROW: Text description
- $r->print("\n");
+ $r->print(" | \n");
+
+ # SECOND COL: Is there text, feedback, errors??
+ my $discussionHTML = ""; my $feedbackHTML = "";
+
+ if ($curRes->hasDiscussion()) {
+ $discussionHTML = $linkopen .
+ '
' .
+ $linkclose;
+ }
+
+ if ($curRes->getFeedback()) {
+ my $feedback = $curRes->getFeedback();
+ foreach (split(/\,/, $feedback)) {
+ if ($_) {
+ $feedbackHTML .= ' '
+ . '
';
+ }
+ }
+ }
+
+ $r->print("$discussionHTML$feedbackHTML | ");
+
+ # Is this the first displayed part of a multi-part problem
+ # that has not been condensed, so we should suppress these two
+ # columns so we don't display useless status info about part
+ # "0"?
+ my $firstDisplayed = !$condensed && $multipart && $part eq "0";
+
+ # THIRD COL: Problem status icon
+ if ($curRes->is_problem() &&
+ !$firstDisplayed) {
+ my $icon = $statusIconMap{$curRes->status($part)};
+ my $alt = $iconAltTags{$icon};
+ if ($icon) {
+ $r->print("$linkopen $linkclose | \n");
+ } else {
+ $r->print(" | \n");
+ }
+ } else { # not problem, no icon
+ $r->print(" | \n");
+ }
+
+ # FOURTH COL: Text description
+ $r->print("\n");
- if ($curRes->kind() eq "res" and
- $curRes->is_problem() ) {
+ if ($curRes->kind() eq "res" &&
+ $curRes->is_problem() &&
+ !$firstDisplayed) {
+ $r->print ("") if ($color);
$r->print (getDescription($curRes, $part));
+ $r->print ("") if ($color);
}
+ if ($curRes->is_map() && advancedUser() && $curRes->randompick()) {
+ $r->print('(randomly select ' . $curRes->randompick() .')');
+ }
+
+ $r->print(" |
\n");
- $r->print("\n");
+ if (!($counter % 20)) { $r->rflush(); }
+ if ($counter == 2) { $r->rflush(); }
}
}
$curRes = $mapIterator->next();
}
- $r->print("