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

1.1       albertel    1: # The LearningOnline Network with CAPA
                      2: # <script> definiton
1.58      www         3: #
1.116   ! www         4: # $Id: scripttag.pm,v 1.115 2004/08/18 20:48:45 albertel 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.1       albertel   29: 
1.47      albertel   30: package Apache::scripttag;
1.1       albertel   31: 
                     32: use strict;
1.3       albertel   33: use Apache::lonnet;
1.42      sakharuk   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',
                     44: 			     'window','display','storetc','physnet',
1.81      albertel   45: 			     'standalone','comment',
1.86      albertel   46: 			     'LONCAPA_INTERNAL_TURN_STYLE_ON',
1.100     albertel   47: 			     'LONCAPA_INTERNAL_TURN_STYLE_OFF',
1.86      albertel   48: 			     'LONCAPA_INTERNAL_LONHTTPD_PORT'));
1.81      albertel   49: }
                     50: 
                     51: sub start_LONCAPA_INTERNAL_TURN_STYLE_ON {
                     52:     $Apache::lonxml::usestyle=1;
1.89      albertel   53:     $Apache::lonxml::style_values='';
1.81      albertel   54:     return ('','no');
                     55: }
                     56: 
                     57: sub end_LONCAPA_INTERNAL_TURN_STYLE_ON {
1.91      albertel   58:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                     59:     my $end=&Apache::lonxml::get_param('end',$parstack,$safeeval);
                     60:     if (defined($end)) {
                     61: 	&Apache::lonxml::end_tag($tagstack,$parstack,$token);
                     62:     }
1.100     albertel   63:     return ('','no');
                     64: }
                     65: 
                     66: sub start_LONCAPA_INTERNAL_TURN_STYLE_OFF {
                     67:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                     68:     $Apache::lonxml::usestyle=0;
                     69:     my $end=&Apache::lonxml::get_param('end',$parstack,$safeeval);
                     70:     if (!$end) {
                     71: 	$Apache::lonxml::style_values=$$parstack[-1];
                     72: 	$Apache::lonxml::style_end_values=$$parstack[-1];
                     73:     } else {
                     74: 	$Apache::lonxml::style_values=$Apache::lonxml::style_end_values;
                     75: 	$Apache::lonxml::style_end_values='';
                     76:     }
                     77:     return ('','no');
                     78: }
                     79: 
                     80: sub end_LONCAPA_INTERNAL_TURN_STYLE_OFF {
1.86      albertel   81:     return ('','no');
                     82: }
                     83: 
                     84: sub start_LONCAPA_INTERNAL_LONHTTPD_PORT {
                     85:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                     86:     if ($target eq 'web') {
                     87: 	my $lonhttpdPort=$Apache::lonnet::perlvar{'lonhttpdPort'};
                     88: 	if (!defined($lonhttpdPort)) { $lonhttpdPort='8080'; }
                     89: 	return '<script type="text/javascript">var lonhttpdport=\''.
                     90: 	    $lonhttpdPort.'\';</script>';
                     91:     }
                     92:     return ('','no');
                     93: }
                     94: 
                     95: sub end_LONCAPA_INTERNAL_LONHTTPD_PORT {
1.81      albertel   96:     return ('','no');
1.1       albertel   97: }
                     98: 
                     99: sub start_script {
1.40      albertel  100:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.47      albertel  101:   @Apache::scripttag::parser_env = @_;
1.24      albertel  102:   my $result='';
1.39      albertel  103:   my $type= &Apache::lonxml::get_param('type',$parstack,$safeeval);
                    104:   &Apache::lonxml::debug("found type of $type");
1.17      albertel  105:   if ($type eq "loncapa/perl") {
                    106:     if ( $target eq "modified" ) {
1.103     albertel  107: 	$result=$token->[4].&Apache::edit::modifiedfield('/script',$parser);
1.54      albertel  108:     } elsif ( $target eq 'web' || $target eq 'tex' ||
1.78      albertel  109: 	      $target eq 'grade' || $target eq 'answer' ||
                    110: 	      $target eq 'analyze' ) {
1.107     albertel  111: 	my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/script",$parser);
1.79      albertel  112: 	if (!$Apache::lonxml::default_homework_loaded) {
                    113: 	    &Apache::lonxml::default_homework_load($safeeval);
                    114: 	}
                    115: 	&Apache::run::run($bodytext,$safeeval);
1.88      albertel  116: 	if (($target eq 'answer') &&
                    117: 	    ($ENV{'form.answer_output_mode'} ne 'tex') &&
                    118: 	    ($Apache::lonhomework::viewgrades == 'F')) {
1.79      albertel  119: 	    $Apache::lonxml::evaluate--;
1.109     albertel  120: 	    my (undef,undef,$udom,$uname)=&Apache::lonxml::whichuser();
1.116   ! www       121: 	    my $nothing= &Apache::lonhtmlcommon::javascript_nothing();
        !           122: 	    $result.="<script type=\"text/javascript\"> function LONCAPA_scriptvars_".$uname."_".$udom."_"."$Apache::lonxml::curdepth() {newWindow=open('','new_W','width=500,height=500,scrollbars=1,resizable=yes');newWindow.document.open($nothing,'replace');newWindow.document.writeln('<html><head><title>Script Vars</title></head><body bgcolor=\"#FFFFFF\"><pre>";
1.99      albertel  123: 	    my $listing=&Apache::run::dump($target,$safeeval);
                    124: 	    $listing=~s/\'/\\\'/g;
                    125: 	    $listing=~s/\n/\\n/g;
                    126: 	    $listing=~s/\r/\\r/g;
1.79      albertel  127: 	    $result.=$listing;
1.109     albertel  128: 	    $result.= "</pre></body></html>');newWindow.document.close();}</script><a href=\"javascript:LONCAPA_scriptvars_".$uname."_".$udom."_$Apache::lonxml::curdepth();void(0);\">Script Vars</a><br />";
1.79      albertel  129: 	}
1.28      albertel  130:     } elsif ($target eq "edit" ) {
1.41      albertel  131:       #&Apache::run::run($bodytext,$safeeval);
                    132:       #$result="<br /> &lt;$token->[1]&gt; output: <br />$bodytext<br />Source:<br />";
1.107     albertel  133: 	my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/script",$parser);
1.103     albertel  134: 	$result=&Apache::edit::tag_start($target,$token,'Script');
                    135: 	$result.=&Apache::edit::editfield($token->[1],$bodytext,'',80,4);
1.107     albertel  136:     } elsif ($target eq 'meta') {
                    137: 	my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/script",$parser);
1.17      albertel  138:     }
                    139:   } else {
1.108     matthew   140:       my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/script",$parser);
1.115     albertel  141:       if ($target ne "meta" && $target ne 'tex') {
1.112     albertel  142: 	  $result = $token->[4];
                    143: 	  $result.=$bodytext;
                    144:       }
1.13      albertel  145:   }
1.24      albertel  146:   return $result;
1.17      albertel  147: }
1.13      albertel  148: 
1.17      albertel  149: sub end_script {
1.40      albertel  150:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.28      albertel  151:   if ( $target eq "meta" ) { return ''; } 
1.39      albertel  152:   my $type = &Apache::lonxml::get_param('type',$parstack,$safeeval);
1.29      albertel  153:   my $result='';
                    154:   #other script blocks need to survive
1.115     albertel  155:   if ($type ne "loncapa/perl" && $target ne 'tex') {
1.53      albertel  156:     return $token->[2];
                    157:   } elsif ($target eq 'edit' ) {
                    158:     return &Apache::edit::end_table();
1.78      albertel  159:   } elsif ($target eq 'answer') {
1.53      albertel  160:     $Apache::lonxml::evaluate++;
                    161:   }
1.28      albertel  162:   return '';
1.24      albertel  163: }
                    164: 
                    165: sub start_display {
1.40      albertel  166:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.39      albertel  167: 
1.48      albertel  168:   my $result;
1.39      albertel  169: 
1.24      albertel  170:   if ( $target eq "modified" ) {
1.103     albertel  171:       $result=$token->[4].&Apache::edit::modifiedfield("/display",$parser);
1.54      albertel  172:   } elsif ( $target eq 'web' || $target eq 'tex' ||
1.78      albertel  173: 	    $target eq 'grade' || $target eq 'answer' ||
                    174: 	      $target eq 'analyze') {
1.107     albertel  175:       my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/display",$parser);
1.80      albertel  176:       if (!$Apache::lonxml::default_homework_loaded) {
                    177: 	  &Apache::lonxml::default_homework_load($safeeval);
                    178:       }
                    179:       $result=&Apache::run::run($bodytext,$safeeval);
                    180:       if ($target eq 'grade' || $target eq 'answer' ||
                    181: 	  $target eq 'analyze') {
1.114     albertel  182: 	  # grade/answer/analyxe should produce no output but if we
                    183: 	  # are redirecting, the redirecter should know what to do
                    184: 	  # with the output
                    185: 	  if (!$Apache::lonxml::redirection) { $result=''; }
1.80      albertel  186:       }
1.101     albertel  187:       $Apache::lonxml::post_evaluate=0;
1.48      albertel  188:   } elsif ($target eq "edit" ) {
1.110     albertel  189:     my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/display",$parser);
1.48      albertel  190:     #$result = 
                    191:     #  "<br /> &lt;$token->[1]&gt; output: <br />$bodytext<br />Source:<br />";
                    192:     #$result.=&Apache::edit::editfield($token->[1],$bodytext,'',40,1);
                    193:     $result=&Apache::edit::tag_start($target,$token,'Script With Display');
1.77      albertel  194:     $result.=&Apache::edit::editfield($token->[1],$bodytext,'',80,1)
1.107     albertel  195:   } elsif ($target eq 'meta') {
                    196:       my $bodytext=&Apache::lonxml::get_all_text_unbalanced("/display",$parser);
1.24      albertel  197:   }
                    198:   return $result;
                    199: }
                    200: 
                    201: sub end_display {
1.48      albertel  202:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                    203:   if ($target eq 'edit' ) { return &Apache::edit::end_table(); }
                    204:   return '';
1.1       albertel  205: }
1.3       albertel  206: 
                    207: sub start_scriptlib {
1.40      albertel  208:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.37      albertel  209:   my $bodytext;
                    210:   my $result ='';
                    211:   my $error='';
                    212: 
1.106     albertel  213:   if ($target eq 'web' || $target eq 'tex' || $target eq 'grade' ||
                    214:       $target eq 'meta' || $target eq 'edit' || $target eq 'answer' ||
                    215:       $target eq 'analyze') {
1.37      albertel  216:     $bodytext=$$parser[$#$parser]->get_text("/scriptlib");
                    217:     $bodytext=&Apache::run::evaluate($bodytext,$safeeval,
                    218: 				     $$parstack[$#$parstack]);
                    219:     my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],
                    220: 					       $bodytext);
                    221:     my $script=&Apache::lonnet::getfile($location);
                    222:     if ($script == -1) {
                    223:       if ($target eq 'edit') {
                    224:         $error='</tr><tr><td>Errors</td><td colspan="2"><b> Unable to find <i>'.$location.'</i></b></td>'."\n";
                    225:       } else {
                    226: 	&Apache::lonxml::error("<b> Unable to find <i>$location</i> for scriptlib</b>");
                    227: 	return "";
                    228:       }
                    229:     }
                    230:     &Apache::run::run($script,$safeeval);
                    231:     #&Apache::lonxml::debug("ran $bodytext:<br />".&Apache::lonnet::getfile($bodytext)."<br />");
1.18      albertel  232:   }
1.13      albertel  233:   if ($target eq "edit" ) {
1.37      albertel  234:     $result=
1.49      albertel  235:       &Apache::edit::tag_start($target,$token,'New Script Functions').
1.83      matthew   236: 	&Apache::edit::editline($token->[1],$bodytext,'scriptlib',40).
                    237:             &Apache::edit::browse(undef,'textnode').
1.49      albertel  238: 	  $error.'</td></tr>'.
                    239: 	    &Apache::edit::end_table();
1.37      albertel  240:   }
                    241:   if ($target eq "modified" ) {
1.103     albertel  242:       $result=$token->[4].&Apache::edit::modifiedfield("/scriptlib",$parser);
1.3       albertel  243:   }
                    244:   return $result;
                    245: }
                    246: 
1.37      albertel  247: sub end_scriptlib {
1.40      albertel  248:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.49      albertel  249:   my @result;
                    250:   if ($target eq "edit" ) { $result[1]='no'; }
                    251:   return @result;
1.37      albertel  252: }
1.4       albertel  253: 
                    254: sub start_parserlib {
1.40      albertel  255:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.37      albertel  256:   my $bodytext;
1.7       albertel  257:   my $result ="";
1.37      albertel  258:   my $error='';
1.106     albertel  259:   if ($target eq 'web' || $target eq 'tex' || $target eq 'grade' ||
                    260:       $target eq 'meta' || $target eq 'edit' || $target eq 'answer' ||
                    261:       $target eq 'analyze') {
1.37      albertel  262:     $bodytext=$$parser[$#$parser]->get_text("/parserlib");
                    263:     $bodytext=&Apache::run::evaluate($bodytext,$safeeval,
                    264: 				     $$parstack[$#$parstack]);
                    265:     my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],
                    266: 					       $bodytext);
                    267:     my $styletext=&Apache::lonnet::getfile($location);
                    268:     #&Apache::lonxml::debug("found :$bodytext: in :$location: with :$styletext:");
                    269:     if ($styletext == -1) {
                    270:       if ($target eq 'edit') {
                    271: 	$error='</tr><tr><td>Errors</td><td colspan="2"><b> Unable to find <i>'.$location.'</i></b></td>'."\n";
                    272:       } else {
                    273: 	&Apache::lonxml::error("<b> Unable to find <i>$location</i> for parserlib</b>");
                    274: 	return "";
                    275:       }
                    276:     }
                    277:     %$style = ( %$style , &Apache::style::styleparser($target,$styletext));
1.18      albertel  278:   }
1.13      albertel  279:   if ($target eq "edit" ) {
1.37      albertel  280:     $result=
1.49      albertel  281:       &Apache::edit::tag_start($target,$token,'New Tag Definitions').
1.68      albertel  282: 	&Apache::edit::editline($token->[1],$bodytext,'',40).
1.49      albertel  283: 	  $error.'</td></tr>'.
                    284: 	    &Apache::edit::end_table();
1.37      albertel  285:   }
                    286:   if ($target eq "modified" ) {
1.103     albertel  287:       $result=$token->[4].&Apache::edit::modifiedfield("/parserlib",$parser);
1.7       albertel  288:   }
                    289:   return $result;
1.4       albertel  290: }
                    291: 
                    292: sub end_parserlib {
1.40      albertel  293:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.49      albertel  294:   my @result;
                    295:   if ($target eq "edit" ) { $result[1]='no'; }
                    296:   return @result;
1.6       albertel  297: }
                    298: 
1.30      sakharuk  299: sub start_window {
1.105     albertel  300:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    301:     my $result = '';
                    302:     if ($target eq 'web') {
                    303: 	&Apache::lonxml::startredirection;
                    304:     } elsif ($target eq 'tex') {
                    305: 	$result = '\unskip\footnote{';
                    306:     } elsif ($target eq 'edit') {
                    307: 	$result.=&Apache::edit::tag_start($target,$token);
                    308: 	$result.=&Apache::edit::text_arg('Text of Link:','linktext',$token,70);
                    309: 	$result.=&Apache::edit::text_arg('Height:','width',$token,5);
                    310: 	$result.=&Apache::edit::text_arg('Width:','height',$token,5);
                    311: 	$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
                    312:     } elsif ($target eq 'modified') {
                    313: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
                    314: 						     $safeeval,'linttext',
                    315: 						     'width','height');
                    316: 	if ($constructtag) { $result=&Apache::edit::rebuild_tag($token); }
                    317:     }
                    318:     return $result;  
1.19      sakharuk  319: }
                    320: 
1.30      sakharuk  321: sub end_window {
1.40      albertel  322:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.30      sakharuk  323:   my $result;
1.31      albertel  324:   if ($target eq 'web') {
1.34      albertel  325:     my $output=&Apache::lonxml::endredirection;
1.97      albertel  326:     $output =~ s/[\n\r]/ /g;
1.98      albertel  327: #    $output = &HTML::Entities::encode($output,'<>&"\'');
                    328:     $output =~ s/\'/\\\'/g;
1.92      albertel  329:     my $linktext= &Apache::lonxml::get_param('linktext',$parstack,$safeeval);
                    330:     if (!$linktext) { $linktext='<sup>*</sup>'; }
                    331:     my $width= &Apache::lonxml::get_param('width',$parstack,$safeeval);
                    332:     if (!$width) { $width='500'; }
                    333:     my $height= &Apache::lonxml::get_param('height',$parstack,$safeeval);
                    334:     if (!$height) { $height='200'; }
1.98      albertel  335:     $result = "<script type=\"text/javascript\"> function LONCAPA_newwindow_$Apache::lonxml::curdepth() {newWindow=open('','new_W','width=$width,height=$height,scrollbars=1');newWindow.document.open('text/html','replace');newWindow.document.writeln('<html><head><title>newwindow</title></head><body bgcolor=\"#FFFFFF\"> $output </body></html>');newWindow.document.close();}</script><a href=\"javascript:LONCAPA_newwindow_$Apache::lonxml::curdepth();void(0);\">$linktext</a>";
1.35      sakharuk  336:   } elsif ($target eq 'tex') {
                    337:       $result = '}';
1.30      sakharuk  338:   } else {
1.35      sakharuk  339:       $result = '';
1.30      sakharuk  340:   }
1.20      sakharuk  341:   return $result; 
1.19      sakharuk  342: }
                    343: 
1.6       albertel  344: sub start_import {
1.40      albertel  345:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.31      albertel  346:   my $bodytext=$$parser[$#$parser]->get_text("/import");
1.7       albertel  347:   my $result ="";
1.13      albertel  348: 
                    349:   $bodytext=Apache::run::evaluate($bodytext,$safeeval,$$parstack[$#$parstack]);
1.14      albertel  350: 
1.78      albertel  351:   if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
                    352:       $target eq 'tex' || $target eq 'analyze' ) {
1.46      albertel  353:     # FIXME this probably needs to be smart about construction vs.
                    354:     # non construction space.
                    355:     my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
                    356:     my $file=&Apache::lonnet::getfile($location);
                    357:     if ($file == -1) {
                    358:       &Apache::lonxml::error("<b> Unable to find <i>$bodytext as $location</i> for import</b>");
                    359:       return "";
                    360:     }
1.13      albertel  361: 
1.46      albertel  362:     my $dir=$location;
                    363:     $dir=~s:/[^/]*$::;
                    364:     #  &Apache::lonxml::debug("directory $dir $location file $file \n<b>END</b>\n");
1.57      albertel  365:     my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);
                    366:     if (!$id) { $id=$Apache::lonxml::curdepth; }
                    367:     push(@Apache::inputtags::import,$id);
1.90      albertel  368:     push(@Apache::inputtags::importlist,$id);
1.87      sakharuk  369: 
                    370: 	&Apache::lonxml::newparser($parser,\$file,$dir);
                    371: 
1.56      albertel  372:   } elsif ($target eq "edit" ) {
1.46      albertel  373:     $result.=&Apache::edit::tag_start($target,$token);
1.68      albertel  374:     $result.=&Apache::edit::editline($token->[1],$bodytext,'',40);
1.83      matthew   375:     $result.=&Apache::edit::browse(undef,'textnode');
1.46      albertel  376:     #FIXME this need to convert $bodytext to be a contruction space reference
                    377:     #my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
                    378:     #$result.="Click<a href=\"$location\">here</a> to edit<br />"
1.56      albertel  379:   } elsif ($target eq 'modified') {
1.103     albertel  380:       $result=$token->[4].&Apache::edit::modifiedfield("/import",$parser);
1.56      albertel  381:   } elsif ($target eq 'meta') {
1.57      albertel  382:     my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);
                    383:     $result.='<import part="'.$Apache::inputtags::part;
                    384:     if ($id) {
                    385:       $result.='" id="'.$id;
                    386:     }
                    387:     $result.='">';
1.56      albertel  388:     $result.=$bodytext;
                    389:     $result.='</import>';
1.46      albertel  390:   }
                    391:   return $result;
1.6       albertel  392: }
                    393: 
                    394: sub end_import {
1.69      albertel  395:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.57      albertel  396:   pop(@Apache::inputtags::import);
1.69      albertel  397:   my $result;
                    398:   if ($target eq 'edit' ) { $result=&Apache::edit::end_table(); }
                    399:   return $result;
1.1       albertel  400: }
1.42      sakharuk  401: 
                    402: sub start_storetc {
1.43      albertel  403:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.42      sakharuk  404:   my $result = '';
                    405:   &Apache::lonxml::startredirection;
                    406:   return $result; 
                    407: }
                    408: 
                    409: sub end_storetc {
1.43      albertel  410:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.42      sakharuk  411:     my $result;
                    412:     my $output=&Apache::lonxml::endredirection;
                    413:     $output =~ s/\"/\&quot\;/g;
1.52      albertel  414:     $result = '{\bf '.$output.'.}}\write\tcfile{\protect\tcpc{ '.$output.'.}{\the\value{relpage}}}';
                    415:     return $result;
1.42      sakharuk  416: }
                    417: 
                    418: 
                    419: sub start_physnet {
1.45      sakharuk  420:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.50      www       421:     my $bodytext = '/adm/includes/physnet.sty';
1.45      sakharuk  422:     my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
                    423:     my $cbistyletext=&Apache::lonnet::getfile($location);
1.42      sakharuk  424: 
1.45      sakharuk  425:     %$style = (%$style,&Apache::style::styleparser($target,$cbistyletext));
1.59      albertel  426:     $$parser['-1']->unget_token($token);
                    427: #    if ( defined($$style{'physnet'}) ) {
                    428: #        &Apache::lonxml::newparser($parser,\$$style{'physnet'});
                    429: #    }
1.45      sakharuk  430:     return "";
                    431: }
1.42      sakharuk  432: 
1.45      sakharuk  433: sub end_physnet {
1.47      albertel  434:   return '';
1.42      sakharuk  435: }
1.62      albertel  436: 
                    437: sub start_standalone {
                    438:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.75      albertel  439:   my $result='';
                    440:   if ($target eq 'web' ) {
                    441:     if ( $ENV{'request.course.id'} ) {
1.85      albertel  442:       my $inside = &Apache::lonxml::get_all_text("/standalone",$parser);
1.75      albertel  443:     } else {
                    444:       $result='<table bgcolor="#E1E1E1" border="2"><tr><td>';
                    445:     }
1.62      albertel  446:   }
1.75      albertel  447:   return $result;
1.62      albertel  448: }
                    449: 
                    450: sub end_standalone {
1.75      albertel  451:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    452:   my $result='';
                    453:   if ($target eq 'web' ) {
                    454:     if ( $ENV{'request.course.id'} ) {
                    455:     } else {
                    456:       $result='</td></tr></table>';
                    457:     }
                    458:   }
                    459:   return $result;
1.74      albertel  460: }
                    461: 
                    462: sub start_comment {
                    463:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    464:   my $result='';
                    465:   if ($target eq 'edit') {
                    466:     $result=&Apache::edit::tag_start($target,$token);
1.85      albertel  467:     my $bodytext=&Apache::lonxml::get_all_text("/comment",$parser);
1.77      albertel  468:     $result.=&Apache::edit::editfield($token->[1],$bodytext,'',80,4)
1.74      albertel  469:   } elsif ( $target eq 'modified') {
1.103     albertel  470:     $result=$token->[4].&Apache::edit::modifiedfield("/comment",$parser);
1.78      albertel  471:   } elsif ( $target eq 'web' || $target eq 'tex' || $target eq 'grade' ||
                    472: 	    $target eq 'answer' || $target eq 'meta' || $target eq 'analyze') {
1.74      albertel  473:     #normally throw away comments
1.85      albertel  474:     my $bodytext=&Apache::lonxml::get_all_text("/comment",$parser);
1.74      albertel  475:   }
                    476:   return $result;
                    477: }
                    478: 
                    479: sub end_comment {
                    480:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                    481:   if ($target eq 'edit' ) { return &Apache::edit::end_table(); }
1.62      albertel  482:   return '';
                    483: }
                    484: 
1.42      sakharuk  485: 
1.47      albertel  486: sub xmlparse {
                    487:   my ($string) = @_;
1.111     albertel  488:   &Apache::lonxml::debug("xmlparse recursion starting with $string");
1.113     albertel  489:   # Apache::run::evaluate does an 'eval' on the name of the subroutine
                    490:   # if it detects something that looks like a subroutine, this ends up calling
                    491:   # things without any arguments and since perl is nice enough to pass
                    492:   # along the default arguments when you don't explicitly say no arguments
                    493:   # if you call &xmlparse, it gets &xmlparse passed as it argument.
                    494:   # Same thing soccurs with &chemparse.
1.111     albertel  495:   if ($string eq '&xmlparse') { return '&xmlparse'; }
1.113     albertel  496:   if ($string eq '&chemparse') { return '&chemparse'; }
1.47      albertel  497:   my ($target,$token,$tagstack,$parstack,$oldparser,$safeeval,$style)=
                    498:     @Apache::scripttag::parser_env;
                    499:   my @parser;
                    500:   &Apache::lonxml::newparser(\@parser,\$string);
                    501:   my $result=&Apache::lonxml::inner_xmlparse($target,$tagstack,
                    502: 					     $parstack,\@parser,
                    503: 					     $safeeval,$style);
1.111     albertel  504:   &Apache::lonxml::debug("xmlparse recursion ending with $result");
1.47      albertel  505:   return $result;
                    506: }
1.3       albertel  507: 
1.1       albertel  508: 1;
                    509: __END__

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