Ticket #2815: 2815_2.patch
File 2815_2.patch, 2.4 KB (added by , 14 years ago) |
---|
-
_whatsnew.html
39 39 <ul> 40 40 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2777">#2777</a>] Merging 41 41 cells between table header and table body is no longer possible.</li> 42 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2815">#2815</a>] Fixed 43 WSC issues at slow connection speed. Added SSL support.</li> 42 44 </ul> 43 45 <h3> 44 46 Version 2.6.4 Beta</h3> -
editor/wsc/w.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2 2 <!-- 3 3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 4 4 * Copyright (C) 2003-2009 Frederico Caldeira Knabben … … 132 132 clearErrorUsermessage() ; 133 133 var _errorMessage = 'The SpellChecker Service is currently unavailable.' ; 134 134 if ( 'undefined' != typeof( oEditor.FCK.Config.WSChLoaderScript ) ) 135 _errorMessage = '<div>The SpellChecker Service is currently unavailable.</div><p>Error application loading<br>service host: ' + oEditor.FCK.Config.WSChLoaderScript + '</p>';135 _errorMessage = '<div>The SpellChecker Service is currently unavailable.</div><p>Error loading application<br>service host: ' + oEditor.FCK.Config.WSChLoaderScript + '</p>'; 136 136 137 137 var burnSpelling = function( oName, _eMessage ) 138 138 { … … 142 142 { 143 143 if ( typeof( window[oName] ) == 'function' ) 144 144 initAndSpell() ; 145 else if ( i++ == 30 )145 else if ( i++ == 180 ) 146 146 _cancelOnError( _eMessage ) ; 147 147 } 148 148 } 149 149 150 gInterval = window.setInterval( burnSpelling( 'doSpell', _errorMessage ), 100 ) ;150 gInterval = window.setInterval( burnSpelling( 'doSpell', _errorMessage ), 250 ) ; 151 151 152 152 // WSC CORE init section 153 var baseUrl = "http://loader.spellchecker.net/sproxy_fck/sproxy.php" ; 153 var protocol = document.location.protocol || 'http:' ; 154 var baseUrl = protocol + '//loader.spellchecker.net/sproxy_fck/sproxy.php' ; 154 155 var plugin = "fck2" ; 155 156 var customerid = oEditor.FCK.Config.WSCnCustomerId 156 157 || "1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk" ;