Diff for /loncom/homework/inputtags.pm between versions 1.297 and 1.298

version 1.297, 2011/12/08 02:59:34 version 1.298, 2011/12/10 18:10:56
Line 1647  sub previous_tries { Line 1647  sub previous_tries {
  '<tr>'.'<th>'.&mt('Submission #').'</th><th>'.&mt('Try').   '<tr>'.'<th>'.&mt('Submission #').'</th><th>'.&mt('Try').
  '</th><th colspan="'.scalar(@Apache::inputtags::response).'">'.   '</th><th colspan="'.scalar(@Apache::inputtags::response).'">'.
  &mt('Submitted Answer').'</th>';   &mt('Submitted Answer').'</th>';
     $output =&Apache::loncommon::start_scrollbox('420px','400px','400px').      $output ='<table class="LC_prior_tries">'.$headers.$output.'</table>';
              '<table class="LC_prior_tries">'.$headers.$output.'</table>'.  
              &Apache::loncommon::end_scrollbox();  
     #return $output;  
     $output = &Apache::loncommon::js_ready($output);   
   
     my $tries_text = &get_tries_text('link');      my $tries_text = &get_tries_text('link');
     my $start_page =  
  &Apache::loncommon::start_page($tries_text, undef,  
        {'only_body'      => 1,  
  'bgcolor'        => '#FFFFFF',  
  'js_ready'       => 1,  
         'inherit_jsmath' => 1, });  
     my $end_page =  
  &Apache::loncommon::end_page({'js_ready' => 1,});  
     my $prefix = $env{'form.request.prefix'};      my $prefix = $env{'form.request.prefix'};
     $prefix =~ tr{.}{_};      $prefix =~ tr{.}{_};
     my $function_name = "LONCAPA_previous_tries_".$prefix.      my $function_name = "LONCAPA_previous_tries_".$prefix.
  $Apache::lonxml::curdepth.'_'.$env{'form.counter'};   $Apache::lonxml::curdepth.'_'.$env{'form.counter'};
     my $result = &Apache::loncommon::modal_adhoc_script($function_name,420,410,$start_page.$output.$end_page).      my $result = &Apache::loncommon::modal_adhoc_window($function_name,420,410,$output,&mt($tries_text))."<br />";
     "<a href=\"javascript:$function_name();void(0);\">".&mt($tries_text)."</a><br />";  
     return $result;      return $result;
 }  }
   

Removed from v.1.297  
changed lines
  Added in v.1.298


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