--- loncom/homework/response.pm	2006/03/08 22:16:28	1.136
+++ loncom/homework/response.pm	2006/06/19 16:15:53	1.139
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # various response type definitons response definition
 #
-# $Id: response.pm,v 1.136 2006/03/08 22:16:28 albertel Exp $
+# $Id: response.pm,v 1.139 2006/06/19 16:15:53 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -32,7 +32,7 @@ use Apache::lonlocal;
 use Apache::lonnet;
 
 BEGIN {
-    &Apache::lonxml::register('Apache::response',('responseparam','parameter','dataresponse','customresponse'));
+    &Apache::lonxml::register('Apache::response',('responseparam','parameter','dataresponse','customresponse','mathresponse'));
 }
 
 sub start_response {
@@ -434,6 +434,23 @@ sub end_customresponse {
     return $result;
 }
 
+sub start_mathresponse {
+    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
+    my $result;
+    if ($target eq 'meta') {
+        &Apache::response::start_response($parstack,$safeeval);
+        $result=&Apache::response::meta_package_write('mathresponse');
+        &Apache::response::end_response();
+    } else {
+#       $result.=&start_numericalresponse(@_);
+    }
+    return $result;
+}
+
+sub end_mathresponse {
+#    return end_numericalresponse(@_);
+}
+
 sub start_answer {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
     my $result;
@@ -609,7 +626,7 @@ sub answer_header {
     } else {
 	$result  = '<table border="1"><tr>';
 	if ($Apache::lonhomework::type eq 'exam') {
-	    $result .= '<td>'.$Apache::lonxml::counter. ')</td>';
+	    $result .= '<td>'.($Apache::lonxml::counter+$increment). ')</td>';
 	} else {
 	    $result .= '<td>Answer for Part:'.$Apache::inputtags::part.'</td>';
 	}