--- loncom/xml/lonxml.pm 2008/03/12 02:46:03 1.474 +++ loncom/xml/lonxml.pm 2008/05/02 22:00:12 1.477 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # XML Parser Module # -# $Id: lonxml.pm,v 1.474 2008/03/12 02:46:03 raeburn Exp $ +# $Id: lonxml.pm,v 1.477 2008/05/02 22:00:12 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1080,6 +1080,7 @@ Optional Arguments: sub increment_counter { my ($increment, $part_response) = @_; + if ($env{'form.grade_target'} eq 'analyze') { return; } if (!defined($increment) || $increment le 0) { $increment = 1; } @@ -1559,7 +1560,7 @@ FULLPAGE my $form_events = &Apache::edit::form_change_detection(); my $htmlerror=&verify_html($filecontents); if ($htmlerror) { - $htmlerror=''.$htmlerror.'

'; + $htmlerror=''.$htmlerror.''; } my $editfooter=(<"; } return $result; } @@ -1815,7 +1817,7 @@ sub error { # If printing in construction space, put the error inside

 	push(@Apache::lonxml::error_messages,
 	     $Apache::lonxml::warnings_error_header.
-	     "ERROR:".join("
\n",@errors)."
\n"); + "".&mt('ERROR:')."".join("
\n",@errors)."
\n"); $Apache::lonxml::warnings_error_header=''; } else { my $errormsg; @@ -1825,7 +1827,9 @@ sub error { $errormsg=&mt("An error occured while processing this resource. The author has been notified."); } my $host=$Apache::lonnet::perlvar{'lonHostID'}; - push(@errors, "The error occurred on host $host"); + push(@errors, + &mt("The error occurred on host [_1]", + "$host")); my $msg = join('
', @errors);