--- loncom/homework/structuretags.pm 2002/03/29 18:32:46 1.87 +++ loncom/homework/structuretags.pm 2002/05/24 20:33:55 1.94 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # -# $Id: structuretags.pm,v 1.87 2002/03/29 18:32:46 albertel Exp $ +# $Id: structuretags.pm,v 1.94 2002/05/24 20:33:55 sakharuk Exp $ # # Copyright Michigan State University Board of Trustees # @@ -150,11 +150,10 @@ permanent record is left in the system.< Checking out resources is subject to course policies, and may exclude future credit even if done erroneously.

- -

- + + + +
ENDCHECKOUT } @@ -267,6 +266,9 @@ sub start_problem { $rndseed.'" /> + s existed, so we need to the grading &Apache::inputtags::grade; - } elsif ( $target eq 'web' && $Apache::inputtags::part eq '0') { + } elsif ( $target eq 'web' && $Apache::inputtags::part eq '0' && + $status ne 'UNCHECKEDOUT') { # if part is zero, no s existed, so we need show the current # grading status $result.= &Apache::inputtags::gradestatus($Apache::inputtags::part); @@ -326,7 +329,8 @@ sub end_problem { ) { if ($status eq 'CAN_ANSWER') { $result.="\n"; - } elsif ($status eq 'SHOW_ANSWER' || $status eq 'CANNOT_ANSWER') { + } elsif ($status eq 'SHOW_ANSWER' || $status eq 'CANNOT_ANSWER' || + $status eq 'UNCHECKEDOUT' ) { $result.="\n"; } $result.=&Apache::lonxml::xmlend(); @@ -343,7 +347,7 @@ sub end_problem { &Apache::lonxml::debug("in end_problem with $target, edit"); $result='
'; } elsif ($target eq 'tex') { - $result .= '\noindent\makebox[9.0cm][b]{\hrulefill}\end{document}'; + $result .= '\vskip 0.5mm\noindent\makebox[9.0cm][b]{\hrulefill}\end{document}'; } return $result; } @@ -531,7 +535,11 @@ sub start_part { } } } - return ''; + if ($target eq 'tex') { + return '\vskip 0 mm'; + } else { + return ''; + } } sub end_part {