--- loncom/interface/lonhtmlcommon.pm 2002/08/01 20:49:06 1.6 +++ loncom/interface/lonhtmlcommon.pm 2002/08/21 17:18:08 1.8 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.6 2002/08/01 20:49:06 stredwic Exp $ +# $Id: lonhtmlcommon.pm,v 1.8 2002/08/21 17:18:08 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -68,7 +68,7 @@ sub MapOptions { my $selected = 0; foreach my $sequence (split(':',$data->{'orderedSequences'})) { $Str .= '{$page.'Map'} eq $data->{$sequence.':title'}) { + if($data->{$page.'Maps'} eq $data->{$sequence.':title'}) { $Str .= ' selected'; $selected = 1; } @@ -153,7 +153,7 @@ sub MultipleSectionSelect { my ($sections,$selectedSections)=@_; my $Str = ''; - $Str .= ''."\n"; foreach (@$sections) { $Str .= ''."\n"; - $Str .= ''."\n"; + $Str .= &Apache::loncommon::bodytag($pageName)."\n"; $Str .= ''."\n"; - $Str .= '
'; - $Str .= '

Course: '; - $Str .= $ENV{'course.'.$ENV{'request.course.id'}.'.description'}; - $Str .= '

'."\n"; - $Str .= ''; - $Str .= '
'."\n"; return $Str; } @@ -294,5 +288,37 @@ sub FormatStudentInformation { return $Str; } +# Create progress +sub Create_PrgWin { + my ($r, $title, $heading)=@_; + $r->print('"); + + $r->rflush(); +} + +# update progress +sub Update_PrgWin { + my ($displayString,$r)=@_; + $r->print(''); + $r->rflush(); +} + +# close Progress Line +sub Close_PrgWin { + my ($r)=@_; + $r->print(''."\n"); + $r->rflush(); +} + 1; __END__