--- loncom/xml/londefdef.pm 2023/09/27 14:52:27 1.473 +++ loncom/xml/londefdef.pm 2023/11/28 04:48:14 1.474 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Tags Default Definition Module # -# $Id: londefdef.pm,v 1.473 2023/09/27 14:52:27 raeburn Exp $ +# $Id: londefdef.pm,v 1.474 2023/11/28 04:48:14 raeburn Exp $ # # # Copyright Michigan State University Board of Trustees @@ -658,9 +658,9 @@ sub start_body { sub edit_controls { my ($nochgview) = @_; - my $result .= ' + my $result = &Apache::lonxml::seteditor_javascript().'
-
'; +
'."\n"; unless ($nochgview) { $result .= '
'. @@ -669,12 +669,20 @@ sub edit_controls {
'; } $result .= ' -
'; +
+ +'."\n"; if ($env{'browser.type'} ne 'explorer' || $env{'browser.version'} > 9) { my $uri = $env{'request.uri'}; - my $daxeurl = '/daxepage'.$uri; - $result .= ''; + if ($uri =~ /\.(xml|html|htm|xhtml|xhtm)$/) { + my %editors = &Apache::loncommon::permitted_editors(); + if ($editors{'daxe'}) { + my $daxeurl = '/daxepage'.$uri; + $result .= ''."\n"; + } + } } if (($env{'request.course.id'}) && ($env{'form.forceedit'})) { my $url=&Apache::lonnet::hreflocation('',$env{'request.filename'});