[LON-CAPA-cvs] cvs: loncom /interface loncommon.pm
bisitz
bisitz at source.lon-capa.org
Thu Feb 27 07:41:25 EST 2014
bisitz Thu Feb 27 12:41:25 2014 EDT
Modified files:
/loncom/interface loncommon.pm
Log:
"Disk quota will be exceeded" messages:
- Avoid floating issues by using separate paragraph for messages.
- Consistent style: Most of messages are warnings.
Index: loncom/interface/loncommon.pm
diff -u loncom/interface/loncommon.pm:1.1178 loncom/interface/loncommon.pm:1.1179
--- loncom/interface/loncommon.pm:1.1178 Sun Feb 23 20:52:58 2014
+++ loncom/interface/loncommon.pm Thu Feb 27 12:41:24 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common routines
#
-# $Id: loncommon.pm,v 1.1178 2014/02/23 20:52:58 raeburn Exp $
+# $Id: loncommon.pm,v 1.1179 2014/02/27 12:41:24 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -8970,10 +8970,10 @@
}
$disk_quota = int($disk_quota * 1000);
if (($current_disk_usage + $filesize) > $disk_quota) {
- return '<p><span class="LC_warning">'.
+ return '<p class="LC_warning">'.
&mt("Unable to $action [_1]. (size = [_2] kilobytes). Disk quota will be exceeded.",
- '<span class="LC_filename">'.$filename.'</span>',$filesize).'</span>'.
- '<br />'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',
+ '<span class="LC_filename">'.$filename.'</span>',$filesize).'</p>'.
+ '<p>'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',
$disk_quota,$current_disk_usage).
'</p>';
}
@@ -10920,11 +10920,11 @@
if ($currsize < $filesize) {
my $extra = $filesize - $currsize;
if (($current_disk_usage + $extra) > $disk_quota) {
- my $msg = '<span class="LC_error">'.
+ my $msg = '<p class="LC_warning">'.
&mt('Unable to upload [_1]. (size = [_2] kilobytes). Disk quota will be exceeded if existing (smaller) file with same name (size = [_3] kilobytes) is replaced.',
- '<span class="LC_filename">'.$fname.'</span>',$filesize,$currsize).'</span>'.
- '<br />'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',
- $disk_quota,$current_disk_usage);
+ '<span class="LC_filename">'.$fname.'</span>',$filesize,$currsize).'</p>'.
+ '<p>'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',
+ $disk_quota,$current_disk_usage).'</p>';
return ('will_exceed_quota',$msg);
}
}
@@ -10933,21 +10933,21 @@
}
}
if (($current_disk_usage + $filesize) > $disk_quota){
- my $msg = '<span class="LC_error">'.
- &mt('Unable to upload [_1]. (size = [_2] kilobytes). Disk quota will be exceeded.','<span class="LC_filename">'.$fname.'</span>',$filesize).'</span>'.
+ my $msg = '<p class="LC_warning">'.
+ &mt('Unable to upload [_1]. (size = [_2] kilobytes). Disk quota will be exceeded.','<span class="LC_filename">'.$fname.'</span>',$filesize).'</p>'.
'<br />'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',$disk_quota,$current_disk_usage);
return ('will_exceed_quota',$msg);
} elsif ($found_file) {
if ($locked_file) {
- my $msg = '<span class="LC_error">';
+ my $msg = '<p class="LC_warning">';
$msg .= &mt('Unable to upload [_1]. A locked file by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>','<span class="LC_filename">'.$port_path.$env{'form.currentpath'}.'</span>');
- $msg .= '</span><br />';
+ $msg .= '</p>';
$msg .= &mt('You will be able to rename or delete existing [_1] after a grade has been assigned.','<span class="LC_filename">'.$fname.'</span>');
return ('file_locked',$msg);
} else {
- my $msg = '<span class="LC_error">';
+ my $msg = '<p class="LC_error">';
$msg .= &mt(' A file by that name: [_1] was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$port_path.$env{'form.currentpath'});
- $msg .= '</span>';
+ $msg .= '</p>';
return ('existingfile',$msg);
}
}
More information about the LON-CAPA-cvs
mailing list