--- loncom/interface/spreadsheet/studentcalc.pm 2003/06/23 20:47:00 1.13
+++ loncom/interface/spreadsheet/studentcalc.pm 2003/12/05 22:24:20 1.16.2.1
@@ -1,5 +1,5 @@
#
-# $Id: studentcalc.pm,v 1.13 2003/06/23 20:47:00 matthew Exp $
+# $Id: studentcalc.pm,v 1.16.2.1 2003/12/05 22:24:20 matthew Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -144,6 +144,24 @@ sub parent_link {
return $link;
}
+sub convenience_links {
+ my $self = shift;
+ my ($resource) = @_;
+ my $symb = &Apache::lonnet::escape($resource->{'symb'});
+ my $result = <<"END";
+
+
+
+
+
+
+
+
+
+END
+ return $result;
+}
+
sub outsheet_html {
my $self = shift;
my ($r) = @_;
@@ -156,6 +174,10 @@ sub outsheet_html {
my $editing_is_allowed = &Apache::lonnet::allowed('mgr',
$ENV{'request.course.id'});
####################################
+ # Report any calculation errors #
+ ####################################
+ $r->print($self->html_report_error());
+ ####################################
# Determine table structure #
####################################
my $num_uneditable = 26;
@@ -208,7 +230,7 @@ END
$tableheader =<<"END";
Row | Assessment | +|
---|---|---|
Row | Assessment | END } else { $tableheader =<<"END"; @@ -242,6 +264,7 @@ END my $row_output = '|
'.$rownum.' | '; + $row_output .= ''.$self->convenience_links($resource).' | '; $row_output .= ''. 'badcalc()) { + @Data = (); + } else { + @Data = @{$Exportrows{$student}->{'data'}}; + for (my $i=0; $i<=$#Data;$i++) { + if ($Data[$i]=~/\D/ && defined($Data[$i])) { + $Data[$i]="'".$Data[$i]."'"; + } + } } return @Data; } |