Diff for /loncom/xml/scripttag.pm between versions 1.61 and 1.62

version 1.61, 2002/01/06 02:19:25 version 1.62, 2002/01/17 16:35:55
Line 40  use Apache::style; Line 40  use Apache::style;
   
 @Apache::scripttag::parser_env = ();  @Apache::scripttag::parser_env = ();
 BEGIN {  BEGIN {
   &Apache::lonxml::register('Apache::scripttag',('script','scriptlib',    &Apache::lonxml::register('Apache::scripttag',
  'parserlib','import',      ('script','scriptlib','parserlib','import',
                                                  'window','display',       'window','display','storetc','physnet',
                                                  'storetc','physnet'));       'stadalone'));
 }  }
   
 sub start_script {  sub start_script {
Line 334  sub end_physnet { Line 334  sub end_physnet {
   return '';    return '';
 }  }
   
   sub start_standalone {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     if ($target eq 'web'  && defined($ENV{'request.course.id'}) ) {
       my $inside = &Apache::lonxml::get_all_text("/standalone",$$parser[-1]);
     }
     return '';
   }
   
   sub end_standalone {
     return '';
   }
   
   
 sub xmlparse {  sub xmlparse {
   my ($string) = @_;    my ($string) = @_;
   &Apache::lonxml::debug("Got $string");    &Apache::lonxml::debug("Got $string");

Removed from v.1.61  
changed lines
  Added in v.1.62


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