spellchecker.pl
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:5k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. #!/usr/bin/perl
  2. use CGI qw/ :standard /;
  3. use File::Temp qw/ tempfile tempdir /;
  4. # my $spellercss = '/speller/spellerStyle.css'; # by FredCK
  5. my $spellercss = '../spellerStyle.css'; # by FredCK
  6. # my $wordWindowSrc = '/speller/wordWindow.js'; # by FredCK
  7. my $wordWindowSrc = '../wordWindow.js'; # by FredCK
  8. my @textinputs = param( 'textinputs[]' ); # array
  9. # my $aspell_cmd = 'aspell'; # by FredCK (for Linux)
  10. my $aspell_cmd = '"C:Program FilesAspellbinaspell.exe"'; # by FredCK (for Windows)
  11. my $lang = 'en_US';
  12. # my $aspell_opts = "-a --lang=$lang --encoding=utf-8"; # by FredCK
  13. my $aspell_opts = "-a --lang=$lang --encoding=utf-8 -H --rem-sgml-check=alt"; # by FredCK
  14. my $input_separator = "A";
  15. # set the 'wordtext' JavaScript variable to the submitted text.
  16. sub printTextVar {
  17. for( my $i = 0; $i <= $#textinputs; $i++ ) {
  18.         print "textinputs[$i] = decodeURIComponent('" . escapeQuote( $textinputs[$i] ) . "')n";
  19. }
  20. }
  21. sub printTextIdxDecl {
  22. my $idx = shift;
  23. print "words[$idx] = [];n";
  24. print "suggs[$idx] = [];n";
  25. }
  26. sub printWordsElem {
  27. my( $textIdx, $wordIdx, $word ) = @_;
  28. print "words[$textIdx][$wordIdx] = '" . escapeQuote( $word ) . "';n";
  29. }
  30. sub printSuggsElem {
  31. my( $textIdx, $wordIdx, @suggs ) = @_;
  32. print "suggs[$textIdx][$wordIdx] = [";
  33. for my $i ( 0..$#suggs ) {
  34. print "'" . escapeQuote( $suggs[$i] ) . "'";
  35. if( $i < $#suggs ) {
  36. print ", ";
  37. }
  38. }
  39. print "];n";
  40. }
  41. sub printCheckerResults {
  42. my $textInputIdx = -1;
  43. my $wordIdx = 0;
  44. my $unhandledText;
  45. # create temp file
  46. my $dir = tempdir( CLEANUP => 1 );
  47. my( $fh, $tmpfilename ) = tempfile( DIR => $dir );
  48. # temp file was created properly?
  49. # open temp file, add the submitted text.
  50. for( my $i = 0; $i <= $#textinputs; $i++ ) {
  51. $text = url_decode( $textinputs[$i] );
  52. # Strip all tags for the text. (by FredCK - #339 / #681)
  53. $text =~ s/<[^>]+>/ /g;
  54. @lines = split( /n/, $text );
  55. print $fh "%n"; # exit terse mode
  56. print $fh "^$input_separatorn";
  57. print $fh "!n";  # enter terse mode
  58. for my $line ( @lines ) {
  59. # use carat on each line to escape possible aspell commands
  60. print $fh "^$linen";
  61. }
  62. }
  63. # exec aspell command
  64. my $cmd = "$aspell_cmd $aspell_opts < $tmpfilename 2>&1";
  65. open ASPELL, "$cmd |" or handleError( "Could not execute `$cmd`\n$!" ) and return;
  66. # parse each line of aspell return
  67. for my $ret ( <ASPELL> ) {
  68. chomp( $ret );
  69. # if '&', then not in dictionary but has suggestions
  70. # if '#', then not in dictionary and no suggestions
  71. # if '*', then it is a delimiter between text inputs
  72. if( $ret =~ /^*/ ) {
  73. $textInputIdx++;
  74. printTextIdxDecl( $textInputIdx );
  75. $wordIdx = 0;
  76. } elsif( $ret =~ /^(&|#)/ ) {
  77. my @tokens = split( " ", $ret, 5 );
  78. printWordsElem( $textInputIdx, $wordIdx, $tokens[1] );
  79. my @suggs = ();
  80. if( $tokens[4] ) {
  81. @suggs = split( ", ", $tokens[4] );
  82. }
  83. printSuggsElem( $textInputIdx, $wordIdx, @suggs );
  84. $wordIdx++;
  85. } else {
  86. $unhandledText .= $ret;
  87. }
  88. }
  89. close ASPELL or handleError( "Error executing `$cmd`\n$unhandledText" ) and return;
  90. }
  91. sub escapeQuote {
  92. my $str = shift;
  93. $str =~ s/'/\'/g;
  94. return $str;
  95. }
  96. sub handleError {
  97. my $err = shift;
  98. print "error = '" . escapeQuote( $err ) . "';n";
  99. }
  100. sub url_decode {
  101. local $_ = @_ ? shift : $_;
  102. defined or return;
  103. # change + signs to spaces
  104. tr/+/ /;
  105. # change hex escapes to the proper characters
  106. s/%([a-fA-F0-9]{2})/pack "H2", $1/eg;
  107. return $_;
  108. }
  109. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  110. # Display HTML
  111. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  112. print <<EOF;
  113. Content-type: text/html; charset=utf-8
  114. <html>
  115. <head>
  116. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  117. <link rel="stylesheet" type="text/css" href="$spellercss"/>
  118. <script src="$wordWindowSrc"></script>
  119. <script type="text/javascript">
  120. var suggs = new Array();
  121. var words = new Array();
  122. var textinputs = new Array();
  123. var error;
  124. EOF
  125. printTextVar();
  126. printCheckerResults();
  127. print <<EOF;
  128. var wordWindowObj = new wordWindow();
  129. wordWindowObj.originalSpellings = words;
  130. wordWindowObj.suggestions = suggs;
  131. wordWindowObj.textInputs = textinputs;
  132. function init_spell() {
  133. // check if any error occured during server-side processing
  134. if( error ) {
  135. alert( error );
  136. } else {
  137. // call the init_spell() function in the parent frameset
  138. if (parent.frames.length) {
  139. parent.init_spell( wordWindowObj );
  140. } else {
  141. error = "This page was loaded outside of a frameset. ";
  142. error += "It might not display properly";
  143. alert( error );
  144. }
  145. }
  146. }
  147. </script>
  148. </head>
  149. <body onLoad="init_spell();">
  150. <script type="text/javascript">
  151. wordWindowObj.writeBody();
  152. </script>
  153. </body>
  154. </html>
  155. EOF