--- loncom/xml/londefdef.pm 2003/05/12 20:13:36 1.133 +++ loncom/xml/londefdef.pm 2003/05/21 14:57:31 1.134 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Tags Default Definition Module # -# $Id: londefdef.pm,v 1.133 2003/05/12 20:13:36 www Exp $ +# $Id: londefdef.pm,v 1.134 2003/05/21 14:57:31 sakharuk Exp $ # # # Copyright Michigan State University Board of Trustees @@ -3124,6 +3124,26 @@ sub end_wbr { return $currentstring; } + +#-- tag +sub start_hideweboutput { + my ($target,$token) = @_; + if ($target eq 'web') { + &Apache::lonxml::startredirection(); + } + return ''; +} + +sub end_hideweboutput { + my ($target,$token) = @_; + my $currentstring = ''; + if ($target eq 'web') { + $currentstring = &Apache::lonxml::endredirection(); + } + return ''; +} + + sub image_replication { my $src = shift; if (not -e $src) {