File:  [LON-CAPA] / loncom / xml / lonxml.pm
Revision 1.306: download - view: text, annotated - select for diffs
Tue Mar 2 22:39:12 2004 UTC (20 years, 3 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- one more try at fixing this variable eval thing,

    1: # The LearningOnline Network with CAPA
    2: # XML Parser Module 
    3: #
    4: # $Id: lonxml.pm,v 1.306 2004/03/02 22:39:12 albertel Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: # Copyright for TtHfunc and TtMfunc by Ian Hutchinson. 
   29: # TtHfunc and TtMfunc (the "Code") may be compiled and linked into 
   30: # binary executable programs or libraries distributed by the 
   31: # Michigan State University (the "Licensee"), but any binaries so 
   32: # distributed are hereby licensed only for use in the context
   33: # of a program or computational system for which the Licensee is the 
   34: # primary author or distributor, and which performs substantial 
   35: # additional tasks beyond the translation of (La)TeX into HTML.
   36: # The C source of the Code may not be distributed by the Licensee
   37: # to any other parties under any circumstances.
   38: #
   39: # last modified 06/26/00 by Alexander Sakharuk
   40: # 11/6 Gerd Kortemeyer
   41: # 6/1/1 Gerd Kortemeyer
   42: # 2/21,3/13 Guy
   43: # 3/29,5/4 Gerd Kortemeyer
   44: # 5/26 Gerd Kortemeyer
   45: # 5/27 H. K. Ng
   46: # 6/2,6/3,6/8,6/9 Gerd Kortemeyer
   47: # 6/12,6/13 H. K. Ng
   48: # 6/16 Gerd Kortemeyer
   49: # 7/27 H. K. Ng
   50: # 8/7,8/9,8/10,8/11,8/15,8/16,8/17,8/18,8/20,8/23,8/24 Gerd Kortemeyer
   51: # Guy Albertelli
   52: # 9/26 Gerd Kortemeyer
   53: # Dec Guy Albertelli
   54: # YEAR=2002
   55: # 1/1 Gerd Kortemeyer
   56: # 1/2 Matthew Hall
   57: # 1/3 Gerd Kortemeyer
   58: #
   59: 
   60: package Apache::lonxml; 
   61: use vars 
   62: qw(@pwd @outputstack $redirection $import @extlinks $metamode $evaluate %insertlist @namespace $prevent_entity_encode $errorcount $warningcount);
   63: use strict;
   64: use HTML::LCParser();
   65: use HTML::TreeBuilder();
   66: use HTML::Entities();
   67: use Safe();
   68: use Safe::Hole();
   69: use Math::Cephes();
   70: use Math::Random();
   71: use Opcode();
   72: use POSIX qw(strftime);
   73: 
   74: 
   75: sub register {
   76:   my ($space,@taglist) = @_;
   77:   foreach my $temptag (@taglist) {
   78:     push(@{ $Apache::lonxml::alltags{$temptag} },$space);
   79:   }
   80: }
   81: 
   82: sub deregister {
   83:   my ($space,@taglist) = @_;
   84:   foreach my $temptag (@taglist) {
   85:     my $tempspace = $Apache::lonxml::alltags{$temptag}[-1];
   86:     if ($tempspace eq $space) {
   87:       pop(@{ $Apache::lonxml::alltags{$temptag} });
   88:     }
   89:   }
   90:   #&printalltags();
   91: }
   92: 
   93: use Apache::Constants qw(:common);
   94: use Apache::lontexconvert();
   95: use Apache::style();
   96: use Apache::run();
   97: use Apache::londefdef();
   98: use Apache::scripttag();
   99: use Apache::languagetags();
  100: use Apache::edit();
  101: use Apache::inputtags();
  102: use Apache::outputtags();
  103: use Apache::lonnet();
  104: use Apache::File();
  105: use Apache::loncommon();
  106: use Apache::lonfeedback();
  107: use Apache::lonmsg();
  108: use Apache::loncacc();
  109: use Apache::lonlocal;
  110: 
  111: #==================================================   Main subroutine: xmlparse  
  112: #debugging control, to turn on debugging modify the correct handler
  113: $Apache::lonxml::debug=0;
  114: 
  115: # keeps count of the number of warnings and errors generated in a parse
  116: $warningcount=0;
  117: $errorcount=0;
  118: 
  119: #path to the directory containing the file currently being processed
  120: @pwd=();
  121: 
  122: #these two are used for capturing a subset of the output for later processing,
  123: #don't touch them directly use &startredirection and &endredirection
  124: @outputstack = ();
  125: $redirection = 0;
  126: 
  127: #controls wheter the <import> tag actually does
  128: $import = 1;
  129: @extlinks=();
  130: 
  131: # meta mode is a bit weird only some output is to be turned off
  132: #<output> tag turns metamode off (defined in londefdef.pm)
  133: $metamode = 0;
  134: 
  135: # turns on and of run::evaluate actually derefencing var refs
  136: $evaluate = 1;
  137: 
  138: # data structure for eidt mode, determines what tags can go into what other tags
  139: %insertlist=();
  140: 
  141: # stores the list of active tag namespaces
  142: @namespace=();
  143: 
  144: # if 0 all high ASCII characters will be encoded into HTML Entities
  145: $prevent_entity_encode=0;
  146: 
  147: # has the dynamic menu been updated to know about this resource
  148: $Apache::lonxml::registered=0;
  149: 
  150: # a pointer the the Apache request object
  151: $Apache::lonxml::request='';
  152: 
  153: # a problem number counter, and check on ether it is used
  154: $Apache::lonxml::counter=1;
  155: $Apache::lonxml::counter_changed=0;
  156: 
  157: #internal check on whether to look at style defs
  158: $Apache::lonxml::usestyle=1;
  159: 
  160: #locations used to store the parameter string for style substitutions
  161: $Apache::lonxml::style_values='';
  162: $Apache::lonxml::style_end_values='';
  163: 
  164: #array of ssi calls that need to occur after we are done parsing
  165: @Apache::lonxml::ssi_info=();
  166: 
  167: #should we do the postag variable interpolation
  168: $Apache::lonxml::post_evaluate=1;
  169: 
  170: #a header message to emit in the case of any generated warning or errors
  171: $Apache::lonxml::warnings_error_header='';
  172: 
  173: sub xmlbegin {
  174:   my $output='';
  175:   if ($ENV{'browser.mathml'}) {
  176:       $output='<?xml version="1.0"?>'
  177:             .'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'
  178:             .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
  179:             .'[<!ENTITY mathns "http://www.w3.org/1998/Math/MathML">]>'
  180:             .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" ' 
  181: 		.'xmlns="http://www.w3.org/TR/REC-html40">';
  182:   } else {
  183:       $output='<html>';
  184:   }
  185:   return $output;
  186: }
  187: 
  188: sub xmlend {
  189:     my $mode='xml';
  190:     my $status='OPEN';
  191:     if ($Apache::lonhomework::parsing_a_problem) {
  192: 	$mode='problem';
  193: 	$status=$Apache::inputtags::status[-1]; 
  194:     }
  195:     return &Apache::lonfeedback::list_discussion($mode,$status).'</html>';
  196: }
  197: 
  198: sub tokeninputfield {
  199:     my $defhost=$Apache::lonnet::perlvar{'lonHostID'};
  200:     $defhost=~tr/a-z/A-Z/;
  201:     return (<<ENDINPUTFIELD)
  202: <script type="text/javascript">
  203:     function updatetoken() {
  204: 	var comp=new Array;
  205:         var barcode=unescape(document.tokeninput.barcode.value);
  206:         comp=barcode.split('*');
  207:         if (typeof(comp[0])!="undefined") {
  208: 	    document.tokeninput.codeone.value=comp[0];
  209: 	}
  210:         if (typeof(comp[1])!="undefined") {
  211: 	    document.tokeninput.codetwo.value=comp[1];
  212: 	}
  213:         if (typeof(comp[2])!="undefined") {
  214:             comp[2]=comp[2].toUpperCase();
  215: 	    document.tokeninput.codethree.value=comp[2];
  216: 	}
  217:         document.tokeninput.barcode.value='';
  218:     }  
  219: </script>
  220: <form method="post" name="tokeninput">
  221: <table border="2" bgcolor="#FFFFBB">
  222: <tr><th>DocID Checkin</th></tr>
  223: <tr><td>
  224: <table>
  225: <tr>
  226: <td>Scan in Barcode</td>
  227: <td><input type="text" size="22" name="barcode" 
  228: onChange="updatetoken()"/></td>
  229: </tr>
  230: <tr><td><i>or</i> Type in DocID</td>
  231: <td>
  232: <input type="text" size="5" name="codeone" />
  233: <b><font size="+2">*</font></b>
  234: <input type="text" size="5" name="codetwo" />
  235: <b><font size="+2">*</font></b>
  236: <input type="text" size="10" name="codethree" value="$defhost" 
  237: onChange="this.value=this.value.toUpperCase()" />
  238: </td></tr>
  239: </table>
  240: </td></tr>
  241: <tr><td><input type="submit" value="Check in DocID" /></td></tr>
  242: </table>
  243: </form>
  244: ENDINPUTFIELD
  245: }
  246: 
  247: sub maketoken {
  248:     my ($symb,$tuname,$tudom,$tcrsid)=@_;
  249:     unless ($symb) {
  250: 	$symb=&Apache::lonnet::symbread();
  251:     }
  252:     unless ($tuname) {
  253: 	$tuname=$ENV{'user.name'};
  254:         $tudom=$ENV{'user.domain'};
  255:         $tcrsid=$ENV{'request.course.id'};
  256:     }
  257: 
  258:     return &Apache::lonnet::checkout($symb,$tuname,$tudom,$tcrsid);
  259: }
  260: 
  261: sub printtokenheader {
  262:     my ($target,$token,$tsymb,$tcrsid,$tudom,$tuname)=@_;
  263:     unless ($token) { return ''; }
  264: 
  265:     my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
  266:     unless ($tsymb) {
  267: 	$tsymb=$symb;
  268:     }
  269:     unless ($tuname) {
  270: 	$tuname=$name;
  271:         $tudom=$domain;
  272:         $tcrsid=$courseid;
  273:     }
  274: 
  275:     my %reply=&Apache::lonnet::get('environment',
  276:               ['firstname','middlename','lastname','generation'],
  277:               $tudom,$tuname);
  278:     my $plainname=$reply{'firstname'}.' '. 
  279:                   $reply{'middlename'}.' '.
  280:                   $reply{'lastname'}.' '.
  281: 		  $reply{'generation'};
  282: 
  283:     if ($target eq 'web') {
  284:         my %idhash=&Apache::lonnet::idrget($tudom,($tuname));
  285: 	return 
  286:  '<img align="right" src="/cgi-bin/barcode.png?encode='.$token.'" />'.
  287:                &mt('Checked out for').' '.$plainname.
  288:                '<br />'.&mt('User').': '.$tuname.' at '.$tudom.
  289: 	       '<br />'.&mt('ID').': '.$idhash{$tuname}.
  290: 	       '<br />'.&mt('CourseID').': '.$tcrsid.
  291: 	       '<br />'.&mt('Course').': '.$ENV{'course.'.$tcrsid.'.description'}.
  292:                '<br />'.&mt('DocID').': '.$token.
  293:                '<br />'.&mt('Time').': '.&Apache::lonlocal::locallocaltime().'<hr />';
  294:     } else {
  295:         return $token;
  296:     }
  297: }
  298: 
  299: sub fontsettings() {
  300:     my $headerstring='';
  301:     if (($ENV{'browser.os'} eq 'mac') && (!$ENV{'browser.mathml'})) { 
  302: 	$headerstring.=
  303: 	    '<meta Content-Type="text/html; charset=x-mac-roman">';
  304:     } elsif (!$ENV{'browser.mathml'} && $ENV{'browser.unicode'}) {
  305: 	$headerstring.=
  306: 	    '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
  307:     }
  308:     return $headerstring;
  309: }
  310: 
  311: sub printalltags {
  312:   my $temp;
  313:   foreach $temp (sort keys %Apache::lonxml::alltags) {
  314:     &Apache::lonxml::debug("$temp -- ".
  315: 		  join(',',@{ $Apache::lonxml::alltags{$temp} }));
  316:   }
  317: }
  318: 
  319: sub xmlparse {
  320:  my ($request,$target,$content_file_string,$safeinit,%style_for_target) = @_;
  321: 
  322:  &setup_globals($request,$target);
  323:  &Apache::inputtags::initialize_inputtags();
  324:  &Apache::outputtags::initialize_outputtags();
  325:  &Apache::edit::initialize_edit();
  326:  &Apache::londefdef::initialize_londefdef();
  327: 
  328: #
  329: # do we have a course style file?
  330: #
  331: 
  332:  if ($ENV{'request.course.id'} && $ENV{'request.state'} ne 'construct') {
  333:      my $bodytext=
  334: 	 $ENV{'course.'.$ENV{'request.course.id'}.'.default_xml_style'};
  335:      if ($bodytext) {
  336:        my $location=&Apache::lonnet::filelocation('',$bodytext);
  337:        my $styletext=&Apache::lonnet::getfile($location);
  338:        if ($styletext ne '-1') {
  339:           %style_for_target = (%style_for_target,
  340:                           &Apache::style::styleparser($target,$styletext));
  341:        }
  342:     }
  343:  } elsif ($ENV{'construct.style'} && ($ENV{'request.state'} eq 'construct')) {
  344:      my $location=&Apache::lonnet::filelocation('',$ENV{'construct.style'});
  345:      my $styletext=&Apache::lonnet::getfile($location);
  346:        if ($styletext ne '-1') {
  347:           %style_for_target = (%style_for_target,
  348:                           &Apache::style::styleparser($target,$styletext));
  349:       }
  350:  }
  351: #&printalltags();
  352:  my @pars = ();
  353:  my $pwd=$ENV{'request.filename'};
  354:  $pwd =~ s:/[^/]*$::;
  355:  &newparser(\@pars,\$content_file_string,$pwd);
  356: 
  357:  my $safeeval = new Safe;
  358:  my $safehole = new Safe::Hole;
  359:  &init_safespace($target,$safeeval,$safehole,$safeinit);
  360: #-------------------- Redefinition of the target in the case of compound target
  361: 
  362:  ($target, my @tenta) = split('&&',$target);
  363: 
  364:  my @stack = ();
  365:  my @parstack = ();
  366:  &initdepth;
  367: 
  368:  my $finaloutput = &inner_xmlparse($target,\@stack,\@parstack,\@pars,
  369: 				   $safeeval,\%style_for_target);
  370: 
  371:  if ($ENV{'request.uri'}) {
  372:     &writeallows($ENV{'request.uri'});
  373:  }
  374:  &do_registered_ssi();
  375:  if ($Apache::lonxml::counter_changed) { &store_counter() }
  376:  return $finaloutput;
  377: }
  378: 
  379: sub htmlclean {
  380:     my ($raw,$full)=@_;
  381: 
  382:     my $tree = HTML::TreeBuilder->new;
  383:     $tree->ignore_unknown(0);
  384: 
  385:     $tree->parse($raw);
  386: 
  387:     my $output= $tree->as_HTML(undef,' ');
  388: 
  389:     $output=~s/\<(br|hr|img|meta|allow)(.*?)\>/\<$1$2 \/\>/gis;
  390:     $output=~s/\<\/(br|hr|img|meta|allow)\>//gis;
  391:     unless ($full) {
  392:        $output=~s/\<[\/]*(body|head|html)\>//gis;
  393:     }
  394: 
  395:     $tree = $tree->delete;
  396: 
  397:     return $output;
  398: }
  399: 
  400: sub latex_special_symbols {
  401:     my ($string,$where)=@_;
  402:     if ($where eq 'header') {
  403: 	$string =~ s/(\\|_|\^)/ /g;
  404: 	$string =~ s/(\$|%|\#|&|\{|\})/\\$1/g;
  405: 	$string =~ s/_/ /g;
  406:     } else {
  407: 	$string=~s/\\ /\\char92 /g;
  408: 	$string=~s/\^/\\\^\\strut /g;
  409: 	$string=~s/\~/\\char126 /g;
  410: 	#fixup & if it doesn't look like
  411:         # &#123; or &alpha;
  412: 	$string=~s/(&(?!((\#[0-9]+)|([a-z]+));))/\\$1/gi;
  413:         $string=~s/([^&\\])\#/$1\\#/g;
  414: 	$string=~s/\#\#/\#\\#/g;
  415: 	$string=~s/(\$|_|{|})/\\$1/g;
  416: 	$string=~s/\\char92 /\\texttt{\\char92}/g;
  417: 	$string=~s/(>|<)/\$$1\$/g; #more or less
  418: 	if ($string=~m/\d%/) {$string =~ s/(\d)%/$1\\%/g;} #percent after digit
  419: 	if ($string=~m/\s%/) {$string =~ s/(\s)%/$1\\%/g;} #percent after space
  420: 	if ($string eq '%.') {$string = '\%.';} #percent at the end of statement
  421:     }
  422:     return $string;
  423: }
  424: 
  425: sub inner_xmlparse {
  426:   my ($target,$stack,$parstack,$pars,$safeeval,$style_for_target)=@_;
  427:   my $finaloutput = '';
  428:   my $result;
  429:   my $token;
  430:   my $dontpop=0;
  431:   while ( $#$pars > -1 ) {
  432:     while ($token = $$pars['-1']->get_token) {
  433:       if (($token->[0] eq 'T') || ($token->[0] eq 'C') ) {
  434: 	if ($metamode<1) {
  435: 	    my $text=$token->[1];
  436: 	    if ($token->[0] eq 'C' && $target eq 'tex') {
  437: 		$text = '';
  438: #		$text = '%'.$text."\n";
  439: 	    }
  440: 	    $result.=$text;
  441: 	}
  442:       } elsif (($token->[0] eq 'D')) {
  443: 	if ($metamode<1 && $target eq 'web') {
  444: 	    my $text=$token->[1];
  445: 	    $result.=$text;
  446: 	}
  447:       } elsif ($token->[0] eq 'PI') {
  448: 	if ($metamode<1 && $target eq 'web') {
  449: 	  $result=$token->[2];
  450: 	}
  451:       } elsif ($token->[0] eq 'S') {
  452: 	# add tag to stack
  453: 	push (@$stack,$token->[1]);
  454: 	# add parameters list to another stack
  455: 	push (@$parstack,&parstring($token));
  456: 	&increasedepth($token);
  457: 	if ($Apache::lonxml::usestyle &&
  458: 	    exists($$style_for_target{$token->[1]})) {
  459: 	    $Apache::lonxml::usestyle=0;
  460: 	    my $string=$$style_for_target{$token->[1]}.
  461: 	      '<LONCAPA_INTERNAL_TURN_STYLE_ON />';
  462: 	    &Apache::lonxml::newparser($pars,\$string);
  463: 	    $Apache::lonxml::style_values=$$parstack[-1];
  464: 	    $Apache::lonxml::style_end_values=$$parstack[-1];
  465: 	} else {
  466: 	  $result = &callsub("start_$token->[1]", $target, $token, $stack,
  467: 			     $parstack, $pars, $safeeval, $style_for_target);
  468: 	}
  469:       } elsif ($token->[0] eq 'E') {
  470: 	if ($Apache::lonxml::usestyle &&
  471: 	    exists($$style_for_target{'/'."$token->[1]"})) {
  472: 	    $Apache::lonxml::usestyle=0;
  473: 	    my $string=$$style_for_target{'/'.$token->[1]}.
  474: 	      '<LONCAPA_INTERNAL_TURN_STYLE_ON end="'.$token->[1].'" />';
  475: 	    &Apache::lonxml::newparser($pars,\$string);
  476: 	    $Apache::lonxml::style_values=$Apache::lonxml::style_end_values;
  477: 	    $Apache::lonxml::style_end_values='';
  478: 	    $dontpop=1;
  479: 	} else {
  480: 	    #clear out any tags that didn't end
  481: 	    while ($token->[1] ne $$stack['-1'] && ($#$stack > -1)) {
  482: 		my $lasttag=$$stack[-1];
  483: 		if ($token->[1] =~ /^$lasttag$/i) {
  484: 		    &Apache::lonxml::warning('Using tag &lt;/'.$token->[1].'&gt; on line '.$token->[3].' as end tag to &lt;'.$$stack[-1].'&gt;');
  485: 		    last;
  486: 		} else {
  487: 		    &Apache::lonxml::warning('Found tag &lt;/'.$token->[1].'&gt; on line '.$token->[3].' when looking for &lt;/'.$$stack[-1].'&gt; in file');
  488: 		    &end_tag($stack,$parstack,$token);
  489: 		}
  490: 	    }
  491: 	    $result = &callsub("end_$token->[1]", $target, $token, $stack,
  492: 			       $parstack, $pars,$safeeval, $style_for_target);
  493: 	}
  494:       } else {
  495: 	&Apache::lonxml::error("Unknown token event :$token->[0]:$token->[1]:");
  496:       }
  497:       #evaluate variable refs in result
  498:       if ($Apache::lonxml::post_evaluate &&$result ne "") {
  499: 	  my $extras;
  500: 	  if (!$Apache::lonxml::usestyle) {
  501: 	      $extras=$Apache::lonxml::style_values;
  502: 	  }
  503: 	if ( $#$parstack > -1 ) {
  504: 	  $result=&Apache::run::evaluate($result,$safeeval,$extras.$$parstack[-1]);
  505: 	} else {
  506: 	  $result= &Apache::run::evaluate($result,$safeeval,$extras);
  507: 	}
  508:       }
  509:       $Apache::lonxml::post_evaluate=1;
  510: 
  511:       if (($token->[0] eq 'T') || ($token->[0] eq 'C') || ($token->[0] eq 'D') ) {
  512: 	  #Style file definitions should be correct
  513: 	  if ($target eq 'tex' && ($Apache::lonxml::usestyle)) {
  514: 	      $result=&latex_special_symbols($result);
  515: 	  }
  516:       }
  517: 
  518:       # Encode any high ASCII characters
  519: #      if (!$Apache::lonxml::prevent_entity_encode) {
  520: #	$result=&HTML::Entities::encode($result,"\200-\377");
  521: #      }
  522:       if ($Apache::lonxml::redirection) {
  523: 	$Apache::lonxml::outputstack['-1'] .= $result;
  524:       } else {
  525: 	$finaloutput.=$result;
  526:       }
  527:       $result = '';
  528: 
  529:       if ($token->[0] eq 'E' && !$dontpop) {
  530: 	&end_tag($stack,$parstack,$token);
  531:       }
  532:       $dontpop=0;
  533:     }	
  534:     if ($#$pars > -1) {
  535: 	pop @$pars;
  536: 	pop @Apache::lonxml::pwd;
  537:     }
  538:   }
  539: 
  540:   # if ($target eq 'meta') {
  541:   #   $finaloutput.=&endredirection;
  542:   # }
  543: 
  544: 
  545:   if (($ENV{'QUERY_STRING'}) && ($target eq 'web')) {
  546:     $finaloutput=&afterburn($finaloutput);
  547:   }	    
  548:   return $finaloutput;
  549: }
  550: 
  551: sub callsub {
  552:   my ($sub,$target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  553:   my $currentstring='';
  554:   my $nodefault;
  555:   {
  556:     my $sub1;
  557:     no strict 'refs';
  558:     my $tag=$token->[1];
  559: # get utterly rid of extended html tags
  560:     if ($tag=~/^x\-/i) { return ''; }
  561:     my $space=$Apache::lonxml::alltags{$tag}[-1];
  562:     if (!$space) {
  563:      	$tag=~tr/A-Z/a-z/;
  564: 	$sub=~tr/A-Z/a-z/;
  565: 	$space=$Apache::lonxml::alltags{$tag}[-1]
  566:     }
  567: 
  568:     my $deleted=0;
  569:     $Apache::lonxml::curdepth=join('_',@Apache::lonxml::depthcounter);
  570:     if (($token->[0] eq 'S') && ($target eq 'modified')) {
  571:       $deleted=&Apache::edit::handle_delete($space,$target,$token,$tagstack,
  572: 					     $parstack,$parser,$safeeval,
  573: 					     $style);
  574:     }
  575:     if (!$deleted) {
  576:       if ($space) {
  577: 	#&Apache::lonxml::debug("Calling sub $sub in $space $metamode");
  578: 	$sub1="$space\:\:$sub";
  579: 	($currentstring,$nodefault) = &$sub1($target,$token,$tagstack,
  580: 					     $parstack,$parser,$safeeval,
  581: 					     $style);
  582:       } else {
  583: 	#&Apache::lonxml::debug("NOT Calling sub $sub in $space $metamode");
  584: 	if ($metamode <1) {
  585: 	  if (defined($token->[4]) && ($metamode < 1)) {
  586: 	    $currentstring = $token->[4];
  587: 	  } else {
  588: 	    $currentstring = $token->[2];
  589: 	  }
  590: 	}
  591:       }
  592:       #    &Apache::lonxml::debug("nodefalt:$nodefault:");
  593:       if ($currentstring eq '' && $nodefault eq '') {
  594: 	if ($target eq 'edit') {
  595: 	  #&Apache::lonxml::debug("doing default edit for $token->[1]");
  596: 	  if ($token->[0] eq 'S') {
  597: 	    $currentstring = &Apache::edit::tag_start($target,$token);
  598: 	  } elsif ($token->[0] eq 'E') {
  599: 	    $currentstring = &Apache::edit::tag_end($target,$token);
  600: 	  }
  601: 	} elsif ($target eq 'modified') {
  602: 	  if ($token->[0] eq 'S') {
  603: 	    $currentstring = $token->[4];
  604: 	    $currentstring.=&Apache::edit::handle_insert();
  605: 	  } elsif ($token->[0] eq 'E') {
  606: 	    $currentstring = $token->[2];
  607:             $currentstring.=&Apache::edit::handle_insertafter($token->[1]);
  608: 	  } else {
  609: 	    $currentstring = $token->[2];
  610: 	  }
  611: 	}
  612:       }
  613:     }
  614:     use strict 'refs';
  615:   }
  616:   return $currentstring;
  617: }
  618: 
  619: sub setup_globals {
  620:   my ($request,$target)=@_;
  621:   $Apache::lonxml::request=$request;
  622:   $Apache::lonxml::registered = 0;
  623:   $errorcount=0;
  624:   $warningcount=0;
  625:   $Apache::lonxml::default_homework_loaded=0;
  626:   $Apache::lonxml::usestyle=1;
  627:   &init_counter();
  628:   @Apache::lonxml::pwd=();
  629:   @Apache::lonxml::extlinks=();
  630:   @Apache::lonxml::ssi_info=();
  631:   $Apache::lonxml::post_evaluate=1;
  632:   $Apache::lonxml::warnings_error_header='';
  633:   if ($target eq 'meta') {
  634:     $Apache::lonxml::redirection = 0;
  635:     $Apache::lonxml::metamode = 1;
  636:     $Apache::lonxml::evaluate = 1;
  637:     $Apache::lonxml::import = 0;
  638:   } elsif ($target eq 'answer') {
  639:     $Apache::lonxml::redirection = 0;
  640:     $Apache::lonxml::metamode = 1;
  641:     $Apache::lonxml::evaluate = 1;
  642:     $Apache::lonxml::import = 1;
  643:   } elsif ($target eq 'grade') {
  644:     &startredirection;
  645:     $Apache::lonxml::metamode = 0;
  646:     $Apache::lonxml::evaluate = 1;
  647:     $Apache::lonxml::import = 1;
  648:   } elsif ($target eq 'modified') {
  649:     $Apache::lonxml::redirection = 0;
  650:     $Apache::lonxml::metamode = 0;
  651:     $Apache::lonxml::evaluate = 0;
  652:     $Apache::lonxml::import = 0;
  653:   } elsif ($target eq 'edit') {
  654:     $Apache::lonxml::redirection = 0;
  655:     $Apache::lonxml::metamode = 0;
  656:     $Apache::lonxml::evaluate = 0;
  657:     $Apache::lonxml::import = 0;
  658:   } elsif ($target eq 'analyze') {
  659:     $Apache::lonxml::redirection = 0;
  660:     $Apache::lonxml::metamode = 0;
  661:     $Apache::lonxml::evaluate = 1;
  662:     $Apache::lonxml::import = 1;
  663:   } else {
  664:     $Apache::lonxml::redirection = 0;
  665:     $Apache::lonxml::metamode = 0;
  666:     $Apache::lonxml::evaluate = 1;
  667:     $Apache::lonxml::import = 1;
  668:   }
  669: }
  670: 
  671: sub init_safespace {
  672:   my ($target,$safeeval,$safehole,$safeinit) = @_;
  673:   $safeeval->permit("entereval");
  674:   $safeeval->permit(":base_math");
  675:   $safeeval->permit("sort");
  676:   $safeeval->permit("time");
  677:   $safeeval->deny(":base_io");
  678:   $safehole->wrap(\&Apache::scripttag::xmlparse,$safeeval,'&xmlparse');
  679:   $safehole->wrap(\&Apache::outputtags::multipart,$safeeval,'&multipart');
  680:   $safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT');
  681:   
  682:   $safehole->wrap(\&Math::Cephes::asin,$safeeval,'&asin');
  683:   $safehole->wrap(\&Math::Cephes::acos,$safeeval,'&acos');
  684:   $safehole->wrap(\&Math::Cephes::atan,$safeeval,'&atan');
  685:   $safehole->wrap(\&Math::Cephes::sinh,$safeeval,'&sinh');
  686:   $safehole->wrap(\&Math::Cephes::cosh,$safeeval,'&cosh');
  687:   $safehole->wrap(\&Math::Cephes::tanh,$safeeval,'&tanh');
  688:   $safehole->wrap(\&Math::Cephes::asinh,$safeeval,'&asinh');
  689:   $safehole->wrap(\&Math::Cephes::acosh,$safeeval,'&acosh');
  690:   $safehole->wrap(\&Math::Cephes::atanh,$safeeval,'&atanh');
  691:   $safehole->wrap(\&Math::Cephes::erf,$safeeval,'&erf');
  692:   $safehole->wrap(\&Math::Cephes::erfc,$safeeval,'&erfc');
  693:   $safehole->wrap(\&Math::Cephes::j0,$safeeval,'&j0');
  694:   $safehole->wrap(\&Math::Cephes::j1,$safeeval,'&j1');
  695:   $safehole->wrap(\&Math::Cephes::jn,$safeeval,'&jn');
  696:   $safehole->wrap(\&Math::Cephes::jv,$safeeval,'&jv');
  697:   $safehole->wrap(\&Math::Cephes::y0,$safeeval,'&y0');
  698:   $safehole->wrap(\&Math::Cephes::y1,$safeeval,'&y1');
  699:   $safehole->wrap(\&Math::Cephes::yn,$safeeval,'&yn');
  700:   $safehole->wrap(\&Math::Cephes::yv,$safeeval,'&yv');
  701:   
  702:   $safehole->wrap(\&Math::Cephes::bdtr  ,$safeeval,'&bdtr'  );
  703:   $safehole->wrap(\&Math::Cephes::bdtrc ,$safeeval,'&bdtrc' );
  704:   $safehole->wrap(\&Math::Cephes::bdtri ,$safeeval,'&bdtri' );
  705:   $safehole->wrap(\&Math::Cephes::btdtr ,$safeeval,'&btdtr' );
  706:   $safehole->wrap(\&Math::Cephes::chdtr ,$safeeval,'&chdtr' );
  707:   $safehole->wrap(\&Math::Cephes::chdtrc,$safeeval,'&chdtrc');
  708:   $safehole->wrap(\&Math::Cephes::chdtri,$safeeval,'&chdtri');
  709:   $safehole->wrap(\&Math::Cephes::fdtr  ,$safeeval,'&fdtr'  );
  710:   $safehole->wrap(\&Math::Cephes::fdtrc ,$safeeval,'&fdtrc' );
  711:   $safehole->wrap(\&Math::Cephes::fdtri ,$safeeval,'&fdtri' );
  712:   $safehole->wrap(\&Math::Cephes::gdtr  ,$safeeval,'&gdtr'  );
  713:   $safehole->wrap(\&Math::Cephes::gdtrc ,$safeeval,'&gdtrc' );
  714:   $safehole->wrap(\&Math::Cephes::nbdtr ,$safeeval,'&nbdtr' );
  715:   $safehole->wrap(\&Math::Cephes::nbdtrc,$safeeval,'&nbdtrc');
  716:   $safehole->wrap(\&Math::Cephes::nbdtri,$safeeval,'&nbdtri');
  717:   $safehole->wrap(\&Math::Cephes::ndtr  ,$safeeval,'&ndtr'  );
  718:   $safehole->wrap(\&Math::Cephes::ndtri ,$safeeval,'&ndtri' );
  719:   $safehole->wrap(\&Math::Cephes::pdtr  ,$safeeval,'&pdtr'  );
  720:   $safehole->wrap(\&Math::Cephes::pdtrc ,$safeeval,'&pdtrc' );
  721:   $safehole->wrap(\&Math::Cephes::pdtri ,$safeeval,'&pdtri' );
  722:   $safehole->wrap(\&Math::Cephes::stdtr ,$safeeval,'&stdtr' );
  723:   $safehole->wrap(\&Math::Cephes::stdtri,$safeeval,'&stdtri');
  724: 
  725: #  $safehole->wrap(\&Math::Cephes::new_fract,$safeeval,'&new_fract');
  726: #  $safehole->wrap(\&Math::Cephes::radd,$safeeval,'&radd');
  727: #  $safehole->wrap(\&Math::Cephes::rsub,$safeeval,'&rsub');
  728: #  $safehole->wrap(\&Math::Cephes::rmul,$safeeval,'&rmul');
  729: #  $safehole->wrap(\&Math::Cephes::rdiv,$safeeval,'&rdiv');
  730: #  $safehole->wrap(\&Math::Cephes::euclid,$safeeval,'&euclid');
  731: 
  732:   $safehole->wrap(\&Math::Random::random_beta,$safeeval,'&math_random_beta');
  733:   $safehole->wrap(\&Math::Random::random_chi_square,$safeeval,'&math_random_chi_square');
  734:   $safehole->wrap(\&Math::Random::random_exponential,$safeeval,'&math_random_exponential');
  735:   $safehole->wrap(\&Math::Random::random_f,$safeeval,'&math_random_f');
  736:   $safehole->wrap(\&Math::Random::random_gamma,$safeeval,'&math_random_gamma');
  737:   $safehole->wrap(\&Math::Random::random_multivariate_normal,$safeeval,'&math_random_multivariate_normal');
  738:   $safehole->wrap(\&Math::Random::random_multinomial,$safeeval,'&math_random_multinomial');
  739:   $safehole->wrap(\&Math::Random::random_noncentral_chi_square,$safeeval,'&math_random_noncentral_chi_square');
  740:   $safehole->wrap(\&Math::Random::random_noncentral_f,$safeeval,'&math_random_noncentral_f');
  741:   $safehole->wrap(\&Math::Random::random_normal,$safeeval,'&math_random_normal');
  742:   $safehole->wrap(\&Math::Random::random_permutation,$safeeval,'&math_random_permutation');
  743:   $safehole->wrap(\&Math::Random::random_permuted_index,$safeeval,'&math_random_permuted_index');
  744:   $safehole->wrap(\&Math::Random::random_uniform,$safeeval,'&math_random_uniform');
  745:   $safehole->wrap(\&Math::Random::random_poisson,$safeeval,'&math_random_poisson');
  746:   $safehole->wrap(\&Math::Random::random_uniform_integer,$safeeval,'&math_random_uniform_integer');
  747:   $safehole->wrap(\&Math::Random::random_negative_binomial,$safeeval,'&math_random_negative_binomial');
  748:   $safehole->wrap(\&Math::Random::random_binomial,$safeeval,'&math_random_binomial');
  749:   $safehole->wrap(\&Math::Random::random_seed_from_phrase,$safeeval,'&random_seed_from_phrase');
  750:   $safehole->wrap(\&Math::Random::random_set_seed_from_phrase,$safeeval,'&random_set_seed_from_phrase');
  751:   $safehole->wrap(\&Math::Random::random_get_seed,$safeeval,'&random_get_seed');
  752:   $safehole->wrap(\&Math::Random::random_set_seed,$safeeval,'&random_set_seed');
  753:   $safehole->wrap(\&Apache::lonxml::error,$safeeval,'&LONCAPA_INTERNAL_ERROR');
  754:   $safehole->wrap(\&Apache::lonxml::debug,$safeeval,'&DEBUG');
  755: 
  756: #need to inspect this class of ops
  757: # $safeeval->deny(":base_orig");
  758:   $safeinit .= ';$external::target="'.$target.'";';
  759:   my $rndseed;
  760:   my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
  761:   $rndseed=&Apache::lonnet::rndseed($symb,$courseid,$domain,$name);
  762:   $safeinit .= ';$external::randomseed='.$rndseed.';';
  763:   &Apache::lonxml::debug("Setting rndseed to $rndseed");
  764:   &Apache::run::run($safeinit,$safeeval);
  765: 
  766:   my $subroutine=<<'EVALUATESUB';
  767: sub __LC_INTERNAL_EVALUATE__ {
  768:     my ($__LC__a,$__LC__b,$__LC__c)=@_;
  769:     my $__LC__prefix;
  770:     while(1){
  771: 	{ 
  772: 	    use strict;
  773: 	    no strict "vars";
  774: 	    if (eval(defined(eval($__LC__a.$__LC__b)))) {
  775: 		return $__LC__prefix.eval($__LC__a.$__LC__b.$__LC__c);
  776: 	    }
  777: 	}
  778: 	$__LC__prefix.=substr($__LC__a,0,1,"");
  779: 	if ($__LC__a!~/^(\$|&|\#)/) { last; }
  780:     }
  781:     return $__LC__prefix.$__LC__a.$__LC__b.$__LC__c;
  782: }
  783: EVALUATESUB
  784:     $safeeval->permit("require");
  785:     $safeeval->reval($subroutine);
  786:     $safeeval->deny("require");
  787: }
  788: 
  789: sub default_homework_load {
  790:     my ($safeeval)=@_;
  791:     &Apache::lonxml::debug('Loading default_homework');
  792:     my $default=&Apache::lonnet::getfile('/home/httpd/html/res/adm/includes/default_homework.lcpm');
  793:     if ($default eq -1) {
  794: 	&Apache::lonxml::error("<b>Unable to find <i>default_homework.lcpm</i></b>");
  795:     } else {
  796: 	&Apache::run::run($default,$safeeval);
  797: 	$Apache::lonxml::default_homework_loaded=1;
  798:     }
  799: }
  800: 
  801: sub startredirection {
  802:   $Apache::lonxml::redirection++;
  803:   push (@Apache::lonxml::outputstack, '');
  804: }
  805: 
  806: sub endredirection {
  807:   if (!$Apache::lonxml::redirection) {
  808:     &Apache::lonxml::error("Endredirection was called, before a startredirection, perhaps you have unbalanced tags. Some debuging information:".join ":",caller);
  809:     return '';
  810:   }
  811:   $Apache::lonxml::redirection--;
  812:   pop @Apache::lonxml::outputstack;
  813: }
  814: 
  815: sub end_tag {
  816:   my ($tagstack,$parstack,$token)=@_;
  817:   pop(@$tagstack);
  818:   pop(@$parstack);
  819:   &decreasedepth($token);
  820: }
  821: 
  822: sub initdepth {
  823:   @Apache::lonxml::depthcounter=();
  824:   $Apache::lonxml::depth=-1;
  825:   $Apache::lonxml::olddepth=-1;
  826: }
  827: 
  828: sub increasedepth {
  829:   my ($token) = @_;
  830:   $Apache::lonxml::depth++;
  831:   $Apache::lonxml::depthcounter[$Apache::lonxml::depth]++;
  832:   if ($Apache::lonxml::depthcounter[$Apache::lonxml::depth]==1) {
  833:     $Apache::lonxml::olddepth=$Apache::lonxml::depth;
  834:   }
  835:   my $curdepth=join('_',@Apache::lonxml::depthcounter);
  836:   &Apache::lonxml::debug("s $Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1]\n");
  837: #print "<br />s $Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1]\n";
  838: }
  839: 
  840: sub decreasedepth {
  841:   my ($token) = @_;
  842:   $Apache::lonxml::depth--;
  843:   if ($Apache::lonxml::depth<$Apache::lonxml::olddepth-1) {
  844:     $#Apache::lonxml::depthcounter--;
  845:     $Apache::lonxml::olddepth=$Apache::lonxml::depth+1;
  846:   }
  847:   if (  $Apache::lonxml::depth < -1) {
  848:     &Apache::lonxml::warning(&mt("Missing tags, unable to properly run file."));
  849:     $Apache::lonxml::depth='-1';
  850:   }
  851:   my $curdepth=join('_',@Apache::lonxml::depthcounter);
  852:   &Apache::lonxml::debug("e $Apache::lonxml::depth : $Apache::lonxml::olddepth : $token->[1] : $curdepth\n");
  853: #print "<br />e $Apache::lonxml::depth : $Apache::lonxml::olddepth : $token->[1] : $curdepth\n";
  854: }
  855: 
  856: sub get_all_text_unbalanced {
  857: #there is a copy of this in lonpublisher.pm
  858:  my($tag,$pars)= @_;
  859:  my $token;
  860:  my $result='';
  861:  $tag='<'.$tag.'>';
  862:  while ($token = $$pars[-1]->get_token) {
  863:    if (($token->[0] eq 'T')||($token->[0] eq 'C')||($token->[0] eq 'D')) {
  864:      $result.=$token->[1];
  865:    } elsif ($token->[0] eq 'PI') {
  866:      $result.=$token->[2];
  867:    } elsif ($token->[0] eq 'S') {
  868:      $result.=$token->[4];
  869:    } elsif ($token->[0] eq 'E')  {
  870:      $result.=$token->[2];
  871:    }
  872:    if ($result =~ /(.*)\Q$tag\E(.*)/s) {
  873:      &Apache::lonxml::debug('Got a winner with leftovers ::'.$2);
  874:      &Apache::lonxml::debug('Result is :'.$1);
  875:      $result=$1;
  876:      my $redo=$tag.$2;
  877:      &Apache::lonxml::newparser($pars,\$redo);
  878:      last;
  879:    }
  880:  }
  881:  return $result
  882: }
  883: 
  884: sub increment_counter {
  885:     my ($increment) = @_;
  886:     if (defined($increment) && $increment gt 0) {
  887: 	$Apache::lonxml::counter+=$increment;
  888:     } else {
  889: 	$Apache::lonxml::counter++;
  890:     }
  891:     $Apache::lonxml::counter_changed=1;
  892: }
  893: 
  894: sub init_counter {
  895:     if (defined($ENV{'form.counter'})) {
  896: 	$Apache::lonxml::counter=$ENV{'form.counter'};
  897: 	$Apache::lonxml::counter_changed=0;
  898:     } else {
  899: 	$Apache::lonxml::counter=1;
  900: 	$Apache::lonxml::counter_changed=1;
  901:     }
  902: }
  903: 
  904: sub store_counter {
  905:     &Apache::lonnet::appenv(('form.counter' => $Apache::lonxml::counter));
  906:     return '';
  907: }
  908: 
  909: sub get_all_text {
  910:     my($tag,$pars,$style)= @_;
  911:     my $gotfullstack=1;
  912:     if (ref($pars) ne 'ARRAY') {
  913: 	$gotfullstack=0;
  914: 	$pars=[$pars];
  915:     }
  916:     if (ref($style) ne 'HASH') {
  917: 	$style={};
  918:     }
  919:     my $depth=0;
  920:     my $token;
  921:     my $result='';
  922:     if ( $tag =~ m:^/: ) { 
  923: 	my $tag=substr($tag,1); 
  924: 	#&Apache::lonxml::debug("have:$tag:");
  925: 	my $top_empty=0;
  926: 	while (($depth >=0) && ($#$pars > -1) && (!$top_empty)) {
  927: 	    while (($depth >=0) && ($token = $$pars[-1]->get_token)) {
  928: 		#&Apache::lonxml::debug("e token:$token->[0]:$depth:$token->[1]:".$#$pars.":".$#Apache::lonxml::pwd);
  929: 		if (($token->[0] eq 'T')||($token->[0] eq 'C')||($token->[0] eq 'D')) {
  930: 		    $result.=$token->[1];
  931: 		} elsif ($token->[0] eq 'PI') {
  932: 		    $result.=$token->[2];
  933: 		} elsif ($token->[0] eq 'S') {
  934: 		    if ($token->[1] =~ /^$tag$/i) { $depth++; }
  935: 		    if ($token->[1] =~ /^LONCAPA_INTERNAL_TURN_STYLE_ON$/i) { $Apache::lonxml::usestyle=1; }
  936: 		    if ($token->[1] =~ /^LONCAPA_INTERNAL_TURN_STYLE_OFF$/i) { $Apache::lonxml::usestyle=0; }
  937: 		    $result.=$token->[4];
  938: 		} elsif ($token->[0] eq 'E')  {
  939: 		    if ( $token->[1] =~ /^$tag$/i) { $depth--; }
  940: 		    #skip sending back the last end tag
  941: 		    if ($depth == 0 && exists($$style{'/'.$token->[1]}) && $Apache::lonxml::usestyle) {
  942: 			my $string=
  943: 			    '<LONCAPA_INTERNAL_TURN_STYLE_OFF end="yes" />'.
  944: 				$$style{'/'.$token->[1]}.
  945: 				    $token->[2].
  946: 					'<LONCAPA_INTERNAL_TURN_STYLE_ON />';
  947: 			&Apache::lonxml::newparser($pars,\$string);
  948: 			#&Apache::lonxml::debug("reParsing $string");
  949: 			next;
  950: 		    }
  951: 		    if ($depth > -1) {
  952: 			$result.=$token->[2];
  953: 		    } else {
  954: 			$$pars[-1]->unget_token($token);
  955: 		    }
  956: 		}
  957: 	    }
  958: 	    if (($depth >=0) && ($#$pars == 0) ) { $top_empty=1; }
  959: 	    if (($depth >=0) && ($#$pars > 0) ) {
  960: 		pop(@$pars);
  961: 		pop(@Apache::lonxml::pwd);
  962: 	    }
  963: 	}
  964: 	if ($top_empty && $depth >= 0) {
  965: 	    #never found the end tag ran out of text, throw error send back blank
  966: 	    &error('Never found end tag for &lt;'.$tag.
  967: 		   '&gt; current string <pre>'.
  968: 		   &HTML::Entities::encode($result).
  969: 		   '</pre>');
  970: 	    if ($gotfullstack) {
  971: 		my $newstring='</'.$tag.'>'.$result;
  972: 		&Apache::lonxml::newparser($pars,\$newstring);
  973: 	    }
  974: 	    $result='';
  975: 	}
  976:     } else {
  977: 	while ($#$pars > -1) {
  978: 	    while ($token = $$pars[-1]->get_token) {
  979: 		#&Apache::lonxml::debug("s token:$token->[0]:$depth:$token->[1]");
  980: 		if (($token->[0] eq 'T')||($token->[0] eq 'C')||
  981: 		    ($token->[0] eq 'D')) {
  982: 		    $result.=$token->[1];
  983: 		} elsif ($token->[0] eq 'PI') {
  984: 		    $result.=$token->[2];
  985: 		} elsif ($token->[0] eq 'S') {
  986: 		    if ( $token->[1] =~ /^$tag$/i) {
  987: 			$$pars[-1]->unget_token($token); last;
  988: 		    } else {
  989: 			$result.=$token->[4];
  990: 		    }
  991: 		    if ($token->[1] =~ /^LONCAPA_INTERNAL_TURN_STYLE_ON$/i) { $Apache::lonxml::usestyle=1; }
  992: 		    if ($token->[1] =~ /^LONCAPA_INTERNAL_TURN_STYLE_OFF$/i) { $Apache::lonxml::usestyle=0; }
  993: 		} elsif ($token->[0] eq 'E')  {
  994: 		    $result.=$token->[2];
  995: 		}
  996: 	    }
  997: 	    if (($#$pars > 0) ) {
  998: 		pop(@$pars);
  999: 		pop(@Apache::lonxml::pwd);
 1000: 	    } else { last; }
 1001: 	}
 1002:     }
 1003:     #&Apache::lonxml::debug("Exit:$result:");
 1004:     return $result
 1005: }
 1006: 
 1007: sub newparser {
 1008:   my ($parser,$contentref,$dir) = @_;
 1009:   push (@$parser,HTML::LCParser->new($contentref));
 1010:   $$parser['-1']->xml_mode('1');
 1011:   if ( $dir eq '' ) {
 1012:     push (@Apache::lonxml::pwd, $Apache::lonxml::pwd[$#Apache::lonxml::pwd]);
 1013:   } else {
 1014:     push (@Apache::lonxml::pwd, $dir);
 1015:   } 
 1016: }
 1017: 
 1018: sub parstring {
 1019:   my ($token) = @_;
 1020:   my $temp='';
 1021:   foreach (@{$token->[3]}) {
 1022:     unless ($_=~/\W/) {
 1023:       my $val=$token->[2]->{$_};
 1024:       $val =~ s/([\%\@\\\"\'])/\\$1/g;
 1025:       #if ($val =~ m/^[\%\@]/) { $val="\\".$val; }
 1026:       $temp .= "my \$$_=\"$val\";";
 1027:     }
 1028:   }
 1029:   return $temp;
 1030: }
 1031: 
 1032: sub writeallows {
 1033:     unless ($#extlinks>=0) { return; }
 1034:     my $thisurl='/res/'.&Apache::lonnet::declutter(shift);
 1035:     if ($ENV{'httpref.'.$thisurl}) {
 1036: 	$thisurl=$ENV{'httpref.'.$thisurl};
 1037:     }
 1038:     my $thisdir=$thisurl;
 1039:     $thisdir=~s/\/[^\/]+$//;
 1040:     my %httpref=();
 1041:     foreach (@extlinks) {
 1042:        $httpref{'httpref.'.
 1043:  	        &Apache::lonnet::hreflocation($thisdir,$_)}=$thisurl;
 1044:     }
 1045:     @extlinks=();
 1046:     &Apache::lonnet::appenv(%httpref);
 1047: }
 1048: 
 1049: sub register_ssi {
 1050:     my ($url,%form)=@_;
 1051:     push (@Apache::lonxml::ssi_info,{'url'=>$url,'form'=>\%form});
 1052:     return '';
 1053: }
 1054: 
 1055: sub do_registered_ssi {
 1056:     foreach my $info (@Apache::lonxml::ssi_info) {
 1057: 	my %form=%{ $info->{'form'}};
 1058: 	my $url=$info->{'url'};
 1059: 	&Apache::lonnet::ssi($url,%form);
 1060:     }
 1061: }
 1062: #
 1063: # Afterburner handles anchors, highlights and links
 1064: #
 1065: sub afterburn {
 1066:     my $result=shift;
 1067:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
 1068: 					    ['highlight','anchor','link']);
 1069:     if ($ENV{'form.highlight'}) {
 1070:        foreach (split(/\,/,$ENV{'form.highlight'})) {
 1071:            my $anchorname=$_;
 1072: 	   my $matchthis=$anchorname;
 1073:            $matchthis=~s/\_+/\\s\+/g;
 1074:            $result=~s/($matchthis)/\<font color=\"red\"\>$1\<\/font\>/gs;
 1075:        }
 1076:     }
 1077:     if ($ENV{'form.link'}) {
 1078:        foreach (split(/\,/,$ENV{'form.link'})) {
 1079:            my ($anchorname,$linkurl)=split(/\>/,$_);
 1080: 	   my $matchthis=$anchorname;
 1081:            $matchthis=~s/\_+/\\s\+/g;
 1082:            $result=~s/($matchthis)/\<a href=\"$linkurl\"\>$1\<\/a\>/gs;
 1083:        }
 1084:     }
 1085:     if ($ENV{'form.anchor'}) {
 1086:         my $anchorname=$ENV{'form.anchor'};
 1087: 	my $matchthis=$anchorname;
 1088:         $matchthis=~s/\_+/\\s\+/g;
 1089:         $result=~s/($matchthis)/\<a name=\"$anchorname\"\>$1\<\/a\>/s;
 1090:         $result.=(<<"ENDSCRIPT");
 1091: <script type="text/javascript">
 1092:     document.location.hash='$anchorname';
 1093: </script>
 1094: ENDSCRIPT
 1095:     }
 1096:     return $result;
 1097: }
 1098: 
 1099: sub storefile {
 1100:     my ($file,$contents)=@_;
 1101:     &Apache::lonnet::correct_line_ends(\$contents);
 1102:     if (my $fh=Apache::File->new('>'.$file)) {
 1103: 	print $fh $contents;
 1104:         $fh->close();
 1105:         return 1;
 1106:     } else {
 1107: 	&warning("Unable to save file $file");
 1108: 	return 0;
 1109:     }
 1110: }
 1111: 
 1112: sub createnewhtml {
 1113:   my $filecontents=(<<SIMPLECONTENT);
 1114: <html>
 1115: <head>
 1116: <title>
 1117:                            Title of Document Goes Here
 1118: </title>
 1119: </head>
 1120: <body bgcolor="#FFFFFF">
 1121: 
 1122:                            Body of Document Goes Here
 1123: 
 1124: </body>
 1125: </html>
 1126: SIMPLECONTENT
 1127:   return $filecontents;
 1128: }
 1129: 
 1130: sub createnewsty {
 1131:   my $filecontents=(<<SIMPLECONTENT);
 1132: <definetag name="">
 1133:     <render>
 1134:        <web></web>
 1135:        <tex></tex>
 1136:     </render>
 1137: </definetag>
 1138: SIMPLECONTENT
 1139:   return $filecontents;
 1140: }
 1141: 
 1142: 
 1143: sub inserteditinfo {
 1144:       my ($result,$filecontents,$filetype)=@_;
 1145:       $filecontents = &HTML::Entities::encode($filecontents);
 1146: #      my $editheader='<a href="#editsection">Edit below</a><hr />';
 1147:       my $xml_help = '';
 1148:       if ($filetype eq 'html') {
 1149: 	  $xml_help=Apache::loncommon::helpLatexCheatsheet();
 1150:       }
 1151:       my $cleanbut = '';
 1152:       if ($filetype eq 'html') {
 1153: 	  $cleanbut='<input type="submit" name="attemptclean" value="'.
 1154: 	      &mt('Save and then attempt to clean HTML').'" />';
 1155:       }
 1156:       my $titledisplay=&display_title();
 1157:       my %lt=&Apache::lonlocal::texthash('st' => 'Save this',
 1158: 					 'vi' => 'View',
 1159: 					 'ed' => 'Edit');
 1160:       my $buttons=(<<BUTTONS);
 1161: $cleanbut
 1162: <input type="submit" name="savethisfile" accesskey="s"  value="$lt{'st'}" />
 1163: <input type="submit" name="viewmode" accesskey="v" value="$lt{'vi'}" />
 1164: BUTTONS
 1165:       my $editfooter=(<<ENDFOOTER);
 1166: <hr />
 1167: <a name="editsection" />
 1168: <form method="post">
 1169: $xml_help
 1170: <input type="hidden" name="editmode" value="$lt{'ed'}" />
 1171: $buttons<br />
 1172: <textarea cols="80" rows="40" name="filecont">$filecontents</textarea>
 1173: <br />$buttons
 1174: <br />
 1175: </form>
 1176: $titledisplay
 1177: ENDFOOTER
 1178: #      $result=~s/(\<body[^\>]*\>)/$1$editheader/is;
 1179:       $result=~s/(\<\/body\>)/$editfooter/is;
 1180:       return $result;
 1181: }
 1182: 
 1183: sub get_target {
 1184:   my $viewgrades=&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'});
 1185:   if ( $ENV{'request.state'} eq 'published') {
 1186:     if ( defined($ENV{'form.grade_target'})
 1187: 	 && ($viewgrades == 'F' )) {
 1188:       return ($ENV{'form.grade_target'});
 1189:     } elsif (defined($ENV{'form.grade_target'})) {
 1190:       if (($ENV{'form.grade_target'} eq 'web') ||
 1191: 	  ($ENV{'form.grade_target'} eq 'tex') ) {
 1192: 	return $ENV{'form.grade_target'}
 1193:       } else {
 1194: 	return 'web';
 1195:       }
 1196:     } else {
 1197:       return 'web';
 1198:     }
 1199:   } elsif ($ENV{'request.state'} eq 'construct') {
 1200:     if ( defined($ENV{'form.grade_target'})) {
 1201:       return ($ENV{'form.grade_target'});
 1202:     } else {
 1203:       return 'web';
 1204:     }
 1205:   } else {
 1206:     return 'web';
 1207:   }
 1208: }
 1209: 
 1210: sub handler {
 1211:     my $request=shift;
 1212:     
 1213:     my $target=&get_target();
 1214:     
 1215:     $Apache::lonxml::debug=$ENV{'user.debug'};
 1216:     
 1217:     if ($ENV{'browser.mathml'}) {
 1218: 	&Apache::loncommon::content_type($request,'text/xml');
 1219:     } else {
 1220: 	&Apache::loncommon::content_type($request,'text/html');
 1221:     }
 1222:     &Apache::loncommon::no_cache($request);
 1223:     $request->send_http_header;
 1224:     
 1225:     return OK if $request->header_only;
 1226: 
 1227: 
 1228:     my $file=&Apache::lonnet::filelocation("",$request->uri);
 1229:     my $filetype;
 1230:     if ($file =~ /\.sty$/) {
 1231: 	$filetype='sty';
 1232:     } else {
 1233: 	$filetype='html';
 1234:     }
 1235: #
 1236: # Edit action? Save file.
 1237: #
 1238:     unless ($ENV{'request.state'} eq 'published') {
 1239: 	if (($ENV{'form.savethisfile'}) || ($ENV{'form.attemptclean'})) {
 1240: 	    if (&storefile($file,$ENV{'form.filecont'})) {
 1241: 		$request->print("<font COLOR=\"#0000FF\">".&mt('Updated').": ".
 1242: &Apache::lonlocal::locallocaltime(time)." </font>");
 1243: 	    } 
 1244: 	}
 1245:     }
 1246:     my %mystyle;
 1247:     my $result = '';
 1248:     my $filecontents=&Apache::lonnet::getfile($file);
 1249:     if ($filecontents eq -1) {
 1250: 	my $bodytag=&Apache::loncommon::bodytag('File Error');
 1251: 	my $fnf=&mt('File not found');
 1252: 	$result=(<<ENDNOTFOUND);
 1253: <html>
 1254: <head>
 1255: <title>$fnf</title>
 1256: </head>
 1257: $bodytag
 1258: <b>$fnf: $file</b>
 1259: </body>
 1260: </html>
 1261: ENDNOTFOUND
 1262:     $filecontents='';
 1263: 	if ($ENV{'request.state'} ne 'published') {
 1264: 	    if ($filetype eq 'sty') {
 1265: 		$filecontents=&createnewsty();
 1266: 	    } else {
 1267: 		$filecontents=&createnewhtml();
 1268: 	    }
 1269: 	    $ENV{'form.editmode'}='Edit'; #force edit mode
 1270: 	}
 1271:     } else {
 1272: 	unless ($ENV{'request.state'} eq 'published') {
 1273: 	    if ($ENV{'form.attemptclean'}) {
 1274: 		$filecontents=&htmlclean($filecontents,1);
 1275: 	    }
 1276: #
 1277: # we are in construction space, see if edit mode forced
 1278:             &Apache::loncommon::get_unprocessed_cgi
 1279:                           ($ENV{'QUERY_STRING'},['editmode']);
 1280: 	}
 1281: 	if (!$ENV{'form.editmode'} || $ENV{'form.viewmode'}) {
 1282: 	    $result = &Apache::lonxml::xmlparse($request,$target,$filecontents,
 1283: 						'',%mystyle);
 1284: 	}
 1285:     }
 1286:     
 1287: #
 1288: # Edit action? Insert editing commands
 1289: #
 1290:     unless ($ENV{'request.state'} eq 'published') {
 1291: 	if ($ENV{'form.editmode'} && (!($ENV{'form.viewmode'}))) {
 1292: 	    my $displayfile=$request->uri;
 1293: 	    $displayfile=~s/^\/[^\/]*//;
 1294: 	    $result='<html><body bgcolor="#FFFFFF"><h3>'.$displayfile.
 1295: 		'</h3></body></html>';
 1296: 	    $result=&inserteditinfo($result,$filecontents,$filetype);
 1297: 	}
 1298:     }
 1299:     if ($filetype eq 'html') { writeallows($request->uri); }
 1300: 	
 1301:     
 1302: 
 1303:     $request->print($result);
 1304:     
 1305:     return OK;
 1306: }
 1307: 
 1308: sub display_title {
 1309:     my $result;
 1310:     if ($ENV{'request.state'} eq 'construct') {
 1311: 	my $title=&Apache::lonnet::gettitle();
 1312: 	if (!defined($title) || $title eq '') {
 1313: 	    $title = $ENV{'request.filename'};
 1314: 	    $title = substr($title, rindex($title, '/') + 1);
 1315: 	}
 1316: 	$result = "<script type='text/javascript'>top.document.title = '$title - LON-CAPA Construction Space';</script>";
 1317:     }
 1318:     return $result;
 1319: }
 1320: 
 1321: sub debug {
 1322:     if ($Apache::lonxml::debug eq "1") {
 1323: 	$|=1;
 1324: 	my $request=$Apache::lonxml::request;
 1325: 	if (!$request) { $request=Apache->request; }
 1326: 	$request->print('<font size="-2"><pre>DEBUG:'.&HTML::Entities::encode($_[0])."</pre></font>\n");
 1327:     }
 1328: }
 1329: 
 1330: sub error {
 1331:   $errorcount++;
 1332:   my $request=$Apache::lonxml::request;
 1333:   if (!$request) { $request=Apache->request; }
 1334:   if (($Apache::lonxml::debug eq 1) || ($ENV{'request.state'} eq 'construct') ) {
 1335:     # If printing in construction space, put the error inside <pre></pre>
 1336:       $request->print($Apache::lonxml::warnings_error_header.
 1337: 		      "<b>ERROR:</b>".join("<br />\n",@_)."<br />\n");
 1338:       $Apache::lonxml::warnings_error_header='';
 1339:   } else {
 1340:     $request->print("<b>An Error occured while processing this resource. The instructor has been notified.</b> <br />");
 1341:     #notify author
 1342:     &Apache::lonmsg::author_res_msg($ENV{'request.filename'},join('<br />',@_));
 1343:     #notify course
 1344:     if ( $ENV{'request.course.id'} ) {
 1345:       my (undef,%users)=&Apache::lonfeedback::decide_receiver(undef,0,1,1,1);
 1346:       my $declutter=&Apache::lonnet::declutter($ENV{'request.filename'});
 1347:       foreach (keys %users) {
 1348: 	my ($user,$domain) = split(/:/, $_);
 1349: 	&Apache::lonmsg::user_normal_msg($user,$domain,
 1350:         "Error [$declutter]",join('<br />',@_));
 1351:       }
 1352:     }
 1353:   }
 1354: }
 1355: 
 1356: sub warning {
 1357:     $warningcount++;
 1358:   
 1359:     if ($ENV{'form.grade_target'} ne 'tex') {
 1360: 	if ($ENV{'request.state'} eq 'construct' || $Apache::lonxml::debug) {
 1361: 	    my $request=$Apache::lonxml::request;
 1362: 	    if (!$request) { $request=Apache->request; }
 1363: 	    $request->print($Apache::lonxml::warnings_error_header.
 1364: 		      "<b>W</b>ARNING<b>:</b>".join('<br />',@_)."<br />\n");
 1365: 	    $Apache::lonxml::warnings_error_header='';
 1366: 	}
 1367:     }
 1368: }
 1369: 
 1370: sub get_param {
 1371:     my ($param,$parstack,$safeeval,$context,$case_insensitive) = @_;
 1372:     if ( ! $context ) { $context = -1; }
 1373:     my $args ='';
 1374:     if ( $#$parstack > (-2-$context) ) { $args=$$parstack[$context]; }
 1375:     if ( ! $Apache::lonxml::usestyle ) {
 1376: 	$args=$Apache::lonxml::style_values.$args;
 1377:     }
 1378:     if ( ! $args ) { return undef; }
 1379:     if ( $case_insensitive ) {
 1380: 	if ($args =~ s/(my \$)(\Q$param\E)(=\")/$1.lc($2).$3/ei) {
 1381: 	    return &Apache::run::run("{$args;".'return $'.$param.'}',
 1382:                                      $safeeval); #'
 1383: 	} else {
 1384: 	    return undef;
 1385: 	}
 1386:     } else {
 1387: 	if ( $args =~ /my \$\Q$param\E=\"/ ) {
 1388: 	    return &Apache::run::run("{$args;".'return $'.$param.'}',
 1389:                                      $safeeval); #'
 1390: 	} else {
 1391: 	    return undef;
 1392: 	}
 1393:     }
 1394: }
 1395: 
 1396: sub get_param_var {
 1397:   my ($param,$parstack,$safeeval,$context,$case_insensitive) = @_;
 1398:   if ( ! $context ) { $context = -1; }
 1399:   my $args ='';
 1400:   if ( $#$parstack > (-2-$context) ) { $args=$$parstack[$context]; }
 1401:   if ( ! $Apache::lonxml::usestyle ) {
 1402:       $args=$Apache::lonxml::style_values.$args;
 1403:   }
 1404:   &Apache::lonxml::debug("Args are $args param is $param");
 1405:   if ($case_insensitive) {
 1406:       if (! ($args=~s/(my \$)(\Q$param\E)(=\")/$1.lc($2).$3/ei)) {
 1407: 	  return undef;
 1408:       }
 1409:   } elsif ( $args !~ /my \$\Q$param\E=\"/ ) { return undef; }
 1410:   my $value=&Apache::run::run("{$args;".'return $'.$param.'}',$safeeval); #'
 1411:   &Apache::lonxml::debug("first run is $value");
 1412:   if ($value =~ /^[\$\@\%]\w+$/) {
 1413:       &Apache::lonxml::debug("doing second");
 1414:       my @result=&Apache::run::run("return $value",$safeeval,1);
 1415:       if (!defined($result[0])) {
 1416: 	  return $value
 1417:       } else {
 1418: 	  if (wantarray) { return @result; } else { return $result[0]; }
 1419:       }
 1420:   } else {
 1421:     return $value;
 1422:   }
 1423: }
 1424: 
 1425: sub register_insert {
 1426:   my @data = split /\n/, &Apache::lonnet::getfile('/home/httpd/lonTabs/insertlist.tab');
 1427:   my $i;
 1428:   my $tagnum=0;
 1429:   my @order;
 1430:   for ($i=0;$i < $#data; $i++) {
 1431:     my $line = $data[$i];
 1432:     if ( $line =~ /^\#/ || $line =~ /^\s*\n/) { next; }
 1433:     if ( $line =~ /TABLE/ ) { last; }
 1434:     my ($tag,$descrip,$color,$function,$show,$helpfile,$helpdesc) = split(/,/, $line);
 1435:     if ($tag) {
 1436:       $insertlist{"$tagnum.tag"} = $tag;
 1437:       $insertlist{"$tagnum.description"} = $descrip;
 1438:       $insertlist{"$tagnum.color"} = $color;
 1439:       $insertlist{"$tagnum.function"} = $function;
 1440:       if (!defined($show)) { $show='yes'; }
 1441:       $insertlist{"$tagnum.show"}= $show;
 1442:       $insertlist{"$tagnum.helpfile"} = $helpfile;
 1443:       $insertlist{"$tagnum.helpdesc"} = $helpdesc;
 1444:       $insertlist{"$tag.num"}=$tagnum;
 1445:       $tagnum++;
 1446:     }
 1447:   }
 1448:   $i++; #skipping TABLE line
 1449:   $tagnum = 0;
 1450:   for (;$i < $#data;$i++) {
 1451:     my $line = $data[$i];
 1452:     my ($mnemonic,@which) = split(/ +/,$line);
 1453:     my $tag = $insertlist{"$tagnum.tag"};
 1454:     for (my $j=0;$j <=$#which;$j++) {
 1455:       if ( $which[$j] eq 'Y' ) {
 1456: 	if ($insertlist{"$j.show"} ne 'no') {
 1457: 	  push(@{ $insertlist{"$tag.which"} },$j);
 1458: 	}
 1459:       }
 1460:     }
 1461:     $tagnum++;
 1462:   }
 1463: }
 1464: 
 1465: sub description {
 1466:   my ($token)=@_;
 1467:   my $tagnum;
 1468:   my $tag=$token->[1];
 1469:   foreach my $namespace (reverse @Apache::lonxml::namespace) {
 1470:     my $testtag=$namespace.'::'.$tag;
 1471:     $tagnum=$insertlist{"$testtag.num"};
 1472:     if (defined($tagnum)) { last; }
 1473:   }
 1474:   if (!defined ($tagnum)) { $tagnum=$Apache::lonxml::insertlist{"$tag.num"}; }
 1475:   return $insertlist{$tagnum.'.description'};
 1476: }
 1477: 
 1478: # Returns a list containing the help file, and the description
 1479: sub helpinfo {
 1480:   my ($token)=@_;
 1481:   my $tagnum;
 1482:   my $tag=$token->[1];
 1483:   foreach my $namespace (reverse @Apache::lonxml::namespace) {
 1484:     my $testtag=$namespace.'::'.$tag;
 1485:     $tagnum=$insertlist{"$testtag.num"};
 1486:     if (defined($tagnum)) { last; }
 1487:   }
 1488:   if (!defined ($tagnum)) { $tagnum=$Apache::lonxml::insertlist{"$tag.num"}; }
 1489:   return ($insertlist{$tagnum.'.helpfile'}, $insertlist{$tagnum.'.helpdesc'});
 1490: }
 1491: 
 1492: # ----------------------------------------------------------------- whichuser
 1493: # returns a list of $symb, $courseid, $domain, $name that is correct for
 1494: # calls to lonnet functions for this setup.
 1495: # - looks for form.grade_ parameters
 1496: sub whichuser {
 1497:   my ($passedsymb)=@_;
 1498:   my ($symb,$courseid,$domain,$name,$publicuser);
 1499:   if (defined($ENV{'form.grade_symb'})) {
 1500:     my $tmp_courseid=$ENV{'form.grade_courseid'};
 1501:     my $allowed=&Apache::lonnet::allowed('vgr',$tmp_courseid);
 1502:     if ($allowed) {
 1503:       $symb=$ENV{'form.grade_symb'};
 1504:       $courseid=$ENV{'form.grade_courseid'};
 1505:       $domain=$ENV{'form.grade_domain'};
 1506:       $name=$ENV{'form.grade_username'};
 1507:     }
 1508:   } else {
 1509:       if (!$passedsymb) {
 1510:           $symb=&Apache::lonnet::symbread();
 1511:       } else {
 1512:           $symb=$passedsymb;
 1513:       }
 1514:       $courseid=$ENV{'request.course.id'};
 1515:       $domain=$ENV{'user.domain'};
 1516:       $name=$ENV{'user.name'};
 1517:       if ($name eq 'public' && $domain eq 'public') {
 1518: 	  if (!defined($ENV{'form.username'})) {
 1519: 	      $ENV{'form.username'}.=time.rand(10000000);
 1520: 	  }
 1521: 	  $name.=$ENV{'form.username'};
 1522:       }
 1523:   }
 1524:   return ($symb,$courseid,$domain,$name,$publicuser);
 1525: }
 1526: 
 1527: 1;
 1528: __END__
 1529: 
 1530: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>