--- loncom/homework/structuretags.pm 2001/01/15 21:44:21 1.31 +++ loncom/homework/structuretags.pm 2001/02/19 20:39:00 1.32 @@ -54,7 +54,7 @@ sub start_problem { if ( $status eq 'CLOSED' ) { my $bodytext=&Apache::lonxml::get_all_text("/problem",$$parser[$#$parser]); if ( $target eq "web" ) { - return "

Problem is not open to be viewed. The problem $datemsg

"; + return "
Problem is not open to be viewed. The problem $datemsg
"; } } } @@ -112,7 +112,7 @@ sub start_block { my $code = @$parstack[$#$parstack]; $code =~ s/\"//g; $code .=';return $condition;'; -# print "
$code
"; +# print "
$code
"; my $result = &Apache::run::run($code,$safeeval); &Apache::lonxml::debug("block :$code: returned :$result:"); if ( ! $result ) { @@ -175,14 +175,14 @@ sub start_randomlist { $list_item = &Apache::lonxml::get_all_text('/'.$b_tok->[1],$b_parser); $list_item = "$b_tok->[4]"."$list_item"."[1]>"; push(@randomlist,$list_item); - # print "
START-TAG $b_tok->[1], $b_tok->[4], $list_item"; + # print "
START-TAG $b_tok->[1], $b_tok->[4], $list_item"; } if($b_tok->[0] eq 'T') { # text # what to do with text in between tags? - # print "TEXT $b_tok->[1]
"; + # print "TEXT $b_tok->[1]
"; } # if($b_tok->[0] eq 'E') { # end tag, should not happen - # print "END-TAG $b_tok->[1]
"; + # print "END-TAG $b_tok->[1]
"; # } } my @idx_arr = (0 .. $#randomlist); @@ -227,7 +227,7 @@ sub start_part { if ( $status eq 'CLOSED' ) { my $bodytext=&Apache::lonxml::get_all_text("/part",$$parser[$#$parser]); if ( $target eq "web" ) { - return "

Part is not open to be viewed. It $datemsg

"; + return "
Part is not open to be viewed. It $datemsg
"; } } }