Diff for /loncom/interface/lonspeller.pm between versions 1.4 and 1.7

version 1.4, 2004/07/22 23:50:55 version 1.7, 2004/07/29 13:38:31
Line 30 Line 30
   
 package Apache::lonspeller;  package Apache::lonspeller;
   
   use Apache::Constants qw(:common);
 use Text::Aspell;  use Text::Aspell;
 use Apache::lonlocal;  use Apache::lonlocal;
   use Apache::lontexconvert();
   use HTML::LCParser;
 use strict;  use strict;
   
 my $speller;  my $speller;
   my $insidelink;
   
 sub spellcheck_language {  sub spellcheck_language {
     if ($ENV{'form.lang'}) { return $ENV{'form.lang'}; }      if ($ENV{'form.lang'}) { return $ENV{'form.lang'}; }
Line 48  sub set_language { Line 53  sub set_language {
     $speller->set_option('lang',$lang);      $speller->set_option('lang',$lang);
 }  }
   
 sub markeduptext {  sub textsection {
     my $input=shift;      my $input=shift;
     my $output='';      my $output='';
     &set_language();      &set_language();
     foreach my $word (split(/\W+/,$input)) {      foreach my $word (split(/\b/,$input)) {
  if ($speller->check($word)) {   if (($word=~/\W/) || ($word=~/^(lt|gt|nbsp|amp)$/i)
     $output.=$word.' ';      || ($speller->check($word))) {
       $output.=$word;
  } else {   } else {
     my $suggestions=join(' ',$speller->suggest($word));      my $suggestions=join(' ',$speller->suggest($word));
     &Apache::lonnet::logthis($suggestions);  
     $suggestions=~s/\'/\\\'/gs;      $suggestions=~s/\'/\\\'/gs;
     if ($suggestions) {      if (($suggestions) && (!$insidelink)) {
  $output.='<a href="javascript:alert('."'".   $output.='<a href="javascript:alert('."'".
     $suggestions."');".      $suggestions."');".
     '">';      '">';
     }      }
     $output.='<font color="red">'.$word.'</font>';      $output.='<font color="red">'.$word.'</font>';
     if ($suggestions) { $output.='</a>'; }      if (($suggestions) && (!$insidelink)) { $output.='</a>'; }
     $output.=' ';   }
       }
       return $output;
   }
   
   
   sub markeduptext {
       my $input=shift;
       my $output='';
       my $parser=HTML::LCParser->new(\$input);
       $insidelink=0;
       my $token;
       while ($token=$parser->get_token) {
    if ($token->[0] eq 'T') {
       $output.=&textsection($token->[1]);
    } elsif ($token->[0] eq 'S') {
       $output.=$token->[4];
       foreach my $tag ('m','script') {
    if ($token->[1] eq $tag) {
       $output.=$parser->get_text('/'.$tag);
    }
       }
       if ($token->[1] eq 'a') {
    $insidelink=1;
       }
    } elsif ($token->[0] eq 'E') {
       $output.=$token->[2];
       if ($token->[1] eq 'a') {
    $insidelink=0;
       }
  }   }
     }      }
       $insidelink=0;
     return $output;      return $output;
 }  }
   
Line 76  sub initspeller { Line 111  sub initspeller {
     unless (defined($speller)) {      unless (defined($speller)) {
  $speller = Text::Aspell->new;   $speller = Text::Aspell->new;
  $speller->set_option('lang','en_US');   $speller->set_option('lang','en_US');
  $speller->set_option('sug-mode','fast');  
     }      }
       $insidelink=0;
 }  }
   
 sub handler {  sub handler {
Line 92  sub handler { Line 127  sub handler {
     $r->print('<html><head><title>'.      $r->print('<html><head><title>'.
       &mt('Spell Checker').        &mt('Spell Checker').
       '</title></head><body bgcolor="#DDDDDD">'.        '</title></head><body bgcolor="#DDDDDD">'.
       &markeduptext($ENV{'form.text'}).        &Apache::lontexconvert::msgtexconverted(
        &markeduptext($ENV{'form.text'})).
       '</body></html>');        '</body></html>');
     return OK;      return OK;
 }  }

Removed from v.1.4  
changed lines
  Added in v.1.7


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>