bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
 
<script>
 
var wordWindow = null;
var controlWindow = null;
 
function init_spell( spellerWindow ) {
 
    if( spellerWindow ) {
        if( spellerWindow.windowType == "wordWindow" ) {
            wordWindow = spellerWindow;
        } else if ( spellerWindow.windowType == "controlWindow" ) {
            controlWindow = spellerWindow;
        }
    }
 
    if( controlWindow && wordWindow ) {
        // populate the speller object and start it off!
        var speller = opener.speller;
        wordWindow.speller = speller;
        speller.startCheck( wordWindow, controlWindow );
    }
}
 
// encodeForPost
function encodeForPost( str ) {
    var s = new String( str );
    s = encodeURIComponent( s );
    // additionally encode single quotes to evade any PHP
    // magic_quotes_gpc setting (it inserts escape characters and
    // therefore skews the btye positions of misspelled words)
    return s.replace( /\'/g, '%27' );
}
 
// post the text area data to the script that populates the speller
function postWords() {
    var bodyDoc = window.frames[0].document;
    bodyDoc.open();
    bodyDoc.write('<html>');
    bodyDoc.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">');
    bodyDoc.write('<link rel="stylesheet" type="text/css" href="spellerStyle.css"/>');
    if (opener) {
        var speller = opener.speller;
        bodyDoc.write('<body class="normalText" onLoad="document.forms[0].submit();">');
        bodyDoc.write('<p>' + window.parent.FCKLang.DlgSpellProgress + '<\/p>');        // by FredCK
        bodyDoc.write('<form action="'+speller.spellCheckScript+'" method="post">');
        for( var i = 0; i < speller.textInputs.length; i++ ) {
            bodyDoc.write('<input type="hidden" name="textinputs[]" value="'+encodeForPost(speller.textInputs[i].value)+'">');
        }
        bodyDoc.write('<\/form>');
        bodyDoc.write('<\/body>');
    } else {
        bodyDoc.write('<body class="normalText">');
        bodyDoc.write('<p><b>This page cannot be displayed<\/b><\/p><p>The window was not opened from another window.<\/p>');
        bodyDoc.write('<\/body>');
    }
    bodyDoc.write('<\/html>');
    bodyDoc.close();
}
</script>
 
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<head>
<title>Speller Pages</title>
</head>
<frameset rows="*,201" onLoad="postWords();">
<frame src="blank.html">
<frame src="controls.html">
</frameset>
</html>