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

version 1.12, 2010/04/20 23:58:31 version 1.13, 2010/05/27 16:56:20
Line 12  $awarded=&EXT('user.resource.resource.0. Line 12  $awarded=&EXT('user.resource.resource.0.
 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="0f"; }
   $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 />If non-integer points are used (e.g., 3.5), make sure to change the
 display format in "Modify parameter settings for this resource" (clock symbol), or the result will be displayed in rounded form.  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.  You can upload comments and grade information with this resource when uploading CSV files. Feedback on grades can be controlled using the problemstatus parameter.
 </span></instructorcomment>  </span></instructorcomment>
 $gradeinfo  $gradeinfo
 $comment  $comment

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


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