File:  [LON-CAPA] / loncom / xml / lonxml.pm
Revision 1.221: download - view: text, annotated - select for diffs
Fri Dec 13 21:39:19 2002 UTC (21 years, 5 months ago) by albertel
Branches: MAIN
CVS tags: version_0_6, HEAD
- using png now

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

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