--- loncom/homework/optionresponse.pm	2003/03/26 22:59:09	1.70
+++ loncom/homework/optionresponse.pm	2003/04/02 18:07:10	1.72
@@ -1,7 +1,7 @@
 # LearningOnline Network with CAPA
 # option list style responses
 #
-# $Id: optionresponse.pm,v 1.70 2003/03/26 22:59:09 albertel Exp $
+# $Id: optionresponse.pm,v 1.72 2003/04/02 18:07:10 sakharuk Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -316,8 +316,7 @@ sub displayfoils {
   my $result;
   my $name;
   my $displayoptionintex=0;
-  my @alphabet = ('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P',
-		  'Q','R','S','T','U','V','W','X','Y','Z');
+  my @alphabet = ('A'..'Z');
   my @whichopt = &whichfoils($max,$randomize);
   my $part=$Apache::inputtags::part;
   my $id=$Apache::inputtags::response[-1];
@@ -383,11 +382,13 @@ sub displayfoils {
 	}
       }
       if ($target ne 'tex') {
-	  $optionlist='<select name="HWVAL_'.
+	  if ($Apache::lonhomework::type ne 'exam') {
+	    $optionlist='<select name="HWVAL_'.
 	      $Apache::inputtags::response['-1'].':'.$temp.'">'.
 		  $optionlist."</select>\n";
+	  }
 	  my $text=$Apache::response::foilgroup{$name.'.text'};
-	  if (!($text=~s|<drawoptionlist\s*/>|$optionlist|)) {
+	  if (!($text=~s|<drawoptionlist\s*/>|$optionlist|) && $Apache::lonhomework::type ne 'exam') {
 	      $text=$optionlist.$text;
 	  }
 	  $result.=$break.$text."\n";
@@ -474,7 +475,8 @@ sub webbubbles {
 	my $number_of_bubbles = $#opt + 1;
 	$result.= '<table border="1"><tr>';
 	for (my $ind=0;$ind<$number_of_bubbles;$ind++) {
-	   $result.='<td>'.$alphabet[$ind].': '.$opt[$ind].'</td>';
+	   $result.='<td><input type="radio" name="HWVAL'.$Apache::inputtags::response['-1'].
+                    '" value='.$opt[$ind].'>'.$alphabet[$ind].': '.$opt[$ind].'</td>';
 	}
 	$result.='</tr></table>';
 	return $result;
@@ -634,7 +636,7 @@ sub end_foil {
 	if ($target eq 'tex' and $Apache::lonhomework::type eq 'exam') {
 	    $Apache::response::conceptgroup{"$name.text"} = '\vskip 4 mm $\triangleright$ '.$text;
 	} else {
-	    if ($target eq 'tex') {
+	    if ($target eq 'tex' and $Apache::lonhomework::type eq 'exam') {
 		$Apache::response::conceptgroup{"$name.text"} = ' $\triangleright$ '.$text;
 	    } else {
 		$Apache::response::conceptgroup{"$name.text"} = $text;
@@ -647,7 +649,7 @@ sub end_foil {
 	if ($Apache::lonhomework::type eq 'exam') {
 	    $Apache::response::foilgroup{"$name.text"} = '\vskip 5 mm $\triangleright$ '.$text;
 	} else {
-	    if ($target eq 'tex') {
+	    if ($target eq 'tex' and $Apache::lonhomework::type eq 'exam') {
 		$Apache::response::foilgroup{"$name.text"} = ' $\triangleright$ '.$text;
 	    } else {
 		$Apache::response::foilgroup{"$name.text"} = $text;