File:  [LON-CAPA] / loncom / homework / inputtags.pm
Revision 1.195: download - view: text, annotated - select for diffs
Fri Jun 9 16:27:28 2006 UTC (17 years, 11 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- two reason to be in cannot_answer mode (exceeded tries or got it correct)

    1: # The LearningOnline Network with CAPA
    2: # input  definitons
    3: #
    4: # $Id: inputtags.pm,v 1.195 2006/06/09 16:27:28 albertel Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: 
   28: package Apache::inputtags;
   29: use HTML::Entities();
   30: use strict;
   31: use Apache::loncommon;
   32: use Apache::lonlocal;
   33: use Apache::lonnet;
   34: use lib '/home/httpd/lib/perl/';
   35: use LONCAPA;
   36:  
   37: 
   38: BEGIN {
   39:     &Apache::lonxml::register('Apache::inputtags',('hiddenline','textfield','textline'));
   40: }
   41: 
   42: #   Initializes a set of global variables used during the parse of the problem.
   43: #
   44: #  @Apache::inputtags::input        - List of current input ids.
   45: #  @Apache::inputtags::inputlist    - List of all input ids seen this problem.
   46: #  @Apache::inputtags::response     - List of all current resopnse ids.
   47: #  @Apache::inputtags::responselist - List of all response ids seen this 
   48: #                                       problem.
   49: #  @Apache::inputtags::hint         - List of all hint ids.
   50: #  @Apache::inputtags::hintlist     - List of all hint ids seen this problem.
   51: #  @Apache::inputtags::previous     - List describing if specific responseds
   52: #                                       have been used
   53: #  @Apache::inputtags::previous_version - Submission responses were used in.
   54: #  $Apache::inputtags::part         - Current part id (valid only in 
   55: #                                       <problem>)
   56: #                                     0 if not in a part.
   57: #  @Apache::inputtags::partlist     - List of part ids seen in the current
   58: #                                       <problem>
   59: #  @Apache::inputtags::status       - List of problem  statuses. First 
   60: #                                     element is the status of the <problem>
   61: #                                     the remainder are for individual <part>s.
   62: #  %Apache::inputtags::params       - Hash of defined parameters for the
   63: #                                     current response.
   64: #  @Apache::inputtags::import       - List of all ids for <import> thes get
   65: #                                     join()ed and prepended.
   66: #  @Apache::inputtags::importlist   - List of all import ids seen.
   67: #  $Apache::inputtags::response_with_no_part
   68: #                                   - Flag set true if we have seen a response
   69: #                                     that is not inside a <part>
   70: #  %Apache::inputtags::answertxt    - <*response> tags store correct
   71: #                                     answer strings for display by <textline/>
   72: #                                     in this hash.
   73: 
   74: sub initialize_inputtags {
   75:     @Apache::inputtags::input=();
   76:     @Apache::inputtags::inputlist=();
   77:     @Apache::inputtags::response=();
   78:     @Apache::inputtags::responselist=();
   79:     @Apache::inputtags::hint=();
   80:     @Apache::inputtags::hintlist=();
   81:     @Apache::inputtags::previous=();
   82:     @Apache::inputtags::previous_version=();
   83:     $Apache::inputtags::part='';
   84:     @Apache::inputtags::partlist=();
   85:     @Apache::inputtags::status=();
   86:     %Apache::inputtags::params=();
   87:     @Apache::inputtags::import=();
   88:     @Apache::inputtags::importlist=();
   89:     $Apache::inputtags::response_with_no_part=0;
   90:     %Apache::inputtags::answertxt=();
   91: }
   92: 
   93: sub check_for_duplicate_ids {
   94:     my %check;
   95:     foreach my $id (@Apache::inputtags::partlist,
   96: 		    @Apache::inputtags::responselist,
   97: 		    @Apache::inputtags::hintlist,
   98: 		    @Apache::inputtags::importlist) {
   99: 	$check{$id}++;
  100:     }
  101:     my @duplicates;
  102:     foreach my $id (sort(keys(%check))) {
  103: 	if ($check{$id} > 1) {
  104: 	    push(@duplicates,$id);
  105: 	}
  106:     }
  107:     if (@duplicates) {
  108: 	&Apache::lonxml::error("Duplicated ids found, problem will operate incorrectly. Duplicated ids seen: ",join(', ',@duplicates));
  109:     }
  110: }
  111: 
  112: sub start_input {
  113:     my ($parstack,$safeeval)=@_;
  114:     my $id = &Apache::lonxml::get_param('id',$parstack,$safeeval);
  115:     if ($id eq '') { $id = $Apache::lonxml::curdepth; }
  116:     push (@Apache::inputtags::input,$id);
  117:     push (@Apache::inputtags::inputlist,$id);
  118:     return $id;
  119: }
  120: 
  121: sub end_input {
  122:     pop @Apache::inputtags::input;
  123:     return '';
  124: }
  125: 
  126: sub addchars {
  127:     my ($fieldid,$addchars)=@_;
  128:     my $output='';
  129:     foreach (split(/\,/,$addchars)) {
  130: 	$output.='<a href="javascript:void(document.forms.lonhomework.'.
  131: 	    $fieldid.'.value+=\''.$_.'\')">'.$_.'</a> ';
  132:     }
  133:     return $output;
  134: }
  135: 
  136: sub start_textfield {
  137:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  138:     my $result = "";
  139:     my $id = &start_input($parstack,$safeeval);
  140:     my $resid=$Apache::inputtags::response[-1];
  141:     if ($target eq 'web') {
  142: 	$Apache::lonxml::evaluate--;
  143: 	if ($Apache::inputtags::status[-1] eq 'CAN_ANSWER') {
  144: 	    my $partid=$Apache::inputtags::part;
  145: 	    my $oldresponse = &HTML::Entities::encode($Apache::lonhomework::history{"resource.$partid.$resid.submission"},'<>&"');
  146: 	    my $cols = &Apache::lonxml::get_param('cols',$parstack,$safeeval);
  147: 	    if ( $cols eq '') { $cols = 80; }
  148: 	    my $rows = &Apache::lonxml::get_param('rows',$parstack,$safeeval);
  149: 	    if ( $rows eq '') { $rows = 16; }
  150: 	    my $addchars=&Apache::lonxml::get_param('addchars',$parstack,$safeeval);
  151: 	    $result='';
  152: 	    if ($addchars) {
  153: 		$result.=&addchars('HWVAL_'.$resid,$addchars);
  154: 	    }
  155: 	    &Apache::lonhtmlcommon::add_htmlareafields('HWVAL_'.$resid);
  156: 	    $result.= '<textarea wrap="hard" name="HWVAL_'.$resid.'" id="HWVAL_'.$resid.'" '.
  157: 		"rows=\"$rows\" cols=\"$cols\">".$oldresponse;
  158: 	    if ($oldresponse ne '') {
  159: 
  160: 		#get rid of any startup text if the user has already responded
  161: 		&Apache::lonxml::get_all_text("/textfield",$parser,$style);
  162: 	    }
  163: 	} else {
  164: 	    #right or wrong don't show it
  165: 	    #$result='<table border="1"><tr><td><i>'.$oldresponse.'</i></td></tr></table>';
  166: 	    $result='';
  167: 	    #get rid of any startup text
  168: 	    &Apache::lonxml::get_all_text("/textfield",$parser,$style);
  169: 	}
  170:     } elsif ($target eq 'grade') {
  171: 	my $seedtext=&Apache::lonxml::get_all_text("/textfield",$parser,
  172: 						   $style);
  173: 	if ($seedtext eq $env{'form.HWVAL_'.$resid}) {
  174: 	    # if the seed text is still there it wasn't a real submission
  175: 	    $env{'form.HWVAL_'.$resid}='';
  176: 	}
  177:     } elsif ($target eq 'edit') {
  178: 	$result.=&Apache::edit::tag_start($target,$token);
  179: 	$result.=&Apache::edit::text_arg('Rows:','rows',$token,4);
  180: 	$result.=&Apache::edit::text_arg('Columns:','cols',$token,4);
  181: 	$result.=&Apache::edit::text_arg
  182: 	    ('Click-On Texts (comma sep):','addchars',$token,10);
  183: 	my $bodytext=&Apache::lonxml::get_all_text("/textfield",$parser,
  184: 						   $style);
  185: 	$result.=&Apache::edit::editfield($token->[1],$bodytext,'Text you want to appear by default:',80,2);
  186:     } elsif ($target eq 'modified') {
  187: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
  188: 						     $safeeval,'rows','cols',
  189: 						     'addchars');
  190: 	if ($constructtag) {
  191: 	    $result = &Apache::edit::rebuild_tag($token);
  192: 	} else {
  193: 	    $result=$token->[4];
  194: 	}
  195: 	$result.=&Apache::edit::modifiedfield("/textfield",$parser);
  196:     } elsif ($target eq 'tex') {
  197: 	my $number_of_lines = &Apache::lonxml::get_param('rows',$parstack,$safeeval);
  198: 	my $width_of_box = &Apache::lonxml::get_param('cols',$parstack,$safeeval);
  199: 	if ($$tagstack[-2] eq 'essayresponse' and $Apache::lonhomework::type eq 'exam') {
  200: 	    $result = '\fbox{\fbox{\parbox{\textwidth-5mm}{';
  201: 	    for (my $i=0;$i<int $number_of_lines*2;$i++) {$result.='\strut \\\\ ';}
  202: 	    $result.='\strut \\\\\strut \\\\\strut \\\\\strut \\\\}}}';
  203: 	} else {
  204: 	    my $TeXwidth=$width_of_box/80;
  205: 	    $result = '\vskip 1 mm \fbox{\fbox{\parbox{'.$TeXwidth.'\textwidth-5mm}{';
  206: 	    for (my $i=0;$i<int $number_of_lines*2;$i++) {$result.='\strut \\\\ ';}
  207: 	    $result.='}}}\vskip 2 mm ';
  208: 	}
  209:     }
  210:     return $result;
  211: }
  212: 
  213: sub end_textfield {
  214:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  215:     my $result;
  216:     if ($target eq 'web') {
  217: 	$Apache::lonxml::evaluate++;
  218: 	if ($Apache::inputtags::status[-1] eq 'CAN_ANSWER') {
  219: 	    return "</textarea>";
  220: 	}
  221:     } elsif ($target eq 'edit') {
  222: 	$result=&Apache::edit::end_table();
  223:     }
  224:     &end_input;
  225:     return $result;
  226: }
  227: 
  228: sub exam_score_line {
  229:     my ($target) = @_;
  230: 
  231:     my $result;
  232:     if ($target eq 'tex') {
  233: 	my $repetition = &Apache::response::repetition();
  234: 	$result.='\begin{enumerate}';
  235: 	if ($env{'request.state'} eq "construct" ) {$result.='\item[\strut]';}
  236: 	foreach my $i (0..$repetition-1) {
  237: 	    $result.='\item[\textbf{'.
  238: 		($Apache::lonxml::counter+$i).
  239: 		'}.]\textit{Leave blank on scoring form}\vskip 0 mm';
  240: 	}
  241: 	$result.= '\end{enumerate}';
  242:     }
  243: 
  244:     return $result;
  245: }
  246: 
  247: sub exam_box {
  248:     my ($target) = @_;
  249:     my $result;
  250: 
  251:     if ($target eq 'tex') {
  252: 	$result .= '\fbox{\fbox{\parbox{\textwidth-5mm}{\strut\\\\\strut\\\\\strut\\\\\strut\\\\}}}';
  253: 	$result .= &exam_score_line($target);
  254:     } elsif ($target eq 'web') {
  255: 	my $id=$Apache::inputtags::response[-1];
  256: 	$result.= '<br /><br />
  257:                    <textarea name="HWVAL_'.$id.'" rows="4" cols="50">
  258:                    </textarea> <br /><br />';
  259:     }
  260:     return $result;
  261: }
  262: 
  263: sub needs_exam_box {
  264:     my ($tagstack) = @_;
  265:     my @tags = ('formularesponse',
  266: 		'stringresponse',
  267: 		'reactionresponse',
  268: 		'organicresponse',
  269: 		);
  270: 
  271:     foreach my $tag (@tags) {
  272: 	if (grep(/\Q$tag\E/,@$tagstack)) {
  273: 	    return 1;
  274: 	}
  275:     }
  276:     return 0;
  277: }
  278: 
  279: sub start_textline {
  280:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  281:     my $result = "";
  282:     if ($target eq 'web') {
  283: 	$Apache::lonxml::evaluate--;
  284: 	my $partid=$Apache::inputtags::part;
  285: 	my $id=$Apache::inputtags::response[-1];
  286: 	if ($Apache::inputtags::status[-1] eq 'CAN_ANSWER'
  287: 	    || ($Apache::inputtags::status[-1] eq 'CANNOT_ANSWER' &&
  288: 		$Apache::lonhomework::history{"resource.$partid.solved"} !~ /^correct/	)) {
  289: 	    my $size = &Apache::lonxml::get_param('size',$parstack,$safeeval);
  290: 	    my $maxlength;
  291: 	    if ($size eq '') { $size=20; } else {
  292: 		if ($size < 20) { $maxlength=$size; }
  293: 	    }
  294: 	    my $oldresponse = &HTML::Entities::encode($Apache::lonhomework::history{"resource.$partid.$id.submission"},'<>&"');
  295: 	    if ($Apache::lonhomework::type ne 'exam') {
  296: 		my $addchars=&Apache::lonxml::get_param('addchars',$parstack,$safeeval);
  297: 		$result='';
  298: 		if ($addchars) {
  299: 		    $result.=&addchars('HWVAL_'.$id,$addchars);
  300: 		}
  301: 		my $readonly=&Apache::lonxml::get_param('readonly',$parstack,
  302: 							$safeeval);
  303: 		if (lc($readonly) eq 'yes' 
  304: 		    || $Apache::inputtags::status[-1] eq 'CANNOT_ANSWER') {
  305: 		    $readonly=' readonly="readonly" ';
  306: 		} else {
  307: 		    $readonly='';
  308: 		}
  309: 		my $name = 'HWVAL_'.$id;
  310: 		if ($Apache::inputtags::status[-1] eq 'CANNOT_ANSWER') {
  311: 		    $name = "none";
  312: 		}
  313: 		$result.= '<input type="text" '.$readonly.' name="'.$name.'" value="'.
  314: 		    $oldresponse.'" size="'.$size.'" maxlength="'.$maxlength.'" />';
  315: 	    }
  316: 	    if ($Apache::lonhomework::type eq 'exam'
  317: 		&& &needs_exam_box($tagstack)) {
  318: 		$result.=&exam_box($target);
  319: 	    }
  320: 	} else {
  321: 	    #right or wrong don't show what was last typed in.
  322: 	    $result='<b>'.$Apache::inputtags::answertxt{$id}.'</b>';
  323: 	    #$result='';
  324: 	}
  325:     } elsif ($target eq 'edit') {
  326: 	$result=&Apache::edit::tag_start($target,$token);
  327: 	$result.=&Apache::edit::text_arg('Size:','size',$token,'5').
  328: 	    &Apache::edit::text_arg('Click-On Texts (comma sep):',
  329: 				    'addchars',$token,10);
  330:         $result.=&Apache::edit::select_arg('Readonly:','readonly',
  331: 					   ['no','yes'],$token);
  332: 	$result.=&Apache::edit::end_row();
  333: 	$result.=&Apache::edit::end_table();
  334:     } elsif ($target eq 'modified') {
  335: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
  336: 						     $safeeval,'size',
  337: 						     'addchars','readonly');
  338: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
  339:     } elsif ($target eq 'tex' 
  340: 	     && $Apache::lonhomework::type ne 'exam') {
  341: 	my $size = &Apache::lonxml::get_param('size',$parstack,$safeeval);
  342: 	if ($size != 0) {$size=$size*2; $size.=' mm';} else {$size='40 mm';}
  343: 	$result='\framebox['.$size.'][s]{\tiny\strut}';
  344: 
  345:     } elsif ($target eq 'tex' 
  346: 	     && $Apache::lonhomework::type eq 'exam'
  347: 	     && &needs_exam_box($tagstack)) {
  348: 	$result.=&exam_box($target);
  349:     }
  350:     return $result;
  351: }
  352: 
  353: sub end_textline {
  354:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  355:     if    ($target eq 'web') { $Apache::lonxml::evaluate++; }
  356:     elsif ($target eq 'edit') { return ('','no'); }
  357:     return "";
  358: }
  359: 
  360: sub start_hiddenline {
  361:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  362:     my $result = "";
  363:     if ($target eq 'web') {
  364: 	$Apache::lonxml::evaluate--;
  365: 	if ($Apache::inputtags::status[-1] eq 'CAN_ANSWER') {
  366: 	    my $partid=$Apache::inputtags::part;
  367: 	    my $id=$Apache::inputtags::response[-1];
  368: 	    my $oldresponse = &HTML::Entities::encode($Apache::lonhomework::history{"resource.$partid.$id.submission"},'<>&"');
  369: 	    if ($Apache::lonhomework::type ne 'exam') {
  370: 		$result= '<input type="hidden" name="HWVAL_'.$id.'" value="'.
  371: 		    $oldresponse.'" />';
  372: 	    }
  373: 	}
  374:     } elsif ($target eq 'edit') {
  375: 	$result=&Apache::edit::tag_start($target,$token);
  376: 	$result.=&Apache::edit::end_table;
  377:     }
  378: 
  379:     if ( ($target eq 'web' || $target eq 'tex')
  380: 	 && $Apache::lonhomework::type eq 'exam'
  381: 	 && &needs_exam_box($tagstack)) {
  382: 	$result.=&exam_box($target);
  383:     }
  384:     return $result;
  385: }
  386: 
  387: sub end_hiddenline {
  388:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  389:     if    ($target eq 'web') { $Apache::lonxml::evaluate++; }
  390:     elsif ($target eq 'edit') { return ('','no'); }
  391:     return "";
  392: }
  393: 
  394: # $part -> partid
  395: # $id -> responseid
  396: # $uploadefiletypes -> comma seperated list of extensions allowed or * for any
  397: # $which -> 'uploadedonly'  -> only newly uploaded files
  398: #           'portfolioonly' -> only allow files from portfolio
  399: #           'both' -> allow files from either location
  400: # $extratext -> additional text to go between the link and the input box
  401: # returns a table row <tr> 
  402: sub file_selector {
  403:     my ($part,$id,$uploadedfiletypes,$which,$extratext)=@_;
  404:     if (!$uploadedfiletypes) { return ''; }
  405: 
  406:     my $jspart=$part;
  407:     $jspart=~s/\./_/g;
  408: 
  409:     my $result;
  410:     
  411:     $result.='<tr><td>';
  412:     if ($uploadedfiletypes ne '*') {
  413: 	$result.=
  414: 	    &mt('Allowed filetypes: <b>[_1]</b>',$uploadedfiletypes).'<br />';
  415:     }
  416:     if ($which eq 'uploadonly' || $which eq 'both') { 
  417: 	$result.=&mt('Submit a file: (only one file can be uploaded)').
  418: 	    ' <br /><input type="file" size="50" name="HWFILE'.
  419: 	    $jspart.'_'.$id.'" /><br />';
  420: 	my $uploadedfile= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.uploadedfile"},'<>&"');
  421: 
  422: 	if ($uploadedfile) {
  423: 	    my $url=$Apache::lonhomework::history{"resource.$part.$id.uploadedurl"};
  424: 	    &Apache::lonxml::extlink($url);
  425: 	    &Apache::lonnet::allowuploaded('/adm/essayresponse',$url);
  426: 	    my $icon=&Apache::loncommon::icon($url);
  427: 	    my $curfile='<a href="'.$url.'"><img src="'.$icon.
  428: 		'" border="0" />'.$uploadedfile.'</a>';
  429: 	    $result.=&mt('Currently submitted: <tt>[_1]</tt>',$curfile);
  430: 	} else {
  431: 	    #$result.=&mt('(Hand in a file you have prepared on your computer)');
  432: 	}
  433:     }
  434:     if ( $which eq 'both') { 
  435: 	$result.='<br />'.'<strong>'.&mt('OR:').'</strong><br />';
  436:     }
  437:     if ($which eq 'portfolioonly' || $which eq 'both') { 
  438: 	$result.=$extratext.'<a href='."'".'javascript:void(window.open("/adm/portfolio?mode=selectfile&amp;fieldname=HWPORT'.$jspart.'_'.$id.'","cat","height=600,width=800,scrollbars=1,resizable=1,menubar=2,location=1"))'."'".'>'.
  439: 	    &mt('Select Portfolio Files').'</a><br />'.
  440: 	    '<input type="text" size="50" name="HWPORT'.$jspart.'_'.$id.'" value="" />'.
  441: 	    '<br />';
  442: 	if ($Apache::lonhomework::history{"resource.$part.$id.portfiles"}=~/[^\s]/){
  443: 	    my (@filelist,@bad_file_list);
  444: 	    foreach my $file (split(',',&unescape($Apache::lonhomework::history{"resource.$part.$id.portfiles"}))) {
  445: 		my (undef,undef,$domain,$user)=&Apache::lonxml::whichuser();
  446: 		my $url="/uploaded/$domain/$user/portfolio$file";
  447: 		my $icon=&Apache::loncommon::icon($url);
  448: 		push(@filelist,'<a href="'.$url.'"><img src="'.$icon.
  449: 		     '" border="0" />'.$file.'</a>');
  450: 		if (! &Apache::lonnet::stat_file($url)) {
  451: 		    &Apache::lonnet::logthis("bad file is $url");
  452: 		    push(@bad_file_list,'<a href="'.$url.'"><img src="'.$icon.
  453: 			 '" border="0" />'.$file.'</a>');
  454: 		}
  455: 	    }
  456: 	    $result.=&mt("Portfolio files previously selected: <strong>[_1]</strong>",join(', ',@filelist));
  457: 	    if (@bad_file_list) {
  458: 		$result.='<br />'.&mt('<font color="red">These file(s) don\'t exist:</font> <strong>[_1]</strong>',join(', ',@bad_file_list));
  459: 	    }
  460: 	}
  461:     }
  462:     $result.='</td></tr>'; 
  463:     return $result;
  464: }
  465: 
  466: sub checkstatus {
  467:     my ($value,$awardref,$msgref)=@_;
  468:     for (my $i=0;$i<=$#$awardref;$i++) {
  469: 	if ($$awardref[$i] eq $value) {
  470: 	    return ($$awardref[$i],$$msgref[$i]);
  471: 	}
  472:     }
  473:     return(undef,undef);
  474: }
  475: 
  476: sub valid_award {
  477:     my ($award) =@_;
  478:     foreach my $possibleaward ('EXTRA_ANSWER','MISSING_ANSWER', 'ERROR',
  479: 			       'NO_RESPONSE',
  480: 			       'TOO_LONG', 'UNIT_INVALID_INSTRUCTOR',
  481: 			       'UNIT_INVALID_STUDENT', 'UNIT_IRRECONCIBLE',
  482: 			       'UNIT_FAIL', 'NO_UNIT',
  483: 			       'UNIT_NOTNEEDED', 'WANTED_NUMERIC',
  484: 			       'BAD_FORMULA', 'SIG_FAIL', 'INCORRECT', 
  485: 			       'MISORDERED_RANK', 'INVALID_FILETYPE',
  486: 			       'DRAFT', 'SUBMITTED', 'ASSIGNED_SCORE',
  487: 			       'APPROX_ANS', 'EXACT_ANS','COMMA_FAIL') {
  488: 	if ($award eq $possibleaward) { return 1; }
  489:     }
  490:     return 0;
  491: }
  492: 
  493: sub finalizeawards {
  494:     my ($awardref,$msgref,$nameref,$reverse)=@_;
  495:     my $result=undef;
  496:     my $award;
  497:     my $msg;
  498:     if ($#$awardref == -1) { $result = "NO_RESPONSE"; }
  499:     if ($result eq '' ) {
  500: 	my $blankcount;
  501: 	foreach $award (@$awardref) {
  502: 	    if ($award eq '') {
  503: 		$result='MISSING_ANSWER';
  504: 		$blankcount++;
  505: 	    }
  506: 	}
  507: 	if ($blankcount == ($#$awardref + 1)) { $result = 'NO_RESPONSE'; }
  508:     }
  509:     if (defined($result)) { return ($result,$msg); }
  510: 
  511:     # these awards are ordered from most important error through best correct
  512:     
  513:     my @awards = ('EXTRA_ANSWER', 'MISSING_ANSWER', 'ERROR', 'NO_RESPONSE',
  514: 		  'TOO_LONG',
  515: 		  'UNIT_INVALID_INSTRUCTOR', 'UNIT_INVALID_STUDENT',
  516: 		  'UNIT_IRRECONCIBLE', 'UNIT_FAIL', 'NO_UNIT',
  517: 		  'UNIT_NOTNEEDED', 'WANTED_NUMERIC', 'BAD_FORMULA',
  518: 		  'COMMA_FAIL', 'SIG_FAIL', 'INCORRECT', 'MISORDERED_RANK',
  519: 		  'INVALID_FILETYPE', 'DRAFT', 'SUBMITTED', 'ASSIGNED_SCORE',
  520: 		  'APPROX_ANS', 'EXACT_ANS');
  521:     if ($reverse) { @awards=reverse(@awards); }
  522:     foreach my $possibleaward (@awards) {
  523: 	($result,$msg)=&checkstatus($possibleaward,$awardref,$msgref);
  524: 	if (defined($result)) { return ($result,$msg); }
  525:     }
  526:     return ('ERROR',undef);
  527: }
  528: 
  529: sub decideoutput {
  530:     my ($award,$awarded,$awardmsg,$solved,$previous,$target)=@_;
  531:     my $message='';
  532:     my $button=0;
  533:     my $previousmsg;
  534:     my $bgcolor='orange';
  535:     my $added_computer_text=0;
  536:     my %possiblecolors =
  537: 	( 'correct' => '#aaffaa',
  538: 	  'charged_try' => '#ffaaaa',
  539: 	  'not_charged_try' => '#ffffaa',
  540: 	  'no_message' => '#fffff',
  541: 	  );
  542: 
  543:     my $part = $Apache::inputtags::part;
  544:     my $handgrade = 
  545: 	('yes' eq lc(&Apache::lonnet::EXT("resource.$part.handgrade")));
  546:     
  547:     my $computer = ($handgrade)? ''
  548: 	                       : " ".&mt("Computer's answer now shown above.");
  549:     &Apache::lonxml::debug("handgrade has :$handgrade:");
  550: 
  551:     if ($previous) { $previousmsg=&mt('You have entered that answer before'); }
  552:     
  553:     if ($solved =~ /^correct/) {
  554:         $bgcolor=$possiblecolors{'correct'};
  555: 	$message=&mt('You are correct.');
  556: 	if ($awarded < 1 && $awarded > 0) {
  557: 	    $message=&mt('You are partially correct.');
  558: 	    $bgcolor=$possiblecolors{'not_charged_try'};
  559: 	} elsif ($awarded < 1) {
  560: 	    $message=&mt('Incorrect.');
  561: 	    $bgcolor=$possiblecolors{'charged_try'};
  562: 	}
  563: 	if ($env{'request.filename'} =~ 
  564: 	    m|/res/lib/templates/examupload.problem$|) {
  565: 	    $message = &mt("A score has been assigned.");
  566: 	    $added_computer_text=1;
  567: 	} else {
  568: 	    if ($target eq 'tex') {
  569: 		$message = '\textbf{'.$message.'}';
  570: 	    } else {
  571: 		$message = "<b>".$message."</b>";
  572: 		$message.= $computer;
  573: 	    }
  574: 	    $added_computer_text=1;
  575: 	    unless ($env{'course.'.
  576: 			     $env{'request.course.id'}.
  577: 			     '.disable_receipt_display'} eq 'yes') { 
  578: 		$message.=(($target eq 'web')?'<br />':' ').
  579: 		    &mt('Your receipt is').' '.&Apache::lonnet::receipt($Apache::inputtags::part).
  580: 		    (($target eq 'web')?&Apache::loncommon::help_open_topic('Receipt'):'');
  581: 	    }
  582: 	}
  583: 	$button=0;
  584: 	$previousmsg='';
  585:     } elsif ($solved =~ /^excused/) {
  586: 	if ($target eq 'tex') {
  587: 	    $message = ' \textbf{'.&mt('You are excused from the problem.').'} ';
  588: 	} else {
  589: 	    $message = "<b>".&mt('You are excused from the problem.')."</b>";
  590: 	}
  591: 	$bgcolor=$possiblecolors{'charged_try'};
  592: 	$button=0;
  593: 	$previousmsg='';
  594:     } elsif ($award eq 'EXACT_ANS' || $award eq 'APPROX_ANS' ) {
  595: 	if ($solved =~ /^incorrect/ || $solved eq '') {
  596: 	    $message = &mt("Incorrect").".";
  597: 	    $bgcolor=$possiblecolors{'charged_try'};
  598: 	    $button=1;
  599: 	} else {
  600: 	    if ($target eq 'tex') {
  601: 		$message = '\textbf{'.&mt('You are correct.').'}';
  602: 	    } else {
  603: 		$message = "<b>".&mt('You are correct.')."</b>";
  604: 		$message.= $computer;
  605: 	    }
  606: 	    $added_computer_text=1;
  607: 	    unless ($env{'course.'.
  608: 			     $env{'request.course.id'}.
  609: 			     '.disable_receipt_display'} eq 'yes') { 
  610: 		$message.=(($target eq 'web')?'<br />':' ').
  611: 		    'Your receipt is '.&Apache::lonnet::receipt($Apache::inputtags::part).
  612: 		    (($target eq 'web')?&Apache::loncommon::help_open_topic('Receipt'):'');
  613: 	    }
  614: 	    $bgcolor=$possiblecolors{'correct'};
  615: 	    $button=0;
  616: 	    $previousmsg='';
  617: 	}
  618:     } elsif ($award eq 'NO_RESPONSE') {
  619: 	$message = '';
  620: 	$bgcolor=$possiblecolors{'no_feedback'};
  621: 	$button=1;
  622:     } elsif ($award eq 'EXTRA_ANSWER') {
  623: 	$message = &mt('Some extra items were submitted.');
  624: 	$bgcolor=$possiblecolors{'not_charged_try'};
  625: 	$button = 1;
  626:     } elsif ($award eq 'MISSING_ANSWER') {
  627: 	$message = &mt('Some items were not submitted.');
  628: 	$bgcolor=$possiblecolors{'not_charged_try'};
  629: 	$button = 1;
  630:     } elsif ($award eq 'ERROR') {
  631: 	$message = &mt('An error occured while grading your answer.');
  632: 	$bgcolor=$possiblecolors{'not_charged_try'};
  633: 	$button = 1;
  634:     } elsif ($award eq 'TOO_LONG') {
  635: 	$message = &mt("The submitted answer was too long.");
  636: 	$bgcolor=$possiblecolors{'not_charged_try'};
  637: 	$button=1;
  638:     } elsif ($award eq 'WANTED_NUMERIC') {
  639: 	$message = &mt("This question expects a numeric answer.");
  640: 	$bgcolor=$possiblecolors{'not_charged_try'};
  641: 	$button=1;
  642:     } elsif ($award eq 'MISORDERED_RANK') {
  643: 	$message = &mt('You have provided an invalid ranking');
  644: 	if ($target ne 'tex') {
  645: 	    $message.=', '.&mt('please refer to').' '.&Apache::loncommon::help_open_topic('Ranking_Problems','help on ranking problems');
  646: 	}
  647: 	$bgcolor=$possiblecolors{'not_charged_try'};
  648: 	$button=1;
  649:     } elsif ($award eq 'INVALID_FILETYPE') {
  650: 	$message = &mt('Submission won\'t be graded. The type of file submitted is not allowed.');
  651: 	$bgcolor=$possiblecolors{'not_charged_try'};
  652: 	$button=1;
  653:     } elsif ($award eq 'SIG_FAIL') {
  654: 	my ($used,$min,$max)=split(':',$awardmsg);
  655: 	my $word;
  656: 	if ($used < $min) { $word=&mt('more'); }
  657: 	if ($used > $max) { $word=&mt('fewer'); }
  658: 	$message = &mt("Submission not graded.  Use [_2] digits.",$used,$word);
  659: 	$bgcolor=$possiblecolors{'not_charged_try'};
  660: 	$button=1;
  661:     } elsif ($award eq 'UNIT_INVALID_INSTRUCTOR') {
  662: 	$message = &mt('Error in instructor specifed unit. This error has been reported to the instructor.', $awardmsg);
  663: 	if ($target ne 'tex') {$message.=&Apache::loncommon::help_open_topic('Physical_Units');} 
  664: 	$bgcolor=$possiblecolors{'not_charged_try'};
  665: 	$button=1;
  666:     } elsif ($award eq 'UNIT_INVALID_STUDENT') {
  667: 	$message = &mt('Unable to interpret units. Computer reads units as "[_1]".',&markup_unit($awardmsg,$target));
  668: 	if ($target ne 'tex') {$message.=&Apache::loncommon::help_open_topic('Physical_Units');} 
  669: 	$bgcolor=$possiblecolors{'not_charged_try'};
  670: 	$button=1;
  671:     } elsif ($award eq 'UNIT_FAIL' || $award eq 'UNIT_IRRECONCIBLE') {
  672: 	$message = &mt('Incompatible units. No conversion found between "[_1]" and the required units.',&markup_unit($awardmsg,$target));
  673: 	if ($target ne 'tex') {$message.=&Apache::loncommon::help_open_topic('Physical_Units');} 
  674: 	$bgcolor=$possiblecolors{'not_charged_try'};
  675: 	$button=1;
  676:     } elsif ($award eq 'UNIT_NOTNEEDED') {
  677: 	$message = &mt('Only a number required. Computer reads units of "[_1]".',&markup_unit($awardmsg,$target));
  678: 	$bgcolor=$possiblecolors{'not_charged_try'};
  679: 	$button=1;
  680:     } elsif ($award eq 'NO_UNIT') {
  681: 	$message = &mt("Units required").'.';
  682: 	if ($target ne 'tex') {$message.=&Apache::loncommon::help_open_topic('Physical_Units')};
  683: 	$bgcolor=$possiblecolors{'not_charged_try'};
  684: 	$button=1;
  685:     } elsif ($award eq 'COMMA_FAIL') {
  686: 	$message = &mt("Proper comma separation is required").'.';
  687: 	$bgcolor=$possiblecolors{'not_charged_try'};
  688: 	$button=1;
  689:     } elsif ($award eq 'BAD_FORMULA') {
  690: 	$message = &mt("Unable to understand formula");
  691: 	$bgcolor=$possiblecolors{'not_charged_try'};
  692: 	$button=1;
  693:     } elsif ($award eq 'INCORRECT') {
  694: 	$message = &mt("Incorrect").'.';
  695: 	$bgcolor=$possiblecolors{'charged_try'};
  696: 	$button=1;
  697:     } elsif ($award eq 'SUBMITTED') {
  698: 	$message = &mt("Your submission has been recorded.");
  699: 	$bgcolor=$possiblecolors{'correct'};
  700: 	$button=1;
  701:     } elsif ($award eq 'DRAFT') {
  702: 	$message = &mt("A draft copy has been saved.");
  703: 	$bgcolor=$possiblecolors{'not_charged_try'};
  704: 	$button=1;
  705:     } elsif ($award eq 'ASSIGNED_SCORE') {
  706: 	$message = &mt("A score has been assigned.");
  707: 	$bgcolor=$possiblecolors{'correct'};
  708: 	$button=0;
  709:     } elsif ($award eq '') {
  710: 	if ($handgrade && $Apache::inputtags::status[-1] eq 'SHOW_ANSWER') {
  711: 	    $message = &mt("Nothing submitted.");
  712: 	    $bgcolor=$possiblecolors{'charged_try'};
  713: 	} else {
  714: 	    $bgcolor=$possiblecolors{'not_charged_try'};
  715: 	}
  716: 	$button=1;
  717:     } else {
  718: 	$message = &mt("Unknown message").": $award";
  719: 	$button=1;
  720:     }
  721:     my (undef,undef,$domain,$user)=&Apache::lonxml::whichuser();
  722:     foreach my $resid(@Apache::inputtags::response){
  723:         &Apache::lonnet::logthis("handback is ".$Apache::lonhomework::history{"resource.$part.$resid.handback"});
  724:         if ($Apache::lonhomework::history{"resource.$part.$resid.handback"}) {
  725:             $message.= '<br /><a href="/uploaded/'."$domain/$user".'/portfolio/'.$Apache::lonhomework::history{"resource.$part.$resid.handback"}.'">Returned File</a>';
  726:         }
  727:     }
  728: 
  729:     if (lc($Apache::lonhomework::problemstatus) eq 'no'  && 
  730: 	$Apache::inputtags::status[-1] ne 'SHOW_ANSWER') {
  731: 	$message = &mt("Answer Submitted: Your final submission will be graded after the due date.");
  732: 	$bgcolor=$possiblecolors{'correct'};
  733: 	$button=1;
  734:     }
  735:     if ($Apache::inputtags::status[-1] eq 'SHOW_ANSWER' && 
  736: 	!$added_computer_text && $target ne 'tex') {
  737: 	$message.= $computer;
  738: 	$added_computer_text=1;
  739:     }
  740:     return ($button,$bgcolor,$message,$previousmsg);
  741: }
  742: 
  743: sub markup_unit {
  744:     my ($unit,$target)=@_;
  745:     if ($target eq 'tex') {
  746: 	return '\texttt{'.&Apache::lonxml::latex_special_symbols($unit).'}'; 
  747:     } else {
  748: 	return "<tt>".$unit."</tt>";
  749:     }
  750: }
  751: 
  752: sub removealldata {
  753:     my ($id)=@_;
  754:     foreach my $key (keys(%Apache::lonhomework::results)) {
  755: 	if (($key =~ /^resource\.\Q$id\E\./) && ($key !~ /\.collaborators$/)) {
  756: 	    &Apache::lonxml::debug("Removing $key");
  757: 	    delete($Apache::lonhomework::results{$key});
  758: 	}
  759:     }
  760: }
  761: 
  762: sub hidealldata {
  763:     my ($id)=@_;
  764:     foreach my $key (keys(%Apache::lonhomework::results)) {
  765: 	if (($key =~ /^resource\.\Q$id\E\./) && ($key !~ /\.collaborators$/)) {
  766: 	    &Apache::lonxml::debug("Hidding $key");
  767: 	    my $newkey=$key;
  768: 	    $newkey=~s/^(resource\.\Q$id\E\.[^\.]+\.)(.*)$/${1}hidden${2}/;
  769: 	    $Apache::lonhomework::results{$newkey}=
  770: 		$Apache::lonhomework::results{$key};
  771: 	    delete($Apache::lonhomework::results{$key});
  772: 	}
  773:     }
  774: }
  775: 
  776: sub setgradedata {
  777:     my ($award,$msg,$id,$previously_used) = @_;
  778:     if ($Apache::lonhomework::scantronmode && 
  779: 	&Apache::lonnet::validCODE($env{'form.CODE'})) {
  780: 	$Apache::lonhomework::results{"resource.CODE"}=$env{'form.CODE'};
  781:     } elsif ($Apache::lonhomework::scantronmode && 
  782: 	     $env{'form.CODE'} eq '' &&
  783: 	     $Apache::lonhomework::history{"resource.CODE"} ne '') {
  784: 	$Apache::lonhomework::results{"resource.CODE"}='';
  785:     }
  786: 
  787:     if (!$Apache::lonhomework::scantronmode &&
  788: 	$Apache::inputtags::status['-1'] ne 'CAN_ANSWER' &&
  789: 	$Apache::inputtags::status['-1'] ne 'CANNOT_ANSWER') {
  790: 	$Apache::lonhomework::results{"resource.$id.afterduedate"}=$award;
  791: 	return '';
  792:     } elsif ( $Apache::lonhomework::history{"resource.$id.solved"} !~
  793: 	      /^correct/ || $Apache::lonhomework::scantronmode ||
  794: 	      lc($Apache::lonhomework::problemstatus) eq 'no') {
  795:         # the student doesn't already have it correct,
  796: 	# or we are in a mode (scantron orno problem status) where a correct 
  797:         # can become incorrect
  798: 	# handle assignment of tries and solved status
  799: 	my $solvemsg;
  800: 	if ($Apache::lonhomework::scantronmode) {
  801: 	    $solvemsg='correct_by_scantron';
  802: 	} else {
  803: 	    $solvemsg='correct_by_student';
  804: 	}
  805: 	if ($Apache::lonhomework::history{"resource.$id.afterduedate"}) {
  806: 	    $Apache::lonhomework::results{"resource.$id.afterduedate"}='';
  807: 	}
  808: 	if ( $award eq 'ASSIGNED_SCORE') {
  809: 	    $Apache::lonhomework::results{"resource.$id.tries"} =
  810: 		$Apache::lonhomework::history{"resource.$id.tries"} + 1;
  811: 	    $Apache::lonhomework::results{"resource.$id.solved"} =
  812: 		$solvemsg;
  813: 	    my $numawards=scalar(@Apache::inputtags::response);
  814: 	    $Apache::lonhomework::results{"resource.$id.awarded"} = 0;
  815: 	    foreach my $res (@Apache::inputtags::response) {
  816: 		$Apache::lonhomework::results{"resource.$id.awarded"}+=
  817: 		    $Apache::lonhomework::results{"resource.$id.$res.awarded"};
  818: 	    }
  819: 	    if ($numawards > 0) {
  820: 		$Apache::lonhomework::results{"resource.$id.awarded"}/=
  821: 		    $numawards;
  822: 	    }
  823: 	} elsif ( $award eq 'APPROX_ANS' || $award eq 'EXACT_ANS' ) {
  824: 	    $Apache::lonhomework::results{"resource.$id.tries"} =
  825: 		$Apache::lonhomework::history{"resource.$id.tries"} + 1;
  826: 	    $Apache::lonhomework::results{"resource.$id.solved"} =
  827: 		$solvemsg;
  828: 	    $Apache::lonhomework::results{"resource.$id.awarded"} = '1';
  829: 	} elsif ( $award eq 'INCORRECT' ) {
  830: 	    $Apache::lonhomework::results{"resource.$id.tries"} =
  831: 		$Apache::lonhomework::history{"resource.$id.tries"} + 1;
  832: 	    if (lc($Apache::lonhomework::problemstatus) eq 'no' ||
  833: 		$Apache::lonhomework::scantronmode) {
  834: 		$Apache::lonhomework::results{"resource.$id.awarded"} = 0;
  835: 	    }
  836: 	    $Apache::lonhomework::results{"resource.$id.solved"} =
  837: 		'incorrect_attempted';
  838: 	} elsif ( $award eq 'SUBMITTED' ) {
  839: 	    $Apache::lonhomework::results{"resource.$id.tries"} =
  840: 		$Apache::lonhomework::history{"resource.$id.tries"} + 1;
  841: 	    $Apache::lonhomework::results{"resource.$id.solved"} =
  842: 		'ungraded_attempted';
  843: 	} elsif ( $award eq 'DRAFT' ) {
  844: 	    $Apache::lonhomework::results{"resource.$id.solved"} = '';
  845: 	} elsif ( $award eq 'NO_RESPONSE' ) {
  846: 	    #no real response so delete any data that got stored
  847: 	    &removealldata($id);
  848: 	    return '';
  849: 	} else {
  850: 	    $Apache::lonhomework::results{"resource.$id.solved"} =
  851: 		'incorrect_attempted';
  852: 	    if (lc($Apache::lonhomework::problemstatus) eq 'no' ||
  853: 		$Apache::lonhomework::scantronmode) {
  854: 		$Apache::lonhomework::results{"resource.$id.tries"} =
  855: 		    $Apache::lonhomework::history{"resource.$id.tries"} + 1;
  856: 		$Apache::lonhomework::results{"resource.$id.awarded"} = 0;
  857: 	    }
  858: 	}
  859: 	if (defined($msg)) {
  860: 	    $Apache::lonhomework::results{"resource.$id.awardmsg"} = $msg;
  861: 	}
  862: 	# did either of the overall awards chage? If so ignore the 
  863: 	# previous check
  864: 	if (($Apache::lonhomework::results{"resource.$id.awarded"} eq
  865: 	     $Apache::lonhomework::history{"resource.$id.awarded"}) &&
  866: 	    ($Apache::lonhomework::results{"resource.$id.solved"} eq
  867: 	     $Apache::lonhomework::history{"resource.$id.solved"})) {
  868: 	    # check if this was a previous submission if it was delete the
  869: 	    # unneeded data and update the previously_used attribute
  870: 	    if ( $previously_used eq 'PREVIOUSLY_USED') {
  871: 		if (lc($Apache::lonhomework::problemstatus) ne 'no') {
  872: 		    delete($Apache::lonhomework::results{"resource.$id.tries"});
  873: 		    $Apache::lonhomework::results{"resource.$id.previous"} = '1';
  874: 		}
  875: 	    } elsif ( $previously_used eq 'PREVIOUSLY_LAST') {
  876: 		#delete all data as they student didn't do anything, but save
  877: 		#the list of collaborators.
  878: 		&removealldata($id);
  879: 		#and since they didn't do anything we were never here
  880: 		return '';
  881: 	    } else {
  882: 		$Apache::lonhomework::results{"resource.$id.previous"} = '0';
  883: 	    }
  884: 	}
  885:     } elsif ( $Apache::lonhomework::history{"resource.$id.solved"} =~
  886: 	      /^correct/ ) {
  887: 	#delete all data as they student already has it correct
  888: 	&removealldata($id);
  889: 	#and since they didn't do anything we were never here
  890: 	return '';
  891:     }
  892:     $Apache::lonhomework::results{"resource.$id.award"} = $award;
  893:     if ($award eq 'SUBMITTED') {
  894: 	&Apache::response::add_to_gradingqueue();
  895:     }
  896: }
  897: 
  898: sub grade {
  899:     my ($target) = @_;
  900:     my $id = $Apache::inputtags::part;
  901:     my $response='';
  902:     if ( defined $env{'form.submitted'}) {
  903: 	my (@awards,@msgs);
  904: 	foreach $response (@Apache::inputtags::response) {
  905: 	    &Apache::lonxml::debug("looking for response.$id.$response.awarddetail");
  906: 	    my $value=$Apache::lonhomework::results{"resource.$id.$response.awarddetail"};
  907: 	    &Apache::lonxml::debug("keeping $value from $response for $id");
  908: 	    push (@awards,$value);
  909: 	    $value=$Apache::lonhomework::results{"resource.$id.$response.awardmsg"};
  910: 	    &Apache::lonxml::debug("got message $value from $response for $id");
  911: 	    push (@msgs,$value);
  912: 	}
  913: 	my ($finalaward,$msg) = &finalizeawards(\@awards,\@msgs);
  914: 	my $previously_used;
  915: 	if ( $#Apache::inputtags::previous eq $#awards ) {
  916: 	    my $match=0;
  917: 	    my @matches;
  918: 	    foreach my $versionar (@Apache::inputtags::previous_version) {
  919: 		foreach my $version (@$versionar) {
  920: 		    $matches[$version]++;
  921: 		}
  922: 	    }
  923: 	    foreach my $elem (@matches) {if ($elem eq ($#awards+1)) {$match=1;}}
  924: 	    if ($match) {
  925: 		$previously_used = 'PREVIOUSLY_LAST';
  926: 		foreach my $value (@Apache::inputtags::previous) {
  927: 		    if ($value eq 'PREVIOUSLY_USED' ) {
  928: 			$previously_used = $value;
  929: 			last;
  930: 		    }
  931: 		}
  932: 	    }
  933: 	}
  934: 	&Apache::lonxml::debug("final award $finalaward, $previously_used, message $msg");
  935: 	&setgradedata($finalaward,$msg,$id,$previously_used);
  936:     }
  937:     return '';
  938: }
  939: 
  940: sub gradestatus {
  941:     my ($id,$target) = @_;
  942:     my $showbutton = 1;
  943:     my $bgcolor = '';
  944:     my $message = '';
  945:     my $latemessage = '';
  946:     my $trystr='';
  947:     my $button='';
  948:     my $previousmsg='';
  949: 
  950:     my $status = $Apache::inputtags::status['-1'];
  951:     &Apache::lonxml::debug("gradestatus has :$status:");
  952:     if ( $status ne 'CLOSED' 
  953: 	 && $status ne 'UNAVAILABLE' 
  954: 	 && $status ne 'INVALID_ACCESS' 
  955: 	 && $status ne 'NEEDS_CHECKIN' 
  956: 	 && $status ne 'NOT_IN_A_SLOT') {  
  957: 	my $award = $Apache::lonhomework::history{"resource.$id.award"};
  958: 	my $awarded = $Apache::lonhomework::history{"resource.$id.awarded"};
  959: 	my $solved = $Apache::lonhomework::history{"resource.$id.solved"};
  960: 	my $previous = $Apache::lonhomework::history{"resource.$id.previous"};
  961: 	my $awardmsg = $Apache::lonhomework::history{"resource.$id.awardmsg"};
  962: 	&Apache::lonxml::debug("Found Award |$award|$solved|$awardmsg");
  963: 	if ( $award ne '' || $solved ne '' || $status eq 'SHOW_ANSWER') {
  964: 	    &Apache::lonxml::debug('Getting message');
  965: 	    ($showbutton,$bgcolor,$message,$previousmsg) =
  966: 		&decideoutput($award,$awarded,$awardmsg,$solved,$previous,
  967: 			      $target);
  968: 	    if ($target eq 'tex') {
  969: 		$message='\vskip 2 mm '.$message.' ';
  970: 	    } else {
  971: 		$message="<td bgcolor=\"$bgcolor\">$message</td>";
  972: 		if ($previousmsg) {
  973: 		    $previousmsg="<td bgcolor=\"#aaaaff\">$previousmsg</td>";
  974: 		}
  975: 	    }
  976: 	}
  977: 	my $tries = $Apache::lonhomework::history{"resource.$id.tries"};
  978: 	my $maxtries = &Apache::lonnet::EXT("resource.$id.maxtries");
  979: 	&Apache::lonxml::debug("got maxtries of :$maxtries:");
  980: 	#if tries are set to negative turn off the Tries/Button and messages
  981: 	if (defined($maxtries) && $maxtries < 0) { return ''; }
  982: 	if ( $tries eq '' ) { $tries = '0'; }
  983: 	if ( $maxtries eq '' ) { $maxtries = '2'; } 
  984: 	if ( $maxtries eq 'con_lost' ) { $maxtries = '0'; } 
  985: 	my $tries_text=&mt('Tries');
  986: 	if ( $Apache::lonhomework::type eq 'survey' ||
  987: 	     $Apache::lonhomework::parsing_a_task) {
  988: 	    $tries_text=&mt('Submissions');
  989: 	}
  990: 	if ( $showbutton ) {
  991: 	    if ($target eq 'tex') {
  992: 		if ($env{'request.state'} ne "construct" && $Apache::lonhomework::type ne 'exam' && $env{'form.suppress_tries'} ne 'yes') {
  993: 		    $trystr = ' {\vskip 1 mm \small \textit{'.$tries_text.'} '.$tries.'/'.$maxtries.'} \vskip 2 mm ';
  994: 		} else {
  995: 		    $trystr = '\vskip 0 mm ';
  996: 		}
  997: 	    } else {
  998: 		$trystr = "<td><nobr>".$tries_text." $tries";
  999: 		if ($Apache::lonhomework::parsing_a_task) {
 1000: 		} elsif($env{'request.state'} ne 'construct') {
 1001: 		    $trystr.="/$maxtries";
 1002: 		} else {
 1003: 		    if (defined($Apache::inputtags::params{'maxtries'})) {
 1004: 			$trystr.="/".$Apache::inputtags::params{'maxtries'};
 1005: 		    }
 1006: 		}
 1007: 		$trystr.="</nobr></td>";
 1008: 	    }
 1009: 	}
 1010: 	if ( $status eq 'SHOW_ANSWER' || $status eq 'CANNOT_ANSWER') {$showbutton = 0;}
 1011: 	if ( $showbutton ) { 
 1012: 	    if ($target ne 'tex') {
 1013: 		$button = '<input type="submit" name="submit_'.$id.'" value="'.&mt('Submit Answer').'" />';
 1014: 	    }
 1015: 	}
 1016: 	if ($Apache::lonhomework::history{"resource.$id.afterduedate"}) {
 1017: 	    #last submissions was after due date
 1018: 	    $latemessage=&mt(' The last submission was after the Due Date ');;
 1019: 	    if ($target eq 'web') {
 1020: 		$latemessage='<td bgcolor="#ffaaaa">'.$latemessage.'</td>';
 1021: 	    }
 1022: 	}
 1023:     }
 1024:     my $output= $previousmsg.$latemessage.$message.$trystr;
 1025:     if ($output =~ /^\s*$/) {
 1026: 	return $button;
 1027:     } else {
 1028: 	if ($target eq 'tex') {
 1029: 	    return $button.' \vskip 0 mm '.$output.' ';
 1030: 	} else {
 1031: 	    return '<table><tr><td>'.$button.'</td>'.$output.'</tr></table>';
 1032: 	}
 1033:     }
 1034: }
 1035: 1;
 1036: __END__
 1037:  

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>