--- loncom/xml/lonxml.pm 2002/04/10 15:19:59 1.167 +++ loncom/xml/lonxml.pm 2002/05/16 00:56:46 1.169 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # XML Parser Module # -# $Id: lonxml.pm,v 1.167 2002/04/10 15:19:59 albertel Exp $ +# $Id: lonxml.pm,v 1.169 2002/05/16 00:56:46 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -60,7 +60,7 @@ package Apache::lonxml; use vars -qw(@pwd @outputstack $redirection $import @extlinks $metamode $evaluate %insertlist @namespace); +qw(@pwd @outputstack $redirection $import @extlinks $metamode $evaluate %insertlist @namespace $prevent_entity_encode); use strict; use HTML::LCParser(); use HTML::TreeBuilder(); @@ -129,6 +129,9 @@ $evaluate = 1; # stores the list of active tag namespaces @namespace=(); +# if 0 all high ASCII characters will be encoded into HTML Entities +$prevent_entity_encode=0; + # has the dynamic menu been updated to know about this resource $Apache::lonxml::registered=0; @@ -336,26 +339,20 @@ sub registerurl { if ($ENV{'browser.type'} eq 'explorer') { $nothing='javascript:void(0);'; } if (($ENV{'REQUEST_URI'}!~/^\/(res\/)*adm\//) || ($forcereg)) { my $hwkadd=''; - if ($ENV{'REQUEST_URI'}=~/\.(problem|exam|quiz|assess|survey|form)$/) { + if ($ENV{'request.filename'}=~/\.(problem|exam|quiz|assess|survey|form)$/) { if (&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) { $hwkadd.=(<<ENDSUBM); - menu.switchbutton - (7,1,'subm.gif','view sub','missions', - 'gocmd("/adm/grades","submission")'); + menu.switchbutton(7,1,'subm.gif','view sub','missions','gocmd("/adm/grades","submission")'); ENDSUBM } if (&Apache::lonnet::allowed('mgr',$ENV{'request.course.id'})) { $hwkadd.=(<<ENDGRDS); - menu.switchbutton - (7,2,'pgrd.gif','problem','grades', - 'gocmd("/adm/grades","viewgrades")'); + menu.switchbutton(7,2,'pgrd.gif','problem','grades','gocmd("/adm/grades","viewgrades")'); ENDGRDS } if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) { $hwkadd.=(<<ENDPARM); - menu.switchbutton - (7,3,'pparm.gif','problem','parms', - 'gocmd("/adm/parmset","set")'); + menu.switchbutton(7,3,'pparm.gif','problem','parms','gocmd("/adm/parmset","set")'); ENDPARM } } @@ -630,18 +627,22 @@ sub inner_xmlparse { #evaluate variable refs in result if ($result ne "") { if ( $#$parstack > -1 ) { - if ($Apache::lonxml::redirection) { - $Apache::lonxml::outputstack['-1'] .= - &Apache::run::evaluate($result,$safeeval,$$parstack['-1']); - } else { - $finaloutput .= &Apache::run::evaluate($result,$safeeval, - $$parstack['-1']); - } + $result=&Apache::run::evaluate($result,$safeeval,$$parstack[-1]); } else { - $finaloutput .= &Apache::run::evaluate($result,$safeeval,''); + $result= &Apache::run::evaluate($result,$safeeval,''); } - $result = ''; } + # Encode any high ASCII characters + if (!$Apache::lonxml::prevent_entity_encode) { + $result=&HTML::Entities::encode($result,"\200-\377"); + } + if ($Apache::lonxml::redirection) { + $Apache::lonxml::outputstack['-1'] .= $result; + } else { + $finaloutput.=$result; + } + $result = ''; + if ($token->[0] eq 'E') { &end_tag($stack,$parstack,$token); } @@ -654,8 +655,7 @@ sub inner_xmlparse { # $finaloutput.=&endredirection; # } - # Encode any high ASCII characters - $finaloutput=&HTML::Entities::encode($finaloutput,"\200-\377"); + if (($ENV{'QUERY_STRING'}) && ($target eq 'web')) { $finaloutput=&afterburn($finaloutput); }