--- loncom/xml/lonxml.pm 2003/09/15 13:38:19 1.277 +++ loncom/xml/lonxml.pm 2003/09/19 20:29:29 1.279 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # XML Parser Module # -# $Id: lonxml.pm,v 1.277 2003/09/15 13:38:19 www Exp $ +# $Id: lonxml.pm,v 1.279 2003/09/19 20:29:29 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -175,6 +175,12 @@ sub xmlbegin { } sub xmlend { + my $mode='xml'; + my $status='OPEN'; + if ($Apache::lonhomework::parsing_a_problem) { + $mode='problem'; + $status=$Apache::inputtags::status[-1]; + } return &Apache::lonfeedback::list_discussion().''; } @@ -485,9 +491,9 @@ sub inner_xmlparse { } # Encode any high ASCII characters - if (!$Apache::lonxml::prevent_entity_encode) { - $result=&HTML::Entities::encode($result,"\200-\377"); - } +# if (!$Apache::lonxml::prevent_entity_encode) { +# $result=&HTML::Entities::encode($result,"\200-\377"); +# } if ($Apache::lonxml::redirection) { $Apache::lonxml::outputstack['-1'] .= $result; } else {