--- loncom/xml/londefdef.pm 2021/12/14 21:10:40 1.456.2.6
+++ loncom/xml/londefdef.pm 2016/08/13 19:02:00 1.461
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Tags Default Definition Module
#
-# $Id: londefdef.pm,v 1.456.2.6 2021/12/14 21:10:40 raeburn Exp $
+# $Id: londefdef.pm,v 1.461 2016/08/13 19:02:00 raeburn Exp $
#
#
# Copyright Michigan State University Board of Trustees
@@ -98,19 +98,7 @@ sub start_m {
# On top of that, MathJax will render math without $, but
# it will fail with tth. This is worth a warning.
# (even though some people might just use latex for printing)
- &Apache::lonxml::warning(&mt('Missing $ in [_1].','<m>'));
- } elsif (($env{'browser.type'} eq 'safari') && ($env{'form.editxmltext'}) &&
- (($env{'form.problemmode'} eq 'view') || ($env{'form.problemmode'} eq 'discard'))) {
- my $delimiter;
- if ($inside =~ /\$$/) {
- $delimiter = '$';
- } elsif ($inside =~ /\\([)\]])$/) {
- $delimiter = $1;
- }
- if ($delimiter) {
- &Apache::lonxml::warning(&mt('Insert a space between [_1] and [_2].',
- $delimiter,'</m>'));
- }
+ &Apache::lonxml::warning(&mt("Missing \$ in <m>."));
}
my $eval=&Apache::lonxml::get_param('eval',$parstack,$safeeval);
if ($eval eq 'on') {
@@ -658,6 +646,12 @@ sub edit_controls {
}
$result .= '
';
+ if ($env{'browser.type'} ne 'explorer' || $env{'browser.version'} > 9) {
+ my $uri = $env{'request.uri'};
+ my $daxeurl = '/daxepage'.$uri;
+ $result .= '';
+ }
if (($env{'request.course.id'}) && ($env{'form.forceedit'})) {
my $url=&Apache::lonnet::hreflocation('',$env{'request.filename'});
if ($url =~ /\.html?$/i) {
@@ -832,7 +826,7 @@ sub end_h1 {
$currentstring .= $token->[2];
} elsif ($target eq 'tex') {
my $post='\vskip 0 mm ';
- my $align=lc(&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1));
+ my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
if ($align eq 'center') {
$post='\end{center}';
} elsif ($align eq 'left') {
@@ -2878,8 +2872,8 @@ sub start_img {
my $only = join(',',&Apache::loncommon::filecategorytypes('Pictures'));
$currentstring .=&Apache::edit::tag_start($target,$token);
$currentstring .=&Apache::edit::text_arg('Image Url:','src',$token,70).
- &Apache::edit::browse('src',undef,'alt',$only).' '.
- &Apache::edit::search('src',undef,'alt').' ';
+ &Apache::edit::browse_or_search('src',undef,'alt',$only,undef,1).
+ ' ';
$currentstring .=&Apache::edit::text_arg('Description:','alt',$token,70).' ';
$currentstring .=&Apache::edit::text_arg('width (pixel):','width',$token,5);
$currentstring .=&Apache::edit::text_arg('height (pixel):','height',$token,5).' ';
@@ -2901,17 +2895,19 @@ sub start_img {
my $src= &Apache::lonxml::get_param('src',$parstack,$safeeval);
my $width= &Apache::lonxml::get_param('width',$parstack,$safeeval);
my $height= &Apache::lonxml::get_param('height',$parstack,$safeeval);
-
+ my $element = &Apache::edit::get_element('src');
+ my $text;
if ($token->[2]{'src'}=~/\$/) {
- $currentstring.=&mt('Variable image source');
+ $text = &mt('Variable image source');
} elsif ($token->[2]{'src'}=~/\S/) {
$currentstring .= '';
} else {
- $currentstring.=&mt("No image source specified");
+ $text = &mt("No image source specified");
}
+ $currentstring .= ' '.$text.'';
} elsif ($target eq 'modified') {
my ($osrc,$owidth,$oheight)=
($token->[2]{'src'},$token->[2]{'width'},$token->[2]{'height'});
@@ -4598,8 +4594,7 @@ sub latex_header {
'\usepackage{amssymb}'."\n".
'\usepackage{amsfonts}'."\n".
'\usepackage{amsthm}'."\n".
- '\usepackage{amscd}'."\n".
- '\usepackage{actuarialangle}'."\n";
+ '\usepackage{amscd}'."\n";
if($env{'form.pdfFormFields'} eq 'yes') {
$currentstring .= '\usepackage{hyperref}'.
'\usepackage{eforms}'.