Changeset 2907
- Timestamp:
- 01/15/09 13:51:54 (4 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 4 added
- 4 edited
-
_whatsnew.html (modified) (1 diff)
-
editor/_source/commandclasses/fckspellcheckcommand_gecko.js (modified) (1 diff)
-
editor/_source/commandclasses/fckspellcheckcommand_ie.js (modified) (2 diffs)
-
editor/wsc (added)
-
editor/wsc/ciframe.html (added)
-
editor/wsc/tmpFrameset.html (added)
-
editor/wsc/w.html (added)
-
fckconfig.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_whatsnew.html
r2906 r2907 38 38 New Features and Improvements:</p> 39 39 <ul> 40 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2685">#2685</a>] Integration 41 with "Web Spell Checker", a <strong>zero installation and free spell checker</strong> 42 provided by SpellChecker.net. This is now the default spell checker in the editor 43 (requires internet connection). All previous spell checking solutions are still 44 available.</li> 40 45 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2430">#2430</a>] In the table 41 46 dialog it's possible to create header cells in the first row (included in a thead element) -
FCKeditor/trunk/editor/_source/commandclasses/fckspellcheckcommand_gecko.js
r1565 r2907 26 26 { 27 27 this.Name = 'SpellCheck' ; 28 this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ;28 this.IsEnabled = ( FCKConfig.SpellChecker != 'ieSpell' ) ; 29 29 } 30 30 31 31 FCKSpellCheckCommand.prototype.Execute = function() 32 32 { 33 FCKDialog.OpenDialog( 'FCKDialog_SpellCheck', 'Spell Check', 'dialog/fck_spellerpages.html', 440, 480 ) ; 33 switch ( FCKConfig.SpellChecker ) 34 { 35 case 'SpellerPages' : 36 FCKDialog.OpenDialog( 'FCKDialog_SpellCheck', 'Spell Check', 'dialog/fck_spellerpages.html', 440, 480 ) ; 37 break; 38 39 case 'WSC' : 40 FCKDialog.OpenDialog( 'FCKDialog_SpellCheck', 'Spell Check', 'wsc/w.html', 530, 480 ) ; 41 } 34 42 } 35 43 -
FCKeditor/trunk/editor/_source/commandclasses/fckspellcheckcommand_ie.js
r1565 r2907 26 26 { 27 27 this.Name = 'SpellCheck' ; 28 this.IsEnabled = ( FCKConfig.SpellChecker == 'ieSpell' || FCKConfig.SpellChecker == 'SpellerPages' );28 this.IsEnabled = true ; 29 29 } 30 30 … … 40 40 FCKDialog.OpenDialog( 'FCKDialog_SpellCheck', 'Spell Check', 'dialog/fck_spellerpages.html', 440, 480 ) ; 41 41 break ; 42 43 case 'WSC' : 44 FCKDialog.OpenDialog( 'FCKDialog_SpellCheck', 'Spell Check', 'wsc/w.html', 530, 480 ) ; 42 45 } 43 46 } -
FCKeditor/trunk/fckconfig.js
r2779 r2907 161 161 FCKConfig.TemplatesXmlPath = FCKConfig.EditorPath + 'fcktemplates.xml' ; 162 162 163 FCKConfig.SpellChecker = ' ieSpell' ; // 'ieSpell' | 'SpellerPages'163 FCKConfig.SpellChecker = 'WSC' ; // 'WSC' | 'SpellerPages' | 'ieSpell' 164 164 FCKConfig.IeSpellDownloadUrl = 'http://www.iespell.com/download.php' ; 165 165 FCKConfig.SpellerPagesServerScript = 'server-scripts/spellchecker.php' ; // Available extension: .php .cfm .pl
Note: See TracChangeset
for help on using the changeset viewer.
