--- loncom/interface/lonhtmlcommon.pm 2004/07/16 19:29:26 1.80 +++ loncom/interface/lonhtmlcommon.pm 2004/07/27 23:35:34 1.85 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.80 2004/07/16 19:29:26 matthew Exp $ +# $Id: lonhtmlcommon.pm,v 1.85 2004/07/27 23:35:34 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -783,7 +783,7 @@ sub Increment_PrgWin { $str = '1 minute'; } elsif ($min < 10 && $sec > 1) { $str = '[_1] minutes, [_2] seconds'; - } elsif ($min > 10 || $sec < 2) { + } elsif ($min >= 10 || $sec < 2) { $str = '[_1] minutes'; } $time_est = &mt($str,$min,$sec); @@ -869,6 +869,33 @@ sub crumbs { return $output.''.($noformat?'':'
'); } +# --------------------- A function that generates a window for the spellchecker + +sub spellheader { + my $nothing = &javascript_nothing(); + return (< +var checkwin; + +function spellcheckerwindow() { + checkwin=window.open($nothing,'spellcheckwin','height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no'); + checkwin.document.writeln('
'); + checkwin.document.close(); +} + +ENDCHECK +} + +# ---------------------------------- Generate link to spell checker for a field + +sub spelllink { + my ($form,$field)=@_; + my $linktext=&mt('Check Spelling'); + return (<$linktext +ENDLINK +} + # ------------------------------------------------- Output headers for HTMLArea sub htmlareaheaders { @@ -1057,7 +1084,7 @@ returns: nothing } @Crumbs ); $links .= '->' if ($links ne ''); - $links .= ''.$last->{'text'}.''; + $links .= ''.&mt($last->{'text'}).''; # my $icons = ''; $faq = $last->{'faq'} if (exists($last->{'faq'})); @@ -1077,12 +1104,7 @@ returns: nothing # if (defined($component)) { $Str .= ''. - ''.&mt($component).''; - if (defined($component_help)) { - $Str .= - &Apache::loncommon::help_open_topic($component_help); - } - $Str.= ''; + ''.&mt($component).''; } $Str .= ''."\n"; #