--- loncom/xml/scripttag.pm 2001/07/09 04:10:30 1.44 +++ loncom/xml/scripttag.pm 2001/07/11 14:44:37 1.45 @@ -123,7 +123,6 @@ sub start_parserlib { my $bodytext; my $result =""; my $error=''; - if ($target eq 'web' || $target eq 'grade' || $target eq 'meta' || $target eq 'edit') { $bodytext=$$parser[$#$parser]->get_text("/parserlib"); $bodytext=&Apache::run::evaluate($bodytext,$safeeval, @@ -217,6 +216,7 @@ sub start_import { } sub end_import { + return ''; } sub start_meta { @@ -252,15 +252,19 @@ sub end_storetc { sub start_physnet { - my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; - my $cbistylefile = &Apache::lonnet::getfile('/home/httpd/res/msu/physnet/cbi.sty'); - %$style = (%$style,&Apache::style::styleparser($target,$cbistylefile)); + my $bodytext = '/msu/physnet/cbi.sty'; + 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'}) ) { - &Apache::lonxml::newparser($parser,$$style{'physnet'}); + &Apache::lonxml::newparser($parser,\$$style{'physnet'}); } + return ""; +} - return ''; +sub end_physnet { }