--- loncom/interface/lonpreferences.pm 2008/05/27 20:44:55 1.121 +++ loncom/interface/lonpreferences.pm 2008/12/12 19:57:58 1.125.2.1 @@ -1,7 +1,7 @@ # The LearningOnline Network # Preferences # -# $Id: lonpreferences.pm,v 1.121 2008/05/27 20:44:55 www Exp $ +# $Id: lonpreferences.pm,v 1.125.2.1 2008/12/12 19:57:58 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -108,9 +108,14 @@ sub wysiwygchanger { } my $switchoff=&mt('Disable WYSIWYG editor'); my $switchon=&mt('Enable WYSIWYG editor'); + my $warning=''; + if ($env{'user.adv'}) { + $warning.="<p>".&mt("The WYSIWYG editor only supports simple HTML and is in many cases unsuited for advanced authoring. In a number of cases, it may destroy advanced authoring involving LaTeX and script function calls.")."</p>"; + } $r->print(<<ENDLSCREEN); <form name="prefs" action="/adm/preferences" method="post"> <input type="hidden" name="action" value="set_wysiwyg" /> +$warning <br /> <label><input type="radio" name="wysiwyg" value="off" $onselect /> $switchoff</label><br /> <label><input type="radio" name="wysiwyg" value="on" $offselect /> $switchon</label> @@ -189,35 +194,45 @@ sub texenginechanger { my %userenv = &Apache::lonnet::get('environment',['texengine']); my $texengine=$userenv{'texengine'}; - my $pref=&mt('Preferred method to display Math'); my %mathchoices=('' => 'Default', - 'tth' => 'TeX to HTML', + 'tth' => 'tth (TeX to HTML)', #'ttm' => 'TeX to MathML', 'jsMath' => 'jsMath', - 'mimetex' => 'Convert to Images' + 'mimetex' => 'mimetex (Convert to Images)' ); my $selectionbox=&Apache::loncommon::select_form($texengine,'texengine', %mathchoices); my $jsMath_start=&Apache::lontexconvert::jsMath_header(); - my $change=&mt('Change'); - $r->print(<<ENDLSCREEN); -<br /> + my %lt=&Apache::lonlocal::texthash( + 'headline' => 'Change Math Preferences', + 'preftxt' => 'Preferred method to display Math', + 'change' => 'Change', + 'exmpl' => 'Examples', + 'jsmath' => 'jsMath:', + 'tth' => 'tth (TeX to HTML):', + 'mimetex' => 'mimetex (Convert to Images):', + ); + $r->print(<<ENDLSCREEN); +<h2>$lt{'headline'}</h2> <form name="prefs" action="/adm/preferences" method="post"> <input type="hidden" name="action" value="verify_and_change_texengine" /> -<p>$pref: $selectionbox</p> -<p><input type="submit" value="$change" /></p> -</form> -Examples: -<p> TeX to HTML <br /> -<iframe src="/res/adm/pages/math_example.tex?inhibitmenu=yes&texengine=tth" width="400" height="200"></iframe> +<p> +$lt{'preftxt'}:<br /> +$selectionbox <input type="submit" value="$lt{'change'}" /> </p> -<p>jsMath <br /> +</form> +<br /> +<hr /> +$lt{'exmpl'} + +<h3>$lt{'jsmath'}</h3> +<p> $jsMath_start <script type="text/javascript"> if (jsMath.nofonts == 1) { document.writeln - ('<center><div style="padding: 10; border-style: solid; border-width:3;' + ('<div style="padding: 10; border-style: solid; border-width:3;' +' border-color: #DD0000; background-color: #FFF8F8; width: 75%; text-align: left">' +'<small><font color="#AA0000"><b>Warning:</b> ' +'It looks like you don\\\'t have the TeX math fonts installed. ' @@ -227,15 +242,20 @@ if (jsMath.nofonts == 1) { +'needed fonts. In the meantime, jsMath will do the best it can ' +'with the fonts you have, but it may not be pretty and some equations ' +'may not be rendered correctly. ' - +'</font></small></div></center>'); + +'</font></small></div>'); } </script> -<iframe src="/res/adm/pages/math_example.tex?inhibitmenu=yes&texengine=jsMath" width="400" height="200"></iframe> +<iframe src="/res/adm/pages/math_example.tex?inhibitmenu=yes&texengine=jsMath" width="400" height="120"></iframe> +</p> +<h3>$lt{'mimetex'}</h3> +<p> +<iframe src="/res/adm/pages/math_example.tex?inhibitmenu=yes&texengine=mimetex" width="400" height="100"></iframe> </p> -<p> Convert to Images <br /> -<br /> -<iframe src="/res/adm/pages/math_example.tex?inhibitmenu=yes&texengine=mimetex" width="400" height="200"></iframe> + +<h3>$lt{'tth'}</h3> +<p> +<iframe src="/res/adm/pages/math_example.tex?inhibitmenu=yes&texengine=tth" width="400" height="200"></iframe> </p> ENDLSCREEN if ($env{'environment.texengine'} ne 'jsMath') { @@ -1762,13 +1782,14 @@ sub handler { text => 'Change Message Forwarding/Notification'}, printmenu => 'no', subroutine => \&verify_and_change_msgforward })); - my $aboutmeaction= - '/adm/'.$env{'user.domain'}.'/'.$env{'user.name'}.'/aboutme'; - push (@Options,{ action => 'none', - linktext => - q{Edit the 'About Me' Personal Information Screen}, - help => 'Prefs_About_Me', - href => $aboutmeaction}); + if (&Apache::lonnet::usertools_access($user,$domain,'aboutme')) { + my $aboutmeaction = '/adm/'.$domain.'/'.$user.'/aboutme'; + push (@Options,{ action => 'none', + linktext => + q{Edit the 'About Me' Personal Information Screen}, + help => 'Prefs_About_Me', + href => $aboutmeaction}); + } push (@Options,({ action => 'changecolors', linktext => 'Change Color Scheme', href => '/adm/preferences', @@ -1909,7 +1930,8 @@ sub handler { text => 'Register Clicker'}, printmenu => 'yes', })); - if ($env{'user.adv'}) { + my %author_roles = &Apache::lonnet::get_my_roles($user,$domain,'userroles','',['au']); + if (keys(%author_roles) > 0) { push (@Options,({ action => 'changedomcoord', linktext => 'Restrict Domain Coordinator Access', href => '/adm/preferences',