--- loncom/interface/spreadsheet/studentcalc.pm 2003/05/19 14:34:54 1.2
+++ loncom/interface/spreadsheet/studentcalc.pm 2003/05/23 21:03:29 1.7
@@ -1,5 +1,5 @@
#
-# $Id: studentcalc.pm,v 1.2 2003/05/19 14:34:54 matthew Exp $
+# $Id: studentcalc.pm,v 1.7 2003/05/23 21:03:29 matthew Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -48,9 +48,11 @@ package Apache::studentcalc;
use strict;
use Apache::Constants qw(:common :http);
use Apache::lonnet;
+use Apache::loncommon();
+use Apache::loncoursedata();
use Apache::lonnavmaps;
-use Apache::Spreadsheet;
-use Apache::assesscalc;
+use Apache::Spreadsheet();
+use Apache::assesscalc();
use HTML::Entities();
use Spreadsheet::WriteExcel;
use Time::HiRes;
@@ -89,9 +91,34 @@ sub clear_package {
sub get_title {
my $self = shift;
- my $title = '';
- $title .= '
Spreadsheet for '.
- $self->{'name'}.'@'.$self->{'domain'}.'
';
+ my @title = ();
+ #
+ # Determine the students name
+ my %userenv = &Apache::loncoursedata::GetUserName($self->{'name'},
+ $self->{'domain'});
+ my $name = join(' ',
+ @userenv{'firstname','middlename','lastname','generation'});
+ $name =~ s/\s+$//;
+
+ push (@title,$name);
+ push (@title,$self->{'coursedesc'});
+ push (@title,scalar(localtime(time)));
+ return @title;
+}
+
+sub get_html_title {
+ my $self = shift;
+ my ($name,$desc,$time) = $self->get_title();
+ my $title = ''.$name;
+ if ($ENV{'user.name'} ne $self->{'name'} &&
+ $ENV{'user.domain'} ne $self->{'domain'}) {
+ $title .= &Apache::loncommon::aboutmewrapper
+ ($self->{'name'}.'@'.$self->{'domain'},
+ $self->{'name'},$self->{'domain'});
+ }
+ $title .= "
\n";
+ $title .= ''.$desc."
\n";
+ $title .= ''.$time.'
';
return $title;
}
@@ -140,24 +167,40 @@ END
$label_num++;
}
$tableheader .="\n";
- #
- $r->print($tableheader);
- #
- # Print out template row
- $r->print('Template | | '.
- $self->html_template_row($num_uneditable)."
\n");
- #
- # Print out summary/export row
- $r->print('Export | 0 | '.
- $self->html_export_row()."
\n");
+ if ($self->blackout()) {
+ $r->print(''.
+ 'Some computations are not available at this time.
'.
+ 'There are problems whose status you are allowed to view.'.
+ '
'."\n");
+ } else {
+ $r->print($tableheader);
+ #
+ # Print out template row
+ if (exists($ENV{'request.role.adv'}) && $ENV{'request.role.adv'}) {
+ $r->print('Template | | '.
+ $self->html_template_row($num_uneditable)."
\n");
+ }
+ #
+ # Print out summary/export row
+ $r->print('Summary | 0 | '.
+ $self->html_export_row()."
\n");
+ }
$r->print("\n");
#
# Prepare to output rows
- $tableheader =<<"END";
+ if (exists($ENV{'request.role.adv'}) && $ENV{'request.role.adv'}) {
+ $tableheader =<<"END";
Row | Assessment |
END
+ } else {
+ $tableheader =<<"END";
+
+
+ | Assessment |
+END
+ }
foreach (split(//,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')){
if ($label_num<$num_uneditable) {
$tableheader.='';
@@ -187,19 +230,25 @@ END
''.
- $resource->{'title'}.' ';
+ '&usymb='.&Apache::lonnet::escape($resource->{'symb'}).
+ '">'.$resource->{'title'}.' ';
$row_output .= &assess_file_selector($rownum,
$assess_filename,
\@AssessFileNames).
' | ';
} else {
$row_output .= 'Go To';
$row_output .= ' | '.$resource->{'title'}.' | ';
}
- $row_output .= $self->html_row($num_uneditable,$rownum).
- "
\n";
+ if ($self->blackout() && $self->{'blackout_rows'}->{$rownum}>0) {
+ $row_output .=
+ 'Unavailable at this time | '."\n";
+ } else {
+ $row_output .= $self->html_row($num_uneditable,$rownum).
+ "\n";
+ }
$r->print($row_output);
}
$r->print("
\n");
@@ -263,27 +312,67 @@ sub modify_cell {
return;
}
-sub outsheet_csv {
+sub csv_rows {
+ # writes the meat of the spreadsheet to an excel worksheet. Called
+ # by Spreadsheet::outsheet_excel;
my $self = shift;
- my ($r) = @_;
+ my ($filehandle) = @_;
+ #
+ # Write a header row
+ $self->csv_output_row($filehandle,undef,
+ ('Container','Assessment title'));
+ #
+ # Write each assessments row
+ if (scalar(@Sequences)< 1) {
+ &initialize_sequence_cache();
+ }
+ foreach my $Sequence (@Sequences) {
+ next if ($Sequence->{'num_assess'} < 1);
+ foreach my $resource (@{$Sequence->{'contents'}}) {
+ my $rownum = $self->get_row_number_from_key($resource->{'symb'});
+ my @assessdata = ($Sequence->{'title'},
+ $resource->{'title'});
+ $self->csv_output_row($filehandle,$rownum,@assessdata);
+ }
+ }
+ return;
}
-sub outsheet_excel {
+
+sub excel_rows {
+ # writes the meat of the spreadsheet to an excel worksheet. Called
+ # by Spreadsheet::outsheet_excel;
my $self = shift;
- my ($r) = @_;
+ my ($worksheet,$cols_output,$rows_output) = @_;
+ #
+ # Write a header row
+ $cols_output = 0;
+ foreach my $value ('Container','Assessment title') {
+ $worksheet->write($rows_output,$cols_output++,$value);
+ }
+ $rows_output++;
+ #
+ # Write each assessments row
+ if (scalar(@Sequences)< 1) {
+ &initialize_sequence_cache();
+ }
+ foreach my $Sequence (@Sequences) {
+ next if ($Sequence->{'num_assess'} < 1);
+ foreach my $resource (@{$Sequence->{'contents'}}) {
+ my $rownum = $self->get_row_number_from_key($resource->{'symb'});
+ my @assessdata = ($Sequence->{'title'},
+ $resource->{'title'});
+ $self->excel_output_row($worksheet,$rownum,$rows_output++,
+ @assessdata);
+ }
+ }
+ return;
}
+
sub outsheet_recursive_excel {
my $self = shift;
my ($r) = @_;
}
-sub display {
- my $self = shift;
- my ($r) = @_;
- $self->compute();
- $self->outsheet_html($r);
- return;
-}
-
sub set_row_sources {
my $self = shift;
while (my ($cell,$value) = each(%{$self->{'formulas'}})) {
@@ -340,6 +429,10 @@ sub compute {
$assess_filename,
$resource->{'symb'});
my @exportdata = $assessSheet->export_data();
+ if ($assessSheet->blackout()) {
+ $self->blackout(1);
+ $self->{'blackout_rows'}->{$rownum} = 1;
+ }
#
# Be sure not to disturb the formulas in the 'A' column
my $data = shift(@exportdata);
@@ -448,6 +541,7 @@ Writes the export data for this student
#############################################
sub save_export_data {
my $self = shift;
+ return if ($self->temporary());
my $student = $self->{'name'}.':'.$self->{'domain'};
return if (! exists($Exportrows{$student}));
return if (! $self->is_default());
---|