--- loncom/interface/loncommon.pm 2009/07/27 11:30:05 1.867
+++ loncom/interface/loncommon.pm 2009/07/27 12:12:47 1.868
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common routines
#
-# $Id: loncommon.pm,v 1.867 2009/07/27 11:30:05 kalberla Exp $
+# $Id: loncommon.pm,v 1.868 2009/07/27 12:12:47 kalberla Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -3831,46 +3831,6 @@ sub parse_block_record {
return ($setuname,$setudom,$title,$blocks);
}
-sub build_block_table {
- my ($startblock,$endblock,$setters) = @_;
- my %lt = &Apache::lonlocal::texthash(
- 'cacb' => 'Currently active communication blocks',
- 'cour' => 'Course',
- 'dura' => 'Duration',
- 'blse' => 'Block set by'
- );
- my $output;
- $output = '
'.$lt{'cacb'}.':
';
- $output .= &start_data_table();
- $output .= '
-
- '.$lt{'cour'}.' |
- '.$lt{'dura'}.' |
- '.$lt{'blse'}.' |
-
-';
- foreach my $course (keys(%{$setters})) {
- my %courseinfo=&Apache::lonnet::coursedescription($course);
- for (my $i=0; $i<@{$$setters{$course}{staff}}; $i++) {
- my ($uname,$udom) = @{$$setters{$course}{staff}[$i]};
- my $fullname = &plainname($uname,$udom);
- if (defined($env{'user.name'}) && defined($env{'user.domain'})
- && $env{'user.name'} ne 'public'
- && $env{'user.domain'} ne 'public') {
- $fullname = &aboutmewrapper($fullname,$uname,$udom);
- }
- my ($openblock,$closeblock) = @{$$setters{$course}{times}[$i]};
- $openblock = &Apache::lonlocal::locallocaltime($openblock);
- $closeblock= &Apache::lonlocal::locallocaltime($closeblock);
- $output .= &Apache::loncommon::start_data_table_row().
- ''.$courseinfo{'description'}.' | '.
- ''.$openblock.' to '.$closeblock.' | '.
- ''.$fullname.' | '.
- &Apache::loncommon::end_data_table_row();
- }
- }
- $output .= &end_data_table();
-}
sub blocking_status {
my $blocked;
my ($activity,$uname,$udom) = @_;