Diff for /loncom/xml/scripttag.pm between versions 1.44 and 1.47

version 1.44, 2001/07/09 04:10:30 version 1.47, 2001/07/12 15:53:44
Line 2 Line 2
 # <script> definiton  # <script> definiton
 # 2/21 Guy  # 2/21 Guy
   
 package Apache::scripttag;   package Apache::scripttag;
   
 use strict;  use strict;
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::style;  use Apache::style;
   
   #Globals
   # this used to pass around the standard callsub arguments to a tag func
   # so xmlparse can reenter the inner_xmlparse loop.
   
   @Apache::scripttag::parser_env = ();
 sub BEGIN {  sub BEGIN {
   &Apache::lonxml::register('Apache::scripttag',('script','scriptlib',    &Apache::lonxml::register('Apache::scripttag',('script','scriptlib',
  'parserlib','import',   'parserlib','import',
Line 17  sub BEGIN { Line 22  sub BEGIN {
   
 sub start_script {  sub start_script {
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
     @Apache::scripttag::parser_env = @_;
   my $result='';    my $result='';
   my $type= &Apache::lonxml::get_param('type',$parstack,$safeeval);    my $type= &Apache::lonxml::get_param('type',$parstack,$safeeval);
   &Apache::lonxml::debug("found type of $type");    &Apache::lonxml::debug("found type of $type");
Line 123  sub start_parserlib { Line 129  sub start_parserlib {
   my $bodytext;    my $bodytext;
   my $result ="";    my $result ="";
   my $error='';    my $error='';
   
   if ($target eq 'web' || $target eq 'grade' || $target eq 'meta' || $target eq 'edit') {    if ($target eq 'web' || $target eq 'grade' || $target eq 'meta' || $target eq 'edit') {
     $bodytext=$$parser[$#$parser]->get_text("/parserlib");      $bodytext=$$parser[$#$parser]->get_text("/parserlib");
     $bodytext=&Apache::run::evaluate($bodytext,$safeeval,      $bodytext=&Apache::run::evaluate($bodytext,$safeeval,
Line 197  sub start_import { Line 202  sub start_import {
   my $result ="";    my $result ="";
   
   $bodytext=Apache::run::evaluate($bodytext,$safeeval,$$parstack[$#$parstack]);    $bodytext=Apache::run::evaluate($bodytext,$safeeval,$$parstack[$#$parstack]);
   my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);  
   my $file=&Apache::lonnet::getfile($location);  
   if ($file == -1) {  
     &Apache::lonxml::error("<b> Unable to find <i>$bodytext $location</i> for import</b>");  
     return "";  
   }  
   
   my $dir=$location;    if ($target eq 'web' || $target eq 'grade') {
   $dir=~s:/[^/]*$::;        # FIXME this probably needs to be smart about construction vs.
 #  &Apache::lonxml::debug("directory $dir $location file $file \n<b>END</b>\n");      # non construction space.
   &Apache::lonxml::newparser($parser,\$file,$dir);      my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
       my $file=&Apache::lonnet::getfile($location);
       if ($file == -1) {
         &Apache::lonxml::error("<b> Unable to find <i>$bodytext as $location</i> for import</b>");
         return "";
       }
   
       my $dir=$location;
       $dir=~s:/[^/]*$::;
       #  &Apache::lonxml::debug("directory $dir $location file $file \n<b>END</b>\n");
       &Apache::lonxml::newparser($parser,\$file,$dir);
     }
   if ($target eq "edit" ) {    if ($target eq "edit" ) {
       $result.=&Apache::edit::tag_start($target,$token);
     $result.=&Apache::edit::editfield($token->[1],$bodytext,'',40,1);      $result.=&Apache::edit::editfield($token->[1],$bodytext,'',40,1);
     $result.="Click<a href=\"/res/$bodytext\">here</a> to edit<br />"      #FIXME this need to convert $bodytext to be a contruction space reference
       #my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
       #$result.="Click<a href=\"$location\">here</a> to edit<br />"
   }    }
   return '';    if ($target eq 'modified') {
       $bodytext=$$parser[$#$parser]->get_text("/import");
       $result=&Apache::edit::modifiedfield($token);
       &Apache::lonxml::debug($result);
     }
     return $result;
 }  }
   
 sub end_import {  sub end_import {
 }    return '';
   
 sub start_meta {  
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;  
   my $result = '';  
     if ($target ne 'meta') {  
        $result = &Apache::lonxml::get_all_text("/meta",$$parser[$#$parser]);   
        $result = '';  
       return $result;   
     } else {  
        return $result;   
     }  
 }  
   
 sub end_meta {  
 }  }
   
 sub start_storetc {  sub start_storetc {
Line 252  sub end_storetc { Line 255  sub end_storetc {
   
   
 sub start_physnet {  sub start_physnet {
   
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $cbistylefile = &Apache::lonnet::getfile('/home/httpd/res/msu/physnet/cbi.sty');      my $bodytext = '/msu/physnet/cbi.sty';
     %$style = (%$style,&Apache::style::styleparser($target,$cbistylefile));      my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
       my $cbistyletext=&Apache::lonnet::getfile($location);
   
       %$style = (%$style,&Apache::style::styleparser($target,$cbistyletext));
     if ( defined($$style{'physnet'}) ) {      if ( defined($$style{'physnet'}) ) {
         &Apache::lonxml::newparser($parser,$$style{'physnet'});          &Apache::lonxml::newparser($parser,\$$style{'physnet'});
     }      }
       return "";
   }
   
     return '';  sub end_physnet {
     return '';
 }  }
   
   sub xmlparse {
     my ($string) = @_;
     &Apache::lonxml::debug("Got $string");
     my ($target,$token,$tagstack,$parstack,$oldparser,$safeeval,$style)=
       @Apache::scripttag::parser_env;
     my @parser;
     &Apache::lonxml::newparser(\@parser,\$string);
     my $result=&Apache::lonxml::inner_xmlparse($target,$tagstack,
        $parstack,\@parser,
        $safeeval,$style);
     return $result;
   }
   
 1;  1;
 __END__  __END__

Removed from v.1.44  
changed lines
  Added in v.1.47


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