[LON-CAPA-cvs] cvs: loncom /interface lonfeedback.pm lonmeta.pm lonstatistics.pm lonwhatsnew.pm /interface/statistics lonpercentage.pm lonproblemanalysis.pm lonstathelpers.pm lonstudentsubmissions.pm
bisitz
bisitz@source.lon-capa.org
Fri, 12 Dec 2008 10:01:30 -0000
This is a MIME encoded message
--bisitz1229076090
Content-Type: text/plain
bisitz Fri Dec 12 10:01:30 2008 EDT
Modified files:
/loncom/interface lonfeedback.pm lonmeta.pm lonstatistics.pm
lonwhatsnew.pm
/loncom/interface/statistics lonpercentage.pm lonproblemanalysis.pm
lonstathelpers.pm
lonstudentsubmissions.pm
Log:
Added missing ";" to all " "
--bisitz1229076090
Content-Type: text/plain
Content-Disposition: attachment; filename="bisitz-20081212100130.txt"
Index: loncom/interface/lonfeedback.pm
diff -u loncom/interface/lonfeedback.pm:1.257 loncom/interface/lonfeedback.pm:1.258
--- loncom/interface/lonfeedback.pm:1.257 Fri Nov 21 20:17:11 2008
+++ loncom/interface/lonfeedback.pm Fri Dec 12 10:01:25 2008
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Feedback
#
-# $Id: lonfeedback.pm,v 1.257 2008/11/21 20:17:11 jms Exp $
+# $Id: lonfeedback.pm,v 1.258 2008/12/12 10:01:25 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -625,7 +625,7 @@
$filterchoice .= ' '.$role_types{$role}.',';
}
$filterchoice =~ s/,$//;
- $filterchoice .= '<br />     ';
+ $filterchoice .= '<br /> ';
}
if ($statusfilter) {
$filterchoice .= '<i>'.&mt('status').'</i>- '.$status_types{$statusfilter};
@@ -794,7 +794,7 @@
$discussion .= '&previous='.$prevread;
}
$discussion .= &group_args($group);
- $discussion .='">'.&mt('Sorting/Filtering options').'</a>  ';
+ $discussion .='">'.&mt('Sorting/Filtering options').'</a> ';
} else {
$discussion .= '<td align="left">';
}
@@ -4086,4 +4086,4 @@
=back
-=cut
\ No newline at end of file
+=cut
Index: loncom/interface/lonmeta.pm
diff -u loncom/interface/lonmeta.pm:1.218 loncom/interface/lonmeta.pm:1.219
--- loncom/interface/lonmeta.pm:1.218 Wed Dec 10 18:43:32 2008
+++ loncom/interface/lonmeta.pm Fri Dec 12 10:01:25 2008
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Metadata display handler
#
-# $Id: lonmeta.pm,v 1.218 2008/12/10 18:43:32 bisitz Exp $
+# $Id: lonmeta.pm,v 1.219 2008/12/12 10:01:25 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -164,7 +164,7 @@
my $val=int($value*10.+0.5)-10;
my $output='<table border="0" cellpadding="0" cellspacing="0"><tr>';
if ($val>=20) {
- $output.='<td width="20" bgcolor="#555555">  </td>';
+ $output.='<td width="20" bgcolor="#555555"> </td>';
} else {
$output.='<td width="'.($val).'" bgcolor="#555555"> </td>'.
'<td width="'.(20-$val).'" bgcolor="#FF3333"> </td>';
@@ -174,7 +174,7 @@
$output.='<td width="'.($val-20).'" bgcolor="#33FF33"> </td>'.
'<td width="'.(40-$val).'" bgcolor="#555555"> </td>';
} else {
- $output.='<td width="20" bgcolor="#555555">  </td>';
+ $output.='<td width="20" bgcolor="#555555"> </td>';
}
$output.='<td> ('.sprintf("%5.2f",$value).') </td></tr></table>';
return $output;
Index: loncom/interface/lonstatistics.pm
diff -u loncom/interface/lonstatistics.pm:1.145 loncom/interface/lonstatistics.pm:1.146
--- loncom/interface/lonstatistics.pm:1.145 Wed Dec 3 11:47:30 2008
+++ loncom/interface/lonstatistics.pm Fri Dec 12 10:01:25 2008
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: lonstatistics.pm,v 1.145 2008/12/03 11:47:30 diwert Exp $
+# $Id: lonstatistics.pm,v 1.146 2008/12/12 10:01:25 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -714,7 +714,7 @@
$Str .= '&sort='.&escape($env{'form.sort'});
$Str .= '&SelectedStudent=';
$Str .= &escape($sname).'">';
- $Str .= $student->{$field}.' ';
+ $Str .= $student->{$field}.' ';
$Str .= '</a>';
} elsif ($field eq 'status') {
$Str .= &mt($student->{$field});
Index: loncom/interface/lonwhatsnew.pm
diff -u loncom/interface/lonwhatsnew.pm:1.81 loncom/interface/lonwhatsnew.pm:1.82
--- loncom/interface/lonwhatsnew.pm:1.81 Sat Dec 6 12:49:18 2008
+++ loncom/interface/lonwhatsnew.pm Fri Dec 12 10:01:25 2008
@@ -1,5 +1,5 @@
#
-# $Id: lonwhatsnew.pm,v 1.81 2008/12/06 12:49:18 bisitz Exp $
+# $Id: lonwhatsnew.pm,v 1.82 2008/12/12 10:01:25 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -696,7 +696,7 @@
<input type="button" name="display" value="'.
&mt('Change to [_1]',&mt($opposite{$current})).'"
onclick="javascript:toggle_countunread('."'change'".')" />
-  
+
<input type="button" name="nochange" value="'.
&mt("No change").'"
onclick="javascript:toggle_countunread('."'unchanged'".')" />
Index: loncom/interface/statistics/lonpercentage.pm
diff -u loncom/interface/statistics/lonpercentage.pm:1.10 loncom/interface/statistics/lonpercentage.pm:1.11
--- loncom/interface/statistics/lonpercentage.pm:1.10 Tue May 30 12:46:49 2006
+++ loncom/interface/statistics/lonpercentage.pm Fri Dec 12 10:01:30 2008
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: lonpercentage.pm,v 1.10 2006/05/30 12:46:49 www Exp $
+# $Id: lonpercentage.pm,v 1.11 2008/12/12 10:01:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -334,7 +334,7 @@
$Ptr .= '&StudentAssessmentStudent=';
$Ptr .= &escape($cache->{$name.':fullname'}).'">';
$Ptr .= $cache->{$name.':fullname'};
- $Ptr .= '</a>,  ';
+ $Ptr .= '</a>, ';
}
$Ptr .= '</td></tr>'."\n";
Index: loncom/interface/statistics/lonproblemanalysis.pm
diff -u loncom/interface/statistics/lonproblemanalysis.pm:1.134 loncom/interface/statistics/lonproblemanalysis.pm:1.135
--- loncom/interface/statistics/lonproblemanalysis.pm:1.134 Fri Dec 12 07:26:28 2008
+++ loncom/interface/statistics/lonproblemanalysis.pm Fri Dec 12 10:01:30 2008
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: lonproblemanalysis.pm,v 1.134 2008/12/12 07:26:28 raeburn Exp $
+# $Id: lonproblemanalysis.pm,v 1.135 2008/12/12 10:01:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1558,7 +1558,7 @@
$table .= '<tr><td colspan="4" align="center">'.
&mt('Start time: [_1]',$startdateform).'<br />'.
&mt('End time: [_1]',$enddateform).'</td></tr>'.$/;
- $table.= '<tr><td colspan="4"> </td></tr>'.$/;
+ $table.= '<tr><td colspan="4"> </td></tr>'.$/;
}
$table .= '</table>';
#
Index: loncom/interface/statistics/lonstathelpers.pm
diff -u loncom/interface/statistics/lonstathelpers.pm:1.56 loncom/interface/statistics/lonstathelpers.pm:1.57
--- loncom/interface/statistics/lonstathelpers.pm:1.56 Thu Oct 30 17:45:25 2008
+++ loncom/interface/statistics/lonstathelpers.pm Fri Dec 12 10:01:30 2008
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: lonstathelpers.pm,v 1.56 2008/10/30 17:45:25 bisitz Exp $
+# $Id: lonstathelpers.pm,v 1.57 2008/12/12 10:01:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -181,12 +181,12 @@
}
}
if ($seq_str ne '') {
- $Str .= '<tr><td> </td>'.
+ $Str .= '<tr><td> </td>'.
'<td colspan="2"><b>'.$seq->compTitle.'</b></td>'.
"</tr>\n".$seq_str;
if (defined($sequence_addendum)) {
$Str .= '<tr>'.
- ('<td> </td>'x2).
+ ('<td> </td>'x2).
'<td align="right">'.$sequence_addendum.'</td>'.
"</tr>\n";
}
Index: loncom/interface/statistics/lonstudentsubmissions.pm
diff -u loncom/interface/statistics/lonstudentsubmissions.pm:1.52 loncom/interface/statistics/lonstudentsubmissions.pm:1.53
--- loncom/interface/statistics/lonstudentsubmissions.pm:1.52 Fri Dec 12 05:52:26 2008
+++ loncom/interface/statistics/lonstudentsubmissions.pm Fri Dec 12 10:01:30 2008
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: lonstudentsubmissions.pm,v 1.52 2008/12/12 05:52:26 raeburn Exp $
+# $Id: lonstudentsubmissions.pm,v 1.53 2008/12/12 10:01:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -285,7 +285,7 @@
$headers{'part'} .= qq{<th colspan="$part_span">$tmpname</th>};
$nonempty_part_headers = 1;
} else {
- $headers{'part'} .= qq{<th colspan="$part_span"> </th>};
+ $headers{'part'} .= qq{<th colspan="$part_span"> </th>};
}
$prob_span += $part_span;
}
--bisitz1229076090--