Diff for /loncom/xml/scripttag.pm between versions 1.17 and 1.18

version 1.17, 2000/10/02 22:22:25 version 1.18, 2000/10/05 19:31:54
Line 12  sub BEGIN { Line 12  sub BEGIN {
  'parserlib','import'));   'parserlib','import'));
 }  }
   
   $Apache::scripttag::SCRIPT_RESULT='';
 sub start_script {  sub start_script {
   my ($target,$token,$parstack,$parser,$safeeval)=@_;    my ($target,$token,$parstack,$parser,$safeeval)=@_;
   my $args ='';    my $args ='';
Line 19  sub start_script { Line 20  sub start_script {
     $args=$$parstack[$#$parstack];      $args=$$parstack[$#$parstack];
   }    }
   my $type = &Apache::run::run("{$args;".'return $type}',$safeeval);    my $type = &Apache::run::run("{$args;".'return $type}',$safeeval);
   &Apache::lonxml::debug("found type of $type");    #&Apache::lonxml::debug("found type of $type");
   my $result="";    $Apache::scripttag::SCRIPT_RESULT='';
   if ($type eq "loncapa/perl") {    if ($type eq "loncapa/perl") {
     $safeeval->share('$Apache::scripttag::start_script::result');      $safeeval->share('$SCRIPT_RESULT');
     #  my $bodytext=$$parser[$#$parser]->get_text("/script");  
     my $bodytext=&Apache::lonxml::get_all_text("script",$$parser[$#$parser]);      my $bodytext=&Apache::lonxml::get_all_text("script",$$parser[$#$parser]);
           
     if ( $target eq "modified" ) {      if ( $target eq "modified" ) {
         
     }      }
   
     #  print "<br> script runs $bodytext</br>";  
     &Apache::run::run($bodytext,$safeeval);      &Apache::run::run($bodytext,$safeeval);
           
     if ($target eq "edit" ) {      if ($target eq "edit" ) {
       $result= "<br> &lt;$token->[1]&gt; output: <br>$bodytext<br>Source:<br>";        $Apache::scripttag::SCRIPT_RESULT = 
       $result.=&editfield($token->[1],$bodytext);   "<br> &lt;$token->[1]&gt; output: <br>$bodytext<br>Source:<br>";
         $Apache::scripttag::SCRIPT_RESULT.=&editfield($token->[1],$bodytext);
     }      }
   } else {    } else {
     $result = $token->[4];      $Apache::scripttag::SCRIPT_RESULT = $token->[4];
   }    }
     return $Apache::scripttag::SCRIPT_RESULT;
 }  }
   
 sub end_script {  sub end_script {
Line 52  sub start_scriptlib { Line 51  sub start_scriptlib {
   my $bodytext=$$parser[$#$parser]->get_text("/scriptlib");    my $bodytext=$$parser[$#$parser]->get_text("/scriptlib");
   my $result ="";    my $result ="";
   
   $bodytext=Apache::run::evaluate($bodytext,$safeeval,$$parstack[$#$parstack]);    $bodytext=&Apache::run::evaluate($bodytext,$safeeval,
   &Apache::run::run(&getfile($bodytext),$safeeval);     $$parstack[$#$parstack]);
   #print "ran $bodytext:<br>".&getfile($bodytext)."<br>";    my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],
        $bodytext);
     my $script=&Apache::lonnet::getfile($location);
     if ($script == -1) {
       &Apache::lonxml::error("<b> Unable to find <i>$location</i> for scriptlib</b>");
       return "";
     }
     &Apache::run::run($script,$safeeval);
     #&Apache::lonxml::debug("ran $bodytext:<br>".&Apache::lonnet::getfile($bodytext)."<br>");
   
   if ($target eq "edit" ) {    if ($target eq "edit" ) {
     $result.=&editfield($token->[1],$bodytext);      $result.=&editfield($token->[1],$bodytext);
Line 69  sub start_parserlib { Line 76  sub start_parserlib {
   my $bodytext=$$parser[$#$parser]->get_text("/parserlib");    my $bodytext=$$parser[$#$parser]->get_text("/parserlib");
   my $result ="";    my $result ="";
   
   $bodytext=Apache::run::evaluate($bodytext,$safeeval,$$parstack[$#$parstack]);    $bodytext=&Apache::run::evaluate($bodytext,$safeeval,
   %$style = ( %$style , &Apache::style::styleparser($target,     $$parstack[$#$parstack]);
  &getfile($bodytext)));    my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],
        $bodytext);
     my $styletext=&Apache::lonnet::getfile($location);
     if ($styletext == -1) {
       &Apache::lonxml::error("<b> Unable to find <i>$location</i> for parserlib</b>");
       return "";
     }
     %$style = ( %$style , &Apache::style::styleparser($target,$styletext));
   
   if ($target eq "edit" ) {    if ($target eq "edit" ) {
     $result=&editfield($token->[1],$bodytext);      $result=&editfield($token->[1],$bodytext);
Line 88  sub start_import { Line 102  sub start_import {
   my $result ="";    my $result ="";
   
   $bodytext=Apache::run::evaluate($bodytext,$safeeval,$$parstack[$#$parstack]);    $bodytext=Apache::run::evaluate($bodytext,$safeeval,$$parstack[$#$parstack]);
   my $file=&getfile($bodytext);    my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
   if ($file eq -1) {    my $file=&Apache::lonnet::getfile($location);
     return "<b> Unable to find <i>$bodytext</i> for import</b>";    if ($file == -1) {
       &Apache::lonxml::error("<b> Unable to find <i>$bodytext $location</i> for import</b>");
       return "";
   }    }
   
   my $tempparser=HTML::TokeParser->new(\$file);    my $dir=$location;
   push (@$parser,$tempparser);    $dir=~s:/[^/]*$::;
     &Apache::lonxml::newparser($parser,\$file,$dir);
   
   if ($target eq "edit" ) {    if ($target eq "edit" ) {
     $result.=&editfield($token->[1],$bodytext);      $result.=&editfield($token->[1],$bodytext);
Line 117  sub editfield { Line 134  sub editfield {
   return "<br></br>\n&lt;$tag&gt;<br></br>\n&nbsp;&nbsp;&nbsp;<textarea rows=\"$count\" cols=\"$maxlength\" name=homework_edit_".$Apache::lonxml::curdepth.">$data</textarea><br></br>\n&lt;/$tag&gt;<br></br>\n";    return "<br></br>\n&lt;$tag&gt;<br></br>\n&nbsp;&nbsp;&nbsp;<textarea rows=\"$count\" cols=\"$maxlength\" name=homework_edit_".$Apache::lonxml::curdepth.">$data</textarea><br></br>\n&lt;/$tag&gt;<br></br>\n";
 }  }
   
 sub getfile {  sub getfilenothere {
   my ($filename) = @_;    my ($filename) = @_;
   my $a="";    my $a="";
       

Removed from v.1.17  
changed lines
  Added in v.1.18


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