Diff for /loncom/homework/bridgetask.pm between versions 1.200 and 1.202

version 1.200, 2006/11/09 21:31:11 version 1.202, 2006/11/13 21:23:19
Line 2193  sub end_Dimension { Line 2193  sub end_Dimension {
     my $instance=&get_instance($dim);      my $instance=&get_instance($dim);
     my $version=&get_version();      my $version=&get_version();
     if ($target eq 'web') {      if ($target eq 'web') {
    $result .= "\n".'<div class="LC_question">'."\n";
  $result .= &nested_parse(\$dimension{$dim}{'intro'},[@_]);   $result .= &nested_parse(\$dimension{$dim}{'intro'},[@_]);
  my @instances = $instance;   my @instances = $instance;
  if (&Apache::response::showallfoils()) {   if (&Apache::response::showallfoils()) {
Line 2229  sub end_Dimension { Line 2230  sub end_Dimension {
  my $question = ('sub' x $dimension{$dim}{'depth'}).'question';   my $question = ('sub' x $dimension{$dim}{'depth'}).'question';
  $question =~ s/^(.)/uc($1)/e;   $question =~ s/^(.)/uc($1)/e;
  if ($dim_status eq 'pass') {   if ($dim_status eq 'pass') {
     $dim_info.='<h3>'.$question.' : you passed this '.$mandatory.' question</h3>';      $dim_info.='<h3>'.$question.' : you passed the above'.$mandatory.' question</h3>';
  }   }
  if ($dim_status eq 'fail') {   if ($dim_status eq 'fail') {
     $dim_info.='<h3>'.$question.' : you did not pass this '.$mandatory.' question</h3>';      $dim_info.='<h3>'.$question.' : you did not pass the above '.$mandatory.' question</h3>';
  }   }
  my %counts = &get_counts($dim,$instance,$parstack,   my %counts = &get_counts($dim,$instance,$parstack,
  $safeeval);   $safeeval);
Line 2254  sub end_Dimension { Line 2255  sub end_Dimension {
       [@_]);        [@_]);
     $dim_info .= &layout_web_Criteria($dim,$id,$criteria);      $dim_info .= &layout_web_Criteria($dim,$id,$criteria);
  }   }
    # puts the results at the end of the dimension
    $result .= $dim_info;
   
  my $internal_location=&internal_location($dim);   # puts the results at the beginning of the dimension
  $result=~s/\Q$internal_location\E/$dim_info/;   # my $internal_location=&internal_location($dim);
    # $result=~s/\Q$internal_location\E/$dim_info/;
     }      }
  }   }
    $result .= "\n</div>\n";
     } elsif ($target eq 'webgrade') {      } elsif ($target eq 'webgrade') {
  # in case of any side effects that we need   # in case of any side effects that we need
  &nested_parse(\$dimension{$dim}{'intro'},[@_]);   &nested_parse(\$dimension{$dim}{'intro'},[@_]);
Line 2633  sub layout_web_Criteria { Line 2638  sub layout_web_Criteria {
     $status_display=~s/^([a-z])/uc($1)/e;      $status_display=~s/^([a-z])/uc($1)/e;
     my $criteria_info.=      my $criteria_info.=
  '<div class="LC_'.$status.' LC_criteria">'."\n\t".'<h4>'   '<div class="LC_'.$status.' LC_criteria">'."\n\t".'<h4>'
  .$mandatory.' Criteria</h4>'."\n\t".'<p>'."\n";   .$mandatory.' Criteria</h4>'."\n\t".'<p class="LC_criteria_text>'."\n";
       $criteria =~ s/^\s*//s;
       $criteria =~ s/\s*$//s;
     $criteria_info.= $criteria;      $criteria_info.= $criteria;
     $criteria_info.="\n\t".'</p>'.      $criteria_info.="\n\t".'</p>'.
  "\n\t".'<p class="LC_grade">'.$status_display.'</p>';   "\n\t".'<p class="LC_grade">'.$status_display.'</p>';
Line 2666  sub layout_webgrade_Criteria { Line 2673  sub layout_webgrade_Criteria {
  if ($status eq $which) { $checked{$which} = 'checked="checked"'; }   if ($status eq $which) { $checked{$which} = 'checked="checked"'; }
     }      }
     if (!%checked) { $checked{'ungraded'} = 'checked="checked"'; }      if (!%checked) { $checked{'ungraded'} = 'checked="checked"'; }
           my $buttons;
       foreach my $which  ('ungraded','fail','pass','review') {
    $buttons .= <<END_BUTTON;
    <label class="LC_GRADING_$which">
    <input type="radio" name="HWVAL_$link" value="$which" $checked{$which} />
    $lt{$which}
    </label>
   END_BUTTON
       }
       $criteria =~ s/^\s*//s;
       $criteria =~ s/\s*$//s;
     my $result = <<END_CRITERIA;      my $result = <<END_CRITERIA;
   <div class="LC_GRADING_criteria">  <div class="LC_GRADING_criteria">
      <div class="LC_GRADING_criteriatext">   <div class="LC_GRADING_criteriatext">
  $criteria   $criteria
      </div>   </div>
      <div class="LC_GRADING_grade">   <div class="LC_GRADING_grade">
        <label class="LC_GRADING_ungraded">  $buttons
          <input type="radio" name="HWVAL_$link" value="ungraded" $checked{'ungraded'} />   </div>
  $lt{'ungraded'}   <label class="LC_GRADING_comment">
        </label>   $lt{'comment'}
        <label class="LC_GRADING_fail">   <textarea class="LC_GRADING_comment_area" name="HWVAL_comment_$link">$comment</textarea>
          <input type="radio" name="HWVAL_$link" value="fail" $checked{'fail'} />   </label>
  $lt{'fail'}  </div>
        </label>  
        <label class="LC_GRADING_pass">  
          <input type="radio" name="HWVAL_$link" value="pass" $checked{'pass'} />  
  $lt{'pass'}  
        </label>  
        <label class="LC_GRADING_review">  
          <input type="radio" name="HWVAL_$link" value="review" $checked{'review'} />  
  $lt{'review'}  
        </label>  
      </div>  
      <label class="LC_GRADING_comment">  
        $lt{'comment'}  
        <textarea class="LC_GRADING_comment_area" name="HWVAL_comment_$link">$comment</textarea>  
      </label>  
   </div>  
 END_CRITERIA  END_CRITERIA
     $result .= &grading_history($version,$dim,$id);      $result .= &grading_history($version,$dim,$id);
     return $result;      return $result;

Removed from v.1.200  
changed lines
  Added in v.1.202


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