[LON-CAPA-cvs] cvs: loncom /homework optionresponse.pm

sakharuk lon-capa-cvs@mail.lon-capa.org
Thu, 24 Oct 2002 19:51:49 -0000


sakharuk		Thu Oct 24 15:51:49 2002 EDT

  Modified files:              
    /loncom/homework	optionresponse.pm 
  Log:
  Corrected output for printing problems with open answers.
  
  
Index: loncom/homework/optionresponse.pm
diff -u loncom/homework/optionresponse.pm:1.53 loncom/homework/optionresponse.pm:1.54
--- loncom/homework/optionresponse.pm:1.53	Thu Oct 17 13:13:44 2002
+++ loncom/homework/optionresponse.pm	Thu Oct 24 15:51:49 2002
@@ -1,7 +1,7 @@
 # LearningOnline Network with CAPA
 # option list style responses
 #
-# $Id: optionresponse.pm,v 1.53 2002/10/17 17:13:44 albertel Exp $
+# $Id: optionresponse.pm,v 1.54 2002/10/24 19:51:49 sakharuk Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -321,6 +321,7 @@
 	  $result .=$Apache::response::foilgroup{$name.'.value'}.
 	      ":".$Apache::response::foilgroup{$name.'.text'}."\n";
       } else {
+	  $Apache::response::foilgroup{$name.'.text'}=~s/\\item//;
  	  $result .='\item '.$Apache::response::foilgroup{$name.'.value'}.
 	      ":".$Apache::response::foilgroup{$name.'.text'}."\n";
       }
@@ -545,7 +546,7 @@
   my $result = '';
   if ($target eq 'web' || $target eq 'tex') { 
       $text=&Apache::lonxml::endredirection;
-      if ($target eq 'tex') { $text = '\item '.$text; }
+      if ($target eq 'tex') { $text = '\item '.$text; 
   }
   if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' 
       || $target eq 'tex' || $target eq 'analyze') {