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

albertel lon-capa-cvs@mail.lon-capa.org
Wed, 04 Sep 2002 02:48:31 -0000


albertel		Tue Sep  3 22:48:31 2002 EDT

  Modified files:              
    /loncom/homework	structuretags.pm 
  Log:
  - <randomlist> needs to work for tex mode
  
  
Index: loncom/homework/structuretags.pm
diff -u loncom/homework/structuretags.pm:1.110 loncom/homework/structuretags.pm:1.111
--- loncom/homework/structuretags.pm:1.110	Mon Sep  2 21:19:13 2002
+++ loncom/homework/structuretags.pm	Tue Sep  3 22:48:31 2002
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA 
 # definition of tags that give a structure to a document
 #
-# $Id: structuretags.pm,v 1.110 2002/09/03 01:19:13 albertel Exp $
+# $Id: structuretags.pm,v 1.111 2002/09/04 02:48:31 albertel Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -546,7 +546,8 @@
 sub start_randomlist {
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   my $result;
-  if ($target eq 'answer' || $target eq 'grade' || $target eq 'web') {
+  if ($target eq 'answer' || $target eq 'grade' || $target eq 'web' ||
+      $target eq 'tex') {
     my $body= &Apache::lonxml::get_all_text("/randomlist",$$parser[$#$parser]);
     my $b_parser= HTML::TokeParser->new(\$body);
     my $b_tok;