Diff for /loncom/homework/templates/examupload.problem between versions 1.12 and 1.14

version 1.12, 2010/04/20 23:58:31 version 1.14, 2011/05/01 17:17:09
Line 11  if ((!defined($weight)) || ($weight eq ' Line 11  if ((!defined($weight)) || ($weight eq '
 $awarded=&EXT('user.resource.resource.0.awarded');  $awarded=&EXT('user.resource.resource.0.awarded');
 if (!defined($awarded)) { $awarded=0; }  if (!defined($awarded)) { $awarded=0; }
 $scoreformat=&EXT('resource.0.scoreformat');  $scoreformat=&EXT('resource.0.scoreformat');
 if (!defined($scoreformat) || $scoreformat eq '') { $scoreformat="0f"; }  if (!defined($scoreformat) || $scoreformat eq '') { $scoreformat="2f"; }
   $display='';
   if (&EXT('resource.0.problemstatus')!~/^no/) {
      if (!defined($awarded)) {
         $display=$weight.' possible points.';
      } else {
         $display='You have '.&format($awarded*$weight,$scoreformat).' out of '.
               $weight.' possible points.';
      }
   }
 $comment=&EXT('user.resource.resource.0.comment');  $comment=&EXT('user.resource.resource.0.comment');
 if (!defined($comment) || $comment!~/\w/) {  if (!defined($comment) || $comment!~/\w/) {
    $comment='';     $comment='';
Line 29  if (!defined($gradeinfo) || $gradeinfo!~ Line 38  if (!defined($gradeinfo) || $gradeinfo!~
 </script>  </script>
   
 <startouttext />  <startouttext />
 You have <display>&format($awarded*$weight,$scoreformat)</display> out of $weight possible points.  $display
 <instructorcomment><span style="color:red">  <instructorcomment><span style="color:red">
 <br />If non-integer points are used (e.g., 3.5), make sure to change the  <br />You can modify the rounding of the score display using the "scoreformat" setting.
 display format in "Modify parameter settings for this resource" (clock symbol), or the result will be displayed in rounded form.  You can upload comments and grade information with this resource when uploading CSV files. Feedback on grades can be controlled using the problemstatus parameter.
 You can upload comments and grade information with this resource when uploading CSV files.  
 </span></instructorcomment>  </span></instructorcomment>
 $gradeinfo  $gradeinfo
 $comment  $comment

Removed from v.1.12  
changed lines
  Added in v.1.14


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