Diff for /loncom/homework/inputtags.pm between versions 1.332 and 1.333

version 1.332, 2015/03/17 12:22:20 version 1.333, 2015/03/18 12:53:24
Line 1739  sub previous_tries { Line 1739  sub previous_tries {
   
     my $count;      my $count;
     my %count_lookup;      my %count_lookup;
     my $lastrndseed;      my ($lastrndseed,$lasttype);
     my $numstamps = 0;      my $numstamps = 0;
   
     foreach my $i (1..$Apache::lonhomework::history{'version'}) {      foreach my $i (1..$Apache::lonhomework::history{'version'}) {
  my $prefix = $i.":resource.$id";   my $prefix = $i.":resource.$id";
         my $is_anon;           my $is_anon;
           my $curr_type = $Apache::lonhomework::history{"$prefix.type"};    
         if (defined($env{'form.grade_symb'})) {          if (defined($env{'form.grade_symb'})) {
             if (($Apache::lonhomework::history{"$prefix.type"} eq 'anonsurvey') ||               if (($curr_type eq 'anonsurvey') || ($curr_type eq 'anonsurveycred')) {
                 ($Apache::lonhomework::history{"$prefix.type"} eq 'anonsurveycred')) {  
                 $is_anon = 1;                  $is_anon = 1;
             }              }
         }          }
Line 1787  sub previous_tries { Line 1787  sub previous_tries {
     }      }
             my $trystr = "(".&mt('Try [_1]',$Apache::lonhomework::history{"$prefix.tries"}).")";              my $trystr = "(".&mt('Try [_1]',$Apache::lonhomework::history{"$prefix.tries"}).")";
             if (($curr_rndseed ne '') &&  ($lastrndseed ne '')) {              if (($curr_rndseed ne '') &&  ($lastrndseed ne '')) {
                 if ($curr_rndseed ne $lastrndseed) {                  if (($curr_rndseed ne $lastrndseed) && 
                       (($curr_type eq 'randomizetry') || ($lasttype eq 'randomizetry'))) {
                     $trystr .= '<br /><span style="color: green; white-space: nowrap; font-style: italic; font-weight: bold; font-size: 80%;">'.&mt('New problem variation this try.').'</span>';                      $trystr .= '<br /><span style="color: green; white-space: nowrap; font-style: italic; font-weight: bold; font-size: 80%;">'.&mt('New problem variation this try.').'</span>';
                 }                  }
             }               } 
Line 1828  sub previous_tries { Line 1829  sub previous_tries {
  }   }
  $output.=&Apache::loncommon::end_data_table_row()."\n";   $output.=&Apache::loncommon::end_data_table_row()."\n";
         $lastrndseed = $curr_rndseed;          $lastrndseed = $curr_rndseed;
           $lasttype = $curr_type;
     }      }
     return if ($output eq '');      return if ($output eq '');
     my $headers = '<tr>'.      my $headers = '<tr>'.

Removed from v.1.332  
changed lines
  Added in v.1.333


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