Annotation of loncom/xml/scripttag.pm, revision 1.164

1.1       albertel    1: # The LearningOnline Network with CAPA
                      2: # <script> definiton
1.58      www         3: #
1.164   ! www         4: # $Id: scripttag.pm,v 1.163 2011/12/23 18:34:11 www Exp $
1.58      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: #
1.116     www        28: 
1.47      albertel   29: package Apache::scripttag;
1.1       albertel   30: 
                     31: use strict;
1.3       albertel   32: use Apache::lonnet;
1.145     albertel   33: use Apache::lonlocal;
                     34: use Apache::style();
1.1       albertel   35: 
1.47      albertel   36: #Globals
                     37: # this used to pass around the standard callsub arguments to a tag func
                     38: # so xmlparse can reenter the inner_xmlparse loop.
                     39: 
                     40: @Apache::scripttag::parser_env = ();
1.61      harris41   41: BEGIN {
1.62      albertel   42:   &Apache::lonxml::register('Apache::scripttag',
                     43: 			    ('script','scriptlib','parserlib','import',
1.163     www        44: 			     'window','windowlink','togglebox','display','storetc','physnet',
1.123     albertel   45: 			     'standalone','comment','num','parse','algebra',
1.86      albertel   46: 			     'LONCAPA_INTERNAL_TURN_STYLE_ON',
1.150     raeburn    47: 			     'LONCAPA_INTERNAL_TURN_STYLE_OFF'));
1.81      albertel   48: }
                     49: 
                     50: sub start_LONCAPA_INTERNAL_TURN_STYLE_ON {
                     51:     $Apache::lonxml::usestyle=1;
1.89      albertel   52:     $Apache::lonxml::style_values='';
1.81      albertel   53:     return ('','no');
                     54: }
                     55: 
                     56: sub end_LONCAPA_INTERNAL_TURN_STYLE_ON {
1.91      albertel   57:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                     58:     my $end=&Apache::lonxml::get_param('end',$parstack,$safeeval);
                     59:     if (defined($end)) {
                     60: 	&Apache::lonxml::end_tag($tagstack,$parstack,$token);
                     61:     }
1.100     albertel   62:     return ('','no');
                     63: }
                     64: 
                     65: sub start_LONCAPA_INTERNAL_TURN_STYLE_OFF {
                     66:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                     67:     $Apache::lonxml::usestyle=0;
                     68:     my $end=&Apache::lonxml::get_param('end',$parstack,$safeeval);
                     69:     if (!$end) {
                     70: 	$Apache::lonxml::style_values=$$parstack[-1];
                     71: 	$Apache::lonxml::style_end_values=$$parstack[-1];
                     72:     } else {
                     73: 	$Apache::lonxml::style_values=$Apache::lonxml::style_end_values;
                     74: 	$Apache::lonxml::style_end_values='';
                     75:     }
                     76:     return ('','no');
                     77: }
                     78: 
                     79: sub end_LONCAPA_INTERNAL_TURN_STYLE_OFF {
1.86      albertel   80:     return ('','no');
                     81: }
                     82: 
1.1       albertel   83: sub start_script {
1.40      albertel   84:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.47      albertel   85:   @Apache::scripttag::parser_env = @_;
1.24      albertel   86:   my $result='';
1.39      albertel   87:   my $type= &Apache::lonxml::get_param('type',$parstack,$safeeval);
                     88:   &Apache::lonxml::debug("found type of $type");
1.17      albertel   89:   if ($type eq "loncapa/perl") {
                     90:     if ( $target eq "modified" ) {
1.103     albertel   91: 	$result=$token->[4].&Apache::edit::modifiedfield('/script',$parser);
1.54      albertel   92:     } elsif ( $target eq 'web' || $target eq 'tex' ||
1.130     albertel   93: 	      $target eq 'grade' || $target eq 'webgrade' ||
                     94: 	      $target eq 'answer' || $target eq 'analyze' ) {
1.107     albertel   95: 	my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/script",$parser);
1.79      albertel   96: 	if (!$Apache::lonxml::default_homework_loaded) {
                     97: 	    &Apache::lonxml::default_homework_load($safeeval);
                     98: 	}
                     99: 	&Apache::run::run($bodytext,$safeeval);
1.88      albertel  100: 	if (($target eq 'answer') &&
1.126     albertel  101: 	    ($env{'form.answer_output_mode'} ne 'tex') &&
1.88      albertel  102: 	    ($Apache::lonhomework::viewgrades == 'F')) {
1.79      albertel  103: 	    $Apache::lonxml::evaluate--;
1.138     albertel  104: 	    my (undef,undef,$udom,$uname)=&Apache::lonnet::whichuser();
1.140     albertel  105: 	    $uname =~s/\W//g;
                    106: 	    $udom  =~s/\W//g;
1.145     albertel  107: 	    my $function_name = 
                    108: 		join('_','LONCAPA_scriptvars',$uname,$udom,
                    109: 		     $env{'form.counter'},$Apache::lonxml::curdepth);
1.158     www       110:             &Apache::lonxml::add_script_result(
1.159     www       111: 	             &Apache::loncommon::modal_adhoc_window($function_name,500,500,
                    112:                             '<pre>'.&Apache::run::dump($target,$safeeval).'</pre>',
                    113:                             &mt('Script Vars'))."<br />");
1.79      albertel  114: 	}
1.28      albertel  115:     } elsif ($target eq "edit" ) {
1.41      albertel  116:       #&Apache::run::run($bodytext,$safeeval);
                    117:       #$result="<br /> &lt;$token->[1]&gt; output: <br />$bodytext<br />Source:<br />";
1.107     albertel  118: 	my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/script",$parser);
1.103     albertel  119: 	$result=&Apache::edit::tag_start($target,$token,'Script');
                    120: 	$result.=&Apache::edit::editfield($token->[1],$bodytext,'',80,4);
1.107     albertel  121:     } elsif ($target eq 'meta') {
                    122: 	my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/script",$parser);
1.17      albertel  123:     }
                    124:   } else {
1.108     matthew   125:       my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/script",$parser);
1.144     albertel  126:       if ($target ne "meta" && $target ne 'tex' && $target ne 'answer') {
1.112     albertel  127: 	  $result = $token->[4];
                    128: 	  $result.=$bodytext;
                    129:       }
1.13      albertel  130:   }
1.24      albertel  131:   return $result;
1.17      albertel  132: }
1.13      albertel  133: 
1.17      albertel  134: sub end_script {
1.40      albertel  135:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.28      albertel  136:   if ( $target eq "meta" ) { return ''; } 
1.39      albertel  137:   my $type = &Apache::lonxml::get_param('type',$parstack,$safeeval);
1.29      albertel  138:   my $result='';
                    139:   #other script blocks need to survive
1.115     albertel  140:   if ($type ne "loncapa/perl" && $target ne 'tex') {
1.53      albertel  141:     return $token->[2];
                    142:   } elsif ($target eq 'edit' ) {
                    143:     return &Apache::edit::end_table();
1.78      albertel  144:   } elsif ($target eq 'answer') {
1.53      albertel  145:     $Apache::lonxml::evaluate++;
                    146:   }
1.28      albertel  147:   return '';
1.24      albertel  148: }
                    149: 
                    150: sub start_display {
1.40      albertel  151:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.119     albertel  152:   @Apache::scripttag::parser_env = @_;
1.48      albertel  153:   my $result;
1.39      albertel  154: 
1.24      albertel  155:   if ( $target eq "modified" ) {
1.103     albertel  156:       $result=$token->[4].&Apache::edit::modifiedfield("/display",$parser);
1.54      albertel  157:   } elsif ( $target eq 'web' || $target eq 'tex' ||
1.130     albertel  158: 	    $target eq 'grade' || $target eq 'webgrade' ||
                    159: 	    $target eq 'answer' || $target eq 'analyze') {
1.107     albertel  160:       my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/display",$parser);
1.80      albertel  161:       if (!$Apache::lonxml::default_homework_loaded) {
                    162: 	  &Apache::lonxml::default_homework_load($safeeval);
                    163:       }
                    164:       $result=&Apache::run::run($bodytext,$safeeval);
                    165:       if ($target eq 'grade' || $target eq 'answer' ||
                    166: 	  $target eq 'analyze') {
1.114     albertel  167: 	  # grade/answer/analyxe should produce no output but if we
                    168: 	  # are redirecting, the redirecter should know what to do
                    169: 	  # with the output
                    170: 	  if (!$Apache::lonxml::redirection) { $result=''; }
1.80      albertel  171:       }
1.101     albertel  172:       $Apache::lonxml::post_evaluate=0;
1.48      albertel  173:   } elsif ($target eq "edit" ) {
1.110     albertel  174:     my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/display",$parser);
1.48      albertel  175:     #$result = 
                    176:     #  "<br /> &lt;$token->[1]&gt; output: <br />$bodytext<br />Source:<br />";
                    177:     #$result.=&Apache::edit::editfield($token->[1],$bodytext,'',40,1);
                    178:     $result=&Apache::edit::tag_start($target,$token,'Script With Display');
1.77      albertel  179:     $result.=&Apache::edit::editfield($token->[1],$bodytext,'',80,1)
1.107     albertel  180:   } elsif ($target eq 'meta') {
                    181:       my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/display",$parser);
1.24      albertel  182:   }
                    183:   return $result;
                    184: }
                    185: 
                    186: sub end_display {
1.48      albertel  187:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                    188:   if ($target eq 'edit' ) { return &Apache::edit::end_table(); }
                    189:   return '';
1.1       albertel  190: }
1.3       albertel  191: 
                    192: sub start_scriptlib {
1.40      albertel  193:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.37      albertel  194:   my $bodytext;
                    195:   my $result ='';
                    196:   my $error='';
                    197: 
1.106     albertel  198:   if ($target eq 'web' || $target eq 'tex' || $target eq 'grade' ||
                    199:       $target eq 'meta' || $target eq 'edit' || $target eq 'answer' ||
1.137     albertel  200:       $target eq 'analyze' || $target eq 'webgrade') {
1.37      albertel  201:     $bodytext=$$parser[$#$parser]->get_text("/scriptlib");
                    202:     $bodytext=&Apache::run::evaluate($bodytext,$safeeval,
                    203: 				     $$parstack[$#$parstack]);
                    204:     my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],
                    205: 					       $bodytext);
                    206:     my $script=&Apache::lonnet::getfile($location);
                    207:     if ($script == -1) {
                    208:       if ($target eq 'edit') {
1.145     albertel  209:         $error='</tr><tr><td>'.&mt('Errors').'</td><td colspan="2"><b>'.&mt(' Unable to find [_1]','<span class="LC_filename">'.$location.'</span>').'</b></td>'."\n";
1.37      albertel  210:       } else {
                    211: 	&Apache::lonxml::error("<b> Unable to find <i>$location</i> for scriptlib</b>");
                    212: 	return "";
                    213:       }
                    214:     }
                    215:     &Apache::run::run($script,$safeeval);
                    216:     #&Apache::lonxml::debug("ran $bodytext:<br />".&Apache::lonnet::getfile($bodytext)."<br />");
1.18      albertel  217:   }
1.13      albertel  218:   if ($target eq "edit" ) {
1.37      albertel  219:     $result=
1.49      albertel  220:       &Apache::edit::tag_start($target,$token,'New Script Functions').
1.83      matthew   221: 	&Apache::edit::editline($token->[1],$bodytext,'scriptlib',40).
                    222:             &Apache::edit::browse(undef,'textnode').
1.49      albertel  223: 	  $error.'</td></tr>'.
                    224: 	    &Apache::edit::end_table();
1.37      albertel  225:   }
                    226:   if ($target eq "modified" ) {
1.103     albertel  227:       $result=$token->[4].&Apache::edit::modifiedfield("/scriptlib",$parser);
1.3       albertel  228:   }
                    229:   return $result;
                    230: }
                    231: 
1.37      albertel  232: sub end_scriptlib {
1.40      albertel  233:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.49      albertel  234:   my @result;
                    235:   if ($target eq "edit" ) { $result[1]='no'; }
                    236:   return @result;
1.37      albertel  237: }
1.4       albertel  238: 
                    239: sub start_parserlib {
1.40      albertel  240:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.37      albertel  241:   my $bodytext;
1.7       albertel  242:   my $result ="";
1.37      albertel  243:   my $error='';
1.106     albertel  244:   if ($target eq 'web' || $target eq 'tex' || $target eq 'grade' ||
                    245:       $target eq 'meta' || $target eq 'edit' || $target eq 'answer' ||
1.137     albertel  246:       $target eq 'analyze' || $target eq 'webgrade') {
1.37      albertel  247:     $bodytext=$$parser[$#$parser]->get_text("/parserlib");
                    248:     $bodytext=&Apache::run::evaluate($bodytext,$safeeval,
                    249: 				     $$parstack[$#$parstack]);
                    250:     my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],
                    251: 					       $bodytext);
                    252:     my $styletext=&Apache::lonnet::getfile($location);
                    253:     #&Apache::lonxml::debug("found :$bodytext: in :$location: with :$styletext:");
                    254:     if ($styletext == -1) {
                    255:       if ($target eq 'edit') {
                    256: 	$error='</tr><tr><td>Errors</td><td colspan="2"><b> Unable to find <i>'.$location.'</i></b></td>'."\n";
                    257:       } else {
                    258: 	&Apache::lonxml::error("<b> Unable to find <i>$location</i> for parserlib</b>");
                    259: 	return "";
                    260:       }
                    261:     }
                    262:     %$style = ( %$style , &Apache::style::styleparser($target,$styletext));
1.18      albertel  263:   }
1.13      albertel  264:   if ($target eq "edit" ) {
1.37      albertel  265:     $result=
1.49      albertel  266:       &Apache::edit::tag_start($target,$token,'New Tag Definitions').
1.68      albertel  267: 	&Apache::edit::editline($token->[1],$bodytext,'',40).
1.49      albertel  268: 	  $error.'</td></tr>'.
                    269: 	    &Apache::edit::end_table();
1.37      albertel  270:   }
                    271:   if ($target eq "modified" ) {
1.103     albertel  272:       $result=$token->[4].&Apache::edit::modifiedfield("/parserlib",$parser);
1.7       albertel  273:   }
                    274:   return $result;
1.4       albertel  275: }
                    276: 
                    277: sub end_parserlib {
1.40      albertel  278:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.49      albertel  279:   my @result;
                    280:   if ($target eq "edit" ) { $result[1]='no'; }
                    281:   return @result;
1.6       albertel  282: }
                    283: 
1.30      sakharuk  284: sub start_window {
1.105     albertel  285:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    286:     my $result = '';
1.137     albertel  287:     if ($target eq 'web' || $target eq 'webgrade') {
1.105     albertel  288: 	&Apache::lonxml::startredirection;
                    289:     } elsif ($target eq 'tex') {
1.164   ! www       290:         my $printtext=&Apache::lonxml::get_param('printtext',$parstack,$safeeval);
        !           291:         if ($printtext=~/\w/) {
        !           292: # If printtext is given, do not output any intervening information
        !           293:            &Apache::lonxml::startredirection;
        !           294:         } else {
        !           295:            $result = '\unskip\footnote{';
        !           296:         }
1.105     albertel  297:     } elsif ($target eq 'edit') {
                    298: 	$result.=&Apache::edit::tag_start($target,$token);
                    299: 	$result.=&Apache::edit::text_arg('Text of Link:','linktext',$token,70);
1.131     albertel  300: 	$result.=&Apache::edit::text_arg('Height:','height',$token,5);
                    301: 	$result.=&Apache::edit::text_arg('Width:','width',$token,5);
1.164   ! www       302:         $result.=&Apache::edit::text_arg('Printed text (optional):','printtext',$token,20);
1.105     albertel  303: 	$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
                    304:     } elsif ($target eq 'modified') {
                    305: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
1.129     raeburn   306: 						     $safeeval,'linktext',
1.161     www       307: 						     'width','height');
1.105     albertel  308: 	if ($constructtag) { $result=&Apache::edit::rebuild_tag($token); }
                    309:     }
                    310:     return $result;  
1.19      sakharuk  311: }
                    312: 
1.30      sakharuk  313: sub end_window {
1.40      albertel  314:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.30      sakharuk  315:   my $result;
1.137     albertel  316:   if ($target eq 'web' || $target eq 'webgrade') {
1.34      albertel  317:     my $output=&Apache::lonxml::endredirection;
1.92      albertel  318:     my $linktext= &Apache::lonxml::get_param('linktext',$parstack,$safeeval);
                    319:     if (!$linktext) { $linktext='<sup>*</sup>'; }
                    320:     my $width= &Apache::lonxml::get_param('width',$parstack,$safeeval);
                    321:     if (!$width) { $width='500'; }
                    322:     my $height= &Apache::lonxml::get_param('height',$parstack,$safeeval);
                    323:     if (!$height) { $height='200'; }
1.160     www       324:     $result=&Apache::loncommon::modal_adhoc_window
                    325:            ("LONCAPA_newwindow_$Apache::lonxml::curdepth",$width,$height,$output,$linktext);
1.35      sakharuk  326:   } elsif ($target eq 'tex') {
1.164   ! www       327:       my $printtext=&Apache::lonxml::get_param('printtext',$parstack,$safeeval);
        !           328:       if ($printtext=~/\w/) {
        !           329: # If a "printtext" is given, proceed to retrieve all intervening information and trash it
        !           330:          my $output=&Apache::lonxml::endredirection;
        !           331: # Use printtext instead
        !           332:          $result=$printtext;
        !           333:       } else {
        !           334:          $result='}';
        !           335:       }
1.30      sakharuk  336:   } else {
1.35      sakharuk  337:       $result = '';
1.30      sakharuk  338:   }
1.20      sakharuk  339:   return $result; 
1.19      sakharuk  340: }
                    341: 
1.161     www       342: 
1.163     www       343: sub start_windowlink {
                    344:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    345:     my $result = '';
                    346:     if ($target eq 'web' || $target eq 'webgrade') {
                    347:         &Apache::lonxml::startredirection;
                    348:     } elsif ($target eq 'edit') {
                    349:         $result.=&Apache::edit::tag_start($target,$token);
                    350:         $result.=&Apache::edit::text_arg('Link:','href',$token,70);
                    351:         $result.=&Apache::edit::text_arg('Height:','height',$token,5);
                    352:         $result.=&Apache::edit::text_arg('Width:','width',$token,5);
                    353:         $result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
                    354:     } elsif ($target eq 'modified') {
                    355:         my $constructtag=&Apache::edit::get_new_args($token,$parstack,
                    356:                                                      $safeeval,'href',
                    357:                                                      'width','height');
                    358:         if ($constructtag) { $result=&Apache::edit::rebuild_tag($token); }
                    359:     }
                    360:     return $result;
                    361: }
                    362: 
                    363: sub end_windowlink {
                    364:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    365:   my $result;
                    366:   if ($target eq 'web' || $target eq 'webgrade') {
                    367:     my $output=&Apache::lonxml::endredirection;
                    368:     my $href= &Apache::lonxml::get_param('href',$parstack,$safeeval);
                    369:     if (!$href) { $href='/adm/rat/empty.html'; }
                    370:     my $width= &Apache::lonxml::get_param('width',$parstack,$safeeval);
                    371:     if (!$width) { $width='500'; }
                    372:     my $height= &Apache::lonxml::get_param('height',$parstack,$safeeval);
                    373:     if (!$height) { $height='200'; }
                    374:     $result=&Apache::loncommon::modal_link($href,$output,$width,$height);
                    375:   } else {
                    376:       $result = '';
                    377:   }
                    378:   return $result;
                    379: }
                    380: 
                    381: 
1.161     www       382: sub start_togglebox {
                    383:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    384:     my $result = '';
                    385:     if ($target eq 'web' || $target eq 'webgrade') {
                    386:         my $id="LONCAPA_togglebox_$Apache::lonxml::curdepth";
                    387:         my $heading=&Apache::lonxml::get_param('heading',$parstack,$safeeval);
                    388:         unless ($heading) { $heading=''; } else { $heading.=' '; }
                    389:         my $showtext=&Apache::lonxml::get_param('showtext',$parstack,$safeeval);
                    390:         my $hidetext=&Apache::lonxml::get_param('hidetext',$parstack,$safeeval);
                    391:         my $headerbg=&Apache::lonxml::get_param('headerbg',$parstack,$safeeval);
1.162     www       392:         $result=&Apache::loncommon::start_togglebox($id,$heading,$headerbg,$hidetext,$showtext);
1.161     www       393:     } elsif ($target eq 'tex') {
                    394:         my $heading=&Apache::lonxml::get_param('heading',$parstack,$safeeval);
                    395:         unless ($heading) { $heading=''; } else { $heading.=' '; }
                    396:         $result = "\n\n".'\fbox{{\bf '.$heading.'} \qquad '."\n";
                    397:     } elsif ($target eq 'edit') {
                    398:         $result.=&Apache::edit::tag_start($target,$token);
                    399:         $result.=&Apache::edit::text_arg('Heading:','heading',$token,70);
                    400:         $result.=&Apache::edit::text_arg('Header Background:','headerbg',$token,7);
                    401:         $result.=&Apache::edit::text_arg('Show text:','showtext',$token,10);
                    402:         $result.=&Apache::edit::text_arg('Hide text:','hidetext',$token,10);
                    403:         $result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
                    404:     } elsif ($target eq 'modified') {
                    405:         my $constructtag=&Apache::edit::get_new_args($token,$parstack,
                    406:                                                      $safeeval,'heading',
                    407:                                                      'showtext','hidetext',
                    408:                                                      'headerbg','textbg');
                    409:         if ($constructtag) { $result=&Apache::edit::rebuild_tag($token); }
                    410:     }
                    411:     return $result;
                    412: }
                    413: 
                    414: sub end_togglebox {
                    415:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    416:   my $result;
                    417:   if ($target eq 'web' || $target eq 'webgrade') {
1.162     www       418:     $result=&Apache::loncommon::end_togglebox();
1.161     www       419:   } elsif ($target eq 'tex') {
                    420:       $result = "}\n\n";
                    421:   } else {
                    422:       $result = '';
                    423:   }
                    424:   return $result;
                    425: }
                    426: 
                    427: 
                    428: 
1.6       albertel  429: sub start_import {
1.40      albertel  430:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.31      albertel  431:   my $bodytext=$$parser[$#$parser]->get_text("/import");
1.7       albertel  432:   my $result ="";
1.13      albertel  433: 
1.153     www       434:   $bodytext=&Apache::run::evaluate($bodytext,$safeeval,$$parstack[$#$parstack]);
1.14      albertel  435: 
1.135     albertel  436:   if ($target eq 'web' ||  $target eq 'webgrade' || $target eq 'grade' 
                    437:       || $target eq 'answer' || $target eq 'tex' || $target eq 'analyze' ) {
1.46      albertel  438:     # FIXME this probably needs to be smart about construction vs.
                    439:     # non construction space.
                    440:     my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
                    441:     my $file=&Apache::lonnet::getfile($location);
                    442:     if ($file == -1) {
                    443:       &Apache::lonxml::error("<b> Unable to find <i>$bodytext as $location</i> for import</b>");
                    444:       return "";
                    445:     }
1.153     www       446:     my $importmode=&Apache::lonxml::get_param('importmode',$parstack,$safeeval);
1.154     www       447:     if (($importmode eq 'problem') || ($importmode eq 'part')) {
                    448: # We are using import to import published problems
                    449:        if (($importmode eq 'problem') || ($file=~/<part[^<]*>/s)) {
                    450: # We explicitly don't want this to be a separate part or the problem already has parts
                    451:           $file=~s/^\s*<problem>/<library>/s;
                    452: 	  $file=~s/<\/problem>\s*$/<\/library>/s;
                    453:        } else {
                    454: # We want this to be a separate part, but it currently is not
1.155     www       455:           $file=~s/^\s*<problem>/<library><part>/s;
1.154     www       456: 	  $file=~s/<\/problem>\s*$/<\/part><\/library>/s;
                    457:        }
1.153     www       458:     }
1.46      albertel  459:     my $dir=$location;
                    460:     $dir=~s:/[^/]*$::;
                    461:     #  &Apache::lonxml::debug("directory $dir $location file $file \n<b>END</b>\n");
1.142     albertel  462:     my $id= &Apache::lonxml::get_id($parstack,$safeeval);
1.57      albertel  463:     if (!$id) { $id=$Apache::lonxml::curdepth; }
                    464:     push(@Apache::inputtags::import,$id);
1.90      albertel  465:     push(@Apache::inputtags::importlist,$id);
1.87      sakharuk  466: 
1.144     albertel  467:     &Apache::lonxml::newparser($parser,\$file,$dir);
1.87      sakharuk  468: 
1.56      albertel  469:   } elsif ($target eq "edit" ) {
1.46      albertel  470:     $result.=&Apache::edit::tag_start($target,$token);
1.153     www       471:     my $location=$token->[1];
                    472:     $location=~s/^\s*//s;
                    473:     $location=~s/\s*$//s;
                    474:     $result.=&Apache::edit::editline($location,$bodytext,'',40);
1.83      matthew   475:     $result.=&Apache::edit::browse(undef,'textnode');
1.154     www       476:     $result.= '&nbsp;<label>'.&mt('Import as:').
1.153     www       477:               '<select name="importmode_'.$Apache::lonxml::curdepth.'">';
1.154     www       478:     my %options=&Apache::lonlocal::texthash(''        => 'as standard library',
                    479:                                             'problem' => 'as problem',
                    480:                                             'part'    => 'as problem part(s)');
                    481:     foreach my $option (sort(keys(%options))) {
1.153     www       482:        $result.='<option value="'.$option.'"';
                    483:        if ($option eq &Apache::lonxml::get_param('importmode',$parstack,$safeeval)) {
                    484:           $result.=' selected="selected"';
                    485:        }
1.154     www       486:        $result.='>'.$options{$option}.'</option>';
1.153     www       487:     }
                    488:     $result.='</select></label>';
1.46      albertel  489:     #FIXME this need to convert $bodytext to be a contruction space reference
                    490:     #my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
                    491:     #$result.="Click<a href=\"$location\">here</a> to edit<br />"
1.56      albertel  492:   } elsif ($target eq 'modified') {
1.153     www       493:       &Apache::edit::get_new_args($token,$parstack,$safeeval,'importmode');
                    494:       $result='<import id="'.$token->[2]{'id'}.'" importmode="'.$token->[2]{'importmode'}.'">';
                    495:       $result.=&Apache::edit::modifiedfield("/import",$parser);
1.56      albertel  496:   } elsif ($target eq 'meta') {
1.142     albertel  497:     my $id= &Apache::lonxml::get_id($parstack,$safeeval);
1.57      albertel  498:     $result.='<import part="'.$Apache::inputtags::part;
                    499:     if ($id) {
                    500:       $result.='" id="'.$id;
                    501:     }
1.156     www       502:     $result.='" importmode="'.$token->[2]{'importmode'}.'">';
1.56      albertel  503:     $result.=$bodytext;
                    504:     $result.='</import>';
1.46      albertel  505:   }
                    506:   return $result;
1.6       albertel  507: }
                    508: 
                    509: sub end_import {
1.69      albertel  510:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.57      albertel  511:   pop(@Apache::inputtags::import);
1.69      albertel  512:   my $result;
1.120     albertel  513:   if ($target eq 'edit' ) { $result=&Apache::edit::end_row.
                    514: 				&Apache::edit::end_table(); }
1.69      albertel  515:   return $result;
1.1       albertel  516: }
1.42      sakharuk  517: 
                    518: sub start_storetc {
1.43      albertel  519:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.42      sakharuk  520:   my $result = '';
                    521:   &Apache::lonxml::startredirection;
                    522:   return $result; 
                    523: }
                    524: 
                    525: sub end_storetc {
1.43      albertel  526:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.42      sakharuk  527:     my $result;
                    528:     my $output=&Apache::lonxml::endredirection;
                    529:     $output =~ s/\"/\&quot\;/g;
1.52      albertel  530:     $result = '{\bf '.$output.'.}}\write\tcfile{\protect\tcpc{ '.$output.'.}{\the\value{relpage}}}';
                    531:     return $result;
1.42      sakharuk  532: }
                    533: 
                    534: 
                    535: sub start_physnet {
1.45      sakharuk  536:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.50      www       537:     my $bodytext = '/adm/includes/physnet.sty';
1.45      sakharuk  538:     my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
                    539:     my $cbistyletext=&Apache::lonnet::getfile($location);
1.42      sakharuk  540: 
1.45      sakharuk  541:     %$style = (%$style,&Apache::style::styleparser($target,$cbistyletext));
1.59      albertel  542:     $$parser['-1']->unget_token($token);
                    543: #    if ( defined($$style{'physnet'}) ) {
                    544: #        &Apache::lonxml::newparser($parser,\$$style{'physnet'});
                    545: #    }
1.45      sakharuk  546:     return "";
                    547: }
1.42      sakharuk  548: 
1.45      sakharuk  549: sub end_physnet {
1.47      albertel  550:   return '';
1.42      sakharuk  551: }
1.62      albertel  552: 
                    553: sub start_standalone {
                    554:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.75      albertel  555:   my $result='';
1.137     albertel  556:   if ($target eq 'web' || $target eq 'webgrade') {
1.126     albertel  557:     if ( $env{'request.course.id'} ) {
1.133     albertel  558:       my $inside = &Apache::lonxml::get_all_text("/standalone",$parser,$style);
1.75      albertel  559:     } else {
                    560:       $result='<table bgcolor="#E1E1E1" border="2"><tr><td>';
                    561:     }
1.62      albertel  562:   }
1.75      albertel  563:   return $result;
1.62      albertel  564: }
                    565: 
                    566: sub end_standalone {
1.75      albertel  567:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    568:   my $result='';
1.137     albertel  569:   if ($target eq 'web' || $target eq 'webgrade' ) {
1.126     albertel  570:     if ( $env{'request.course.id'} ) {
1.75      albertel  571:     } else {
                    572:       $result='</td></tr></table>';
                    573:     }
                    574:   }
                    575:   return $result;
1.74      albertel  576: }
                    577: 
                    578: sub start_comment {
                    579:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    580:   my $result='';
                    581:   if ($target eq 'edit') {
                    582:     $result=&Apache::edit::tag_start($target,$token);
1.133     albertel  583:     my $bodytext=&Apache::lonxml::get_all_text("/comment",$parser,$style);
1.77      albertel  584:     $result.=&Apache::edit::editfield($token->[1],$bodytext,'',80,4)
1.74      albertel  585:   } elsif ( $target eq 'modified') {
1.103     albertel  586:     $result=$token->[4].&Apache::edit::modifiedfield("/comment",$parser);
1.137     albertel  587:   } elsif ( $target eq 'web'    || $target eq 'tex'  || $target eq 'grade'   ||
                    588: 	    $target eq 'answer' || $target eq 'meta' || $target eq 'analyze' ||
                    589: 	    $target eq 'webgrade') {
1.74      albertel  590:     #normally throw away comments
1.133     albertel  591:     my $bodytext=&Apache::lonxml::get_all_text("/comment",$parser,$style);
1.74      albertel  592:   }
                    593:   return $result;
                    594: }
                    595: 
                    596: sub end_comment {
                    597:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                    598:   if ($target eq 'edit' ) { return &Apache::edit::end_table(); }
1.62      albertel  599:   return '';
                    600: }
                    601: 
1.42      sakharuk  602: 
1.47      albertel  603: sub xmlparse {
                    604:   my ($string) = @_;
1.111     albertel  605:   &Apache::lonxml::debug("xmlparse recursion starting with $string");
1.113     albertel  606:   # Apache::run::evaluate does an 'eval' on the name of the subroutine
                    607:   # if it detects something that looks like a subroutine, this ends up calling
                    608:   # things without any arguments and since perl is nice enough to pass
                    609:   # along the default arguments when you don't explicitly say no arguments
                    610:   # if you call &xmlparse, it gets &xmlparse passed as it argument.
                    611:   # Same thing soccurs with &chemparse.
1.111     albertel  612:   if ($string eq '&xmlparse') { return '&xmlparse'; }
1.113     albertel  613:   if ($string eq '&chemparse') { return '&chemparse'; }
1.47      albertel  614:   my ($target,$token,$tagstack,$parstack,$oldparser,$safeeval,$style)=
                    615:     @Apache::scripttag::parser_env;
                    616:   my @parser;
                    617:   &Apache::lonxml::newparser(\@parser,\$string);
1.132     albertel  618:   &Apache::lonxml::startredirection();
1.47      albertel  619:   my $result=&Apache::lonxml::inner_xmlparse($target,$tagstack,
                    620: 					     $parstack,\@parser,
                    621: 					     $safeeval,$style);
1.132     albertel  622:   $result.=&Apache::lonxml::endredirection();
1.122     albertel  623:   &Apache::lonxml::debug("target is $target xmlparse recursion ending with $result");
1.47      albertel  624:   return $result;
                    625: }
1.3       albertel  626: 
1.122     albertel  627: sub start_num {
                    628:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
                    629:     my $result = '';
                    630:     my $inside = &Apache::lonxml::get_all_text_unbalanced("/num",$parser);
1.137     albertel  631:     if ($target eq 'tex' || $target eq 'web' || $target eq 'webgrade') {
1.122     albertel  632: 	$inside=&Apache::run::evaluate($inside,$safeeval,$$parstack[-1]);
                    633: 	if (!$Apache::lonxml::default_homework_loaded) {
                    634: 	    &Apache::lonxml::default_homework_load($safeeval);
                    635: 	}
                    636: 	@Apache::scripttag::parser_env = @_;
                    637: 	my $format=&Apache::lonxml::get_param('format',$parstack,$safeeval);
                    638: 	$result=&Apache::run::run("return &prettyprint(q\0$inside\0,q\0$format\0);",$safeeval);
                    639:     }    
                    640:     return $result;
                    641: }
                    642: 
                    643: sub end_num {
                    644:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
                    645:     my $result = '';
                    646:     return $result;
                    647: }
                    648: 
                    649: sub start_parse {
                    650:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
                    651:     my $result = '';
1.137     albertel  652:     if ( $target eq 'web'    || $target eq 'tex'    ||
                    653: 	 $target eq 'grade'  || $target eq 'answer' ||
                    654: 	 $target eq 'analyze'|| $target eq 'webgrade') {
1.122     albertel  655: 	my $inside = &Apache::lonxml::get_all_text_unbalanced("/parse",$parser);
                    656: 	$inside=&Apache::run::evaluate($inside,$safeeval,$$parstack[-1]);
                    657: 	if (!$Apache::lonxml::default_homework_loaded) {
                    658: 	    &Apache::lonxml::default_homework_load($safeeval);
                    659: 	}
                    660: 	@Apache::scripttag::parser_env = @_;
                    661: 	$result=&Apache::run::run("return &xmlparse(q\0$inside\0);",$safeeval);
1.134     albertel  662: 	if ($target eq 'grade' || $target eq 'answer' ||
                    663: 	    $target eq 'analyze') {
                    664: 	    # grade/answer/analyxe should produce no output but if we
                    665: 	    # are redirecting, the redirecter should know what to do
                    666: 	    # with the output
                    667: 	    if (!$Apache::lonxml::redirection) { $result=''; }
                    668: 	}
1.122     albertel  669:     }
                    670:     return $result;
                    671: }
                    672: 
                    673: sub end_parse {
                    674:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
                    675:     my $result = '';
                    676:     return $result;
                    677: }
1.123     albertel  678: 
                    679: sub start_algebra {
                    680:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
                    681:     my $result = '';
1.137     albertel  682:     if ( $target eq 'web'     || $target eq 'tex'    ||
                    683: 	 $target eq 'grade'   || $target eq 'answer' ||
                    684: 	 $target eq 'analyze' || $target eq 'webgrade') {
1.123     albertel  685: 	my $inside = &Apache::lonxml::get_all_text_unbalanced("/algebra",$parser);
                    686: 	$inside = &Apache::run::evaluate($inside,$safeeval,$$parstack[-1]);
                    687: 	if ($target eq 'web' || $target eq 'tex' || $target eq 'analyze') {
1.125     albertel  688: 	    my $style=&Apache::lonxml::get_param('style',$parstack,$safeeval);
1.157     raeburn   689: 	    $result=&Apache::lontexconvert::algebra($inside,$target,$style,$parstack,$safeeval);
1.123     albertel  690: 	}
                    691: 	$Apache::lonxml::post_evaluate=0;
                    692:     }
                    693:     return $result;
                    694: }
                    695: 
                    696: sub end_algebra {
                    697:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
                    698:     my $result = '';
                    699:     return $result;
                    700: }
                    701: 
1.1       albertel  702: 1;
                    703: __END__
1.149     jms       704: 
                    705: =pod
                    706: 
                    707: =head1 NAME
                    708: 
                    709: Apache::scripttag.pm
                    710: 
                    711: =head1 SYNOPSIS
                    712: 
                    713: implements <script>, <scriptlib>, <parserlib>,
                    714: and <import>
                    715: 
                    716: This is part of the LearningOnline Network with CAPA project
                    717: described at http://www.lon-capa.org.
                    718: 
                    719: =cut
                    720: 

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