--- loncom/homework/response.pm 2005/11/15 15:57:45 1.129 +++ loncom/homework/response.pm 2005/12/06 09:29:34 1.132 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # various response type definitons response definition # -# $Id: response.pm,v 1.129 2005/11/15 15:57:45 albertel Exp $ +# $Id: response.pm,v 1.132 2005/12/06 09:29:34 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -592,15 +592,22 @@ sub setup_params { } } +{ + my @answer_bits; + sub answer_header { my ($type) = @_; 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); } 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 +624,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 +637,26 @@ 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)+1; + $result = ' \vskip 0 mm \begin{tabular}{|'.'c|'x$columns.'}\hline '; + if ($Apache::lonhomework::type eq 'exam') { + $result .= $Apache::lonxml::counter.') '; + } else { + $result .= ' Answer for Part: \verb|'. + $Apache::inputtags::part.'| '; + } + foreach my $bit (@answer_bits) { + $result.=' & '.$bit; + } + $result .= ' \\\\ \\hline \end{tabular} \vskip 0 mm '; } else { $result = '
'.$Apache::lonxml::counter. ')Answer for Part:'.$Apache::inputtags::part.''.$answer.'
'; } return $result; } +} + sub showallfoils { if (defined($env{'form.showallfoils'})) { my ($symb)=&Apache::lonxml::whichuser(); @@ -858,6 +880,28 @@ sub submitted { return 0; } +sub add_to_gradingqueue { + my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser(); + if ( $courseid eq '' + || $symb eq '' + || $env{'request.state'} eq 'construct') { + return; + } + + my %queue_info = ( 'type' => 'problem', + 'time' => time); + + if (exists($Apache::lonhomework::history{"resource.0.checkedin.slot"})) { + $queue_info{'slot'}= + $Apache::lonhomework::history{"resource.0.checkedin.slot"}; + } + + my $result=&Apache::bridgetask::add_to_queue('gradingqueue',\%queue_info); + if ($result ne 'ok') { + &Apache::lonxml::error("add_to_queue said $result"); + } +} + # basically undef and 0 (both false) mean that they still have work to do # and all true values mean that they can't do any more work #