--- loncom/homework/response.pm 2005/11/29 18:42:54 1.131 +++ loncom/homework/response.pm 2006/03/08 22:17:17 1.137 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # various response type definitons response definition # -# $Id: response.pm,v 1.131 2005/11/29 18:42:54 albertel Exp $ +# $Id: response.pm,v 1.137 2006/03/08 22:17:17 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -37,8 +37,7 @@ BEGIN { sub start_response { my ($parstack,$safeeval)=@_; - my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval); - if ($id eq '') { $id = $Apache::lonxml::curdepth; } + my $id = &Apache::lonxml::get_id($parstack,$safeeval); if ($#Apache::inputtags::import > -1) { &Apache::lonxml::debug("Turning :$id: into"); $id = join('_',@Apache::inputtags::import).'_'.$id; @@ -69,8 +68,7 @@ sub end_response { sub start_hintresponse { my ($parstack,$safeeval)=@_; - my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval); - if ($id eq '') { $id = $Apache::lonxml::curdepth; } + my $id = &Apache::lonxml::get_id($parstack,$safeeval); push (@Apache::inputtags::hint,$id); push (@Apache::inputtags::hintlist,$id); push (@Apache::inputtags::paramstack,[%Apache::inputtags::params]); @@ -592,15 +590,30 @@ sub setup_params { } } +{ + my @answer_bits; + sub answer_header { - my ($type) = @_; + my ($type,$increment) = @_; my $result; if ($env{'form.answer_output_mode'} eq 'tex') { - $result = ' \vskip 0 mm \begin{tabular}{|c|}\hline Answer for Part: \verb|'. - $Apache::inputtags::part.'| \\\\ \hline '; + undef(@answer_bits); + my $bit; + if ($Apache::lonhomework::type eq 'exam') { + $bit = ($Apache::lonxml::counter+$increment).') '; + } else { + $bit .= ' Answer for Part: \verb|'. + $Apache::inputtags::part.'| '; + } + push(@answer_bits,$bit); } else { - $result = ''."\n"; + $result = '
Answer for Part:'. - $Apache::inputtags::part. '
'; + if ($Apache::lonhomework::type eq 'exam') { + $result .= ''; + } else { + $result .= ''; + } + $result .= "\n"; } return $result; } @@ -617,7 +630,9 @@ sub answer_part { last; } } - $result = '\verb'.$to_use.$answer.$to_use.'\\\\ \hline '; + if ($answer ne '') { + push(@answer_bits,'\verb'.$to_use.$answer.$to_use); + } } else { $result = ''; } @@ -628,13 +643,18 @@ sub answer_footer { my ($type) = @_; my $result; if ($env{'form.answer_output_mode'} eq 'tex') { - $result = ' \end{tabular} \vskip 0 mm '; + my $columns = scalar(@answer_bits); + $result = ' \vskip 0 mm \noindent \begin{tabular}{|'.'c|'x$columns.'}\hline '; + $result .= join(' & ',@answer_bits); + $result .= ' \\\\ \\hline \end{tabular} \vskip 0 mm '; } else { $result = '
'.$Apache::lonxml::counter+$increment. ')Answer for Part:'.$Apache::inputtags::part.''.$answer.'
'; } return $result; } +} + sub showallfoils { if (defined($env{'form.showallfoils'})) { my ($symb)=&Apache::lonxml::whichuser(); @@ -862,7 +882,8 @@ sub add_to_gradingqueue { my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser(); if ( $courseid eq '' || $symb eq '' - || $env{'request.state'} eq 'construct') { + || $env{'request.state'} eq 'construct' + || $Apache::lonhomework::type ne 'problem') { return; }