[LON-CAPA-cvs] cvs: loncom /xml londefdef.pm
www
www@source.lon-capa.org
Wed, 21 Jul 2010 02:00:37 -0000
www Wed Jul 21 02:00:37 2010 EDT
Modified files:
/loncom/xml londefdef.pm
Log:
Warning that alt-tag is still output, even for encrypted URLs
Index: loncom/xml/londefdef.pm
diff -u loncom/xml/londefdef.pm:1.417 loncom/xml/londefdef.pm:1.418
--- loncom/xml/londefdef.pm:1.417 Thu Jun 10 15:54:06 2010
+++ loncom/xml/londefdef.pm Wed Jul 21 02:00:37 2010
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Tags Default Definition Module
#
-# $Id: londefdef.pm,v 1.417 2010/06/10 15:54:06 bisitz Exp $
+# $Id: londefdef.pm,v 1.418 2010/07/21 02:00:37 www Exp $
#
#
# Copyright Michigan State University Board of Trustees
@@ -3264,21 +3264,28 @@
['','bottom','middle','top','left','right'],$token,5);
$currentstring .=&Apache::edit::select_arg('TeXwrap:', 'TeXwrap',
['', 'none','parbox', 'parpic', 'wrapfigure'], $token, 2);
+ my $alt= &Apache::lonxml::get_param('alt',$parstack,$safeeval);
+ my $enc= &Apache::lonxml::get_param('encrypturl',$parstack,$safeeval);
+
$currentstring .=&Apache::edit::select_arg('Encrypt URL:','encrypturl',
['no','yes'], $token, 2);
+ if (($alt=~/\S/) && (lc($enc) eq 'yes')) {
+ $currentstring.='<br /><span class="LC_warning">'.&mt('Warning: the description "[_1]" will be available, even for encrypted URL',$alt).'</span><br />';
+ }
$currentstring .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
my $src= &Apache::lonxml::get_param('src',$parstack,$safeeval);
- my $alt= &Apache::lonxml::get_param('alt',$parstack,$safeeval);
my $width= &Apache::lonxml::get_param('width',$parstack,$safeeval);
my $height= &Apache::lonxml::get_param('height',$parstack,$safeeval);
if ($token->[2]{'src'}=~/\$/) {
- $currentstring.='Variable image source';
- } else {
+ $currentstring.=&mt('Variable image source');
+ } elsif ($token->[2]{'src'}=~/\S/) {
$currentstring .= '<img src="'.$src.'" alt="'.$alt.'" ';
if ($width) { $currentstring.=' width="'.$width.'" '; }
if ($height) { $currentstring.=' height="'.$height.'" '; }
$currentstring .= ' />';
+ } else {
+ $currentstring.=&mt("No image source specified");
}
} elsif ($target eq 'modified') {
my ($osrc,$owidth,$oheight)=