Annotation of loncom/xml/lonxml.pm, revision 1.194

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

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