JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.3.2
[ckeditor.git] / _source / plugins / scayt / plugin.js
1 /*\r
2 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license\r
4 */\r
5 \r
6 /**\r
7  * @fileOverview Spell Check As You Type (SCAYT).\r
8  * Button name : Scayt.\r
9  */\r
10 \r
11 (function()\r
12 {\r
13         var commandName         = 'scaytcheck',\r
14                 openPage                = '';\r
15 \r
16         // Checks if a value exists in an array\r
17         function in_array(needle, haystack)\r
18         {\r
19                 var found = false, key;\r
20                 for (key in haystack)\r
21                 {\r
22                         if ((haystack[key] === needle) || ( haystack[key] == needle))\r
23                         {\r
24                                 found = true;\r
25                                 break;\r
26                         }\r
27                 }\r
28                 return found;\r
29         }\r
30 \r
31         var onEngineLoad = function()\r
32         {\r
33                 var editor = this;\r
34 \r
35                 var createInstance = function() // Create new instance every time Document is created.\r
36                 {\r
37                         // Initialise Scayt instance.\r
38                         var oParams = {};\r
39                         // Get the iframe.\r
40                         oParams.srcNodeRef = editor.document.getWindow().$.frameElement;\r
41                         // syntax : AppName.AppVersion@AppRevision\r
42                         oParams.assocApp  = 'CKEDITOR.' + CKEDITOR.version + '@' + CKEDITOR.revision;\r
43                         oParams.customerid = editor.config.scayt_customerid  || '1:WvF0D4-UtPqN1-43nkD4-NKvUm2-daQqk3-LmNiI-z7Ysb4-mwry24-T8YrS3-Q2tpq2';\r
44                         oParams.customDictionaryIds = editor.config.scayt_customDictionaryIds || '';\r
45                         oParams.userDictionaryName = editor.config.scayt_userDictionaryName || '';\r
46                         oParams.sLang = editor.config.scayt_sLang || 'en_US';\r
47 \r
48                         // Introduce SCAYT onLoad callback. (#5632)\r
49                         oParams.onLoad = function()\r
50                                 {\r
51                                         // Draw down word marker to avoid being covered by background-color style.(#5466)\r
52                                         if ( !( CKEDITOR.env.ie && CKEDITOR.env.version < 8 ) )\r
53                                                 this.addStyle( this.selectorCss(), 'padding-bottom: 2px !important;' );\r
54 \r
55                                         // Call scayt_control.focus when SCAYT loaded\r
56                                         // and only if editor has focus and scayt control creates at first time (#5720)\r
57                                         if ( editor.focusManager.hasFocus && !plugin.isControlRestored( editor ) )\r
58                                                 this.focus();\r
59 \r
60                                 };\r
61 \r
62                         oParams.onBeforeChange = function()\r
63                         {\r
64                                 if ( plugin.getScayt( editor ) && !editor.checkDirty() )\r
65                                         setTimeout( function(){ editor.resetDirty(); } );\r
66                         };\r
67 \r
68                         var scayt_custom_params = window.scayt_custom_params;\r
69                         if ( typeof scayt_custom_params == 'object')\r
70                         {\r
71                                 for ( var k in scayt_custom_params )\r
72                                 {\r
73                                         oParams[ k ] = scayt_custom_params[ k ];\r
74                                 }\r
75                         }\r
76                         // needs for restoring a specific scayt control settings\r
77                         if ( plugin.getControlId(editor) )\r
78                                 oParams.id = plugin.getControlId(editor);\r
79 \r
80                         var scayt_control = new window.scayt( oParams );\r
81 \r
82                         scayt_control.afterMarkupRemove.push( function( node )\r
83                         {\r
84                                 ( new CKEDITOR.dom.element( node, scayt_control.document ) ).mergeSiblings();\r
85                         } );\r
86 \r
87                         // Copy config.\r
88                         var     lastInstance = plugin.instances[ editor.name ];\r
89                         if ( lastInstance )\r
90                         {\r
91                                 scayt_control.sLang = lastInstance.sLang;\r
92                                 scayt_control.option( lastInstance.option() );\r
93                                 scayt_control.paused = lastInstance.paused;\r
94                         }\r
95 \r
96                         plugin.instances[ editor.name ] = scayt_control;\r
97 \r
98                         //window.scayt.uiTags\r
99                         var menuGroup = 'scaytButton';\r
100                         var uiTabs = window.scayt.uiTags;\r
101                         var fTabs  = [];\r
102 \r
103                         for (var i = 0,l=4; i<l; i++)\r
104                             fTabs.push( uiTabs[i] && plugin.uiTabs[i] );\r
105 \r
106                         plugin.uiTabs = fTabs;\r
107                         try {\r
108                                 scayt_control.setDisabled( plugin.isPaused( editor ) === false );\r
109                         } catch (e) {}\r
110 \r
111                         editor.fire( 'showScaytState' );\r
112                 };\r
113 \r
114                 editor.on( 'contentDom', createInstance );\r
115                 editor.on( 'contentDomUnload', function()\r
116                         {\r
117                                 // Remove scripts.\r
118                                 var scripts = CKEDITOR.document.getElementsByTag( 'script' ),\r
119                                         scaytIdRegex =  /^dojoIoScript(\d+)$/i,\r
120                                         scaytSrcRegex =  /^https?:\/\/svc\.spellchecker\.net\/spellcheck\/script\/ssrv\.cgi/i;\r
121 \r
122                                 for ( var i=0; i < scripts.count(); i++ )\r
123                                 {\r
124                                         var script = scripts.getItem( i ),\r
125                                                 id = script.getId(),\r
126                                                 src = script.getAttribute( 'src' );\r
127 \r
128                                         if ( id && src && id.match( scaytIdRegex ) && src.match( scaytSrcRegex ))\r
129                                                 script.remove();\r
130                                 }\r
131                         });\r
132 \r
133                 editor.on( 'beforeCommandExec', function( ev )          // Disable SCAYT before Source command execution.\r
134                         {\r
135                                 if ( (ev.data.name == 'source' ||  ev.data.name == 'newpage') && editor.mode == 'wysiwyg' )\r
136                                 {\r
137                                         var scayt_instance = plugin.getScayt( editor );\r
138                                         if ( scayt_instance )\r
139                                         {\r
140                                                 plugin.setPaused( editor, !scayt_instance.disabled );\r
141                                                 // store a control id for restore a specific scayt control settings\r
142                                                 plugin.setControlId( editor, scayt_instance.id );\r
143                                                 scayt_instance.destroy( true );\r
144                                                 delete plugin.instances[ editor.name ];\r
145                                         }\r
146                                 }\r
147                                 // Catch on source mode switch off (#5720)\r
148                                 else if ( ev.data.name == 'source'  && editor.mode == 'source' )\r
149                                         plugin.markControlRestore( editor );\r
150                         });\r
151 \r
152                 editor.on( 'afterCommandExec', function( ev )\r
153                         {\r
154                                 if ( !plugin.isScaytEnabled( editor ) )\r
155                                         return;\r
156 \r
157                                 if ( editor.mode == 'wysiwyg' && ( ev.data.name == 'undo' || ev.data.name == 'redo' ) )\r
158                                         window.setTimeout( function() { plugin.getScayt( editor ).refresh(); }, 10 );\r
159                         });\r
160 \r
161                 editor.on( 'destroy', function( ev )\r
162                         {\r
163                                 var editor = ev.editor,\r
164                                         scayt_instance = plugin.getScayt( editor );\r
165 \r
166                                 // SCAYT instance might already get destroyed by mode switch (#5744).\r
167                                 if ( !scayt_instance )\r
168                                         return;\r
169 \r
170                                 delete plugin.instances[ editor.name ];\r
171                                 // store a control id for restore a specific scayt control settings\r
172                                 plugin.setControlId( editor, scayt_instance.id );\r
173                                 scayt_instance.destroy( true );\r
174                         });\r
175 \r
176                 // Listen to data manipulation to reflect scayt markup.\r
177                 editor.on( 'afterSetData', function()\r
178                         {\r
179                                 if ( plugin.isScaytEnabled( editor ) ) {\r
180                                         window.setTimeout( function()\r
181                                                 {\r
182                                                         var instance = plugin.getScayt( editor );\r
183                                                         instance && instance.refresh();\r
184                                                 }, 10 );\r
185                                 }\r
186                         });\r
187 \r
188                 // Reload spell-checking for current word after insertion completed.\r
189                 editor.on( 'insertElement', function()\r
190                         {\r
191                                 var scayt_instance = plugin.getScayt( editor );\r
192                                 if ( plugin.isScaytEnabled( editor ) )\r
193                                 {\r
194                                         // Unlock the selection before reload, SCAYT will take\r
195                                         // care selection update.\r
196                                         if ( CKEDITOR.env.ie )\r
197                                                 editor.getSelection().unlock( true );\r
198 \r
199                                         // Return focus to the editor and refresh SCAYT markup (#5573).\r
200                                         window.setTimeout( function()\r
201                                         {\r
202                                                 scayt_instance.focus();\r
203                                                 scayt_instance.refresh();\r
204                                         }, 10 );\r
205                                 }\r
206                         }, this, null, 50 );\r
207 \r
208                 editor.on( 'insertHtml', function()\r
209                         {\r
210                                 var scayt_instance = plugin.getScayt( editor );\r
211                                 if ( plugin.isScaytEnabled( editor ) )\r
212                                 {\r
213                                         // Unlock the selection before reload, SCAYT will take\r
214                                         // care selection update.\r
215                                         if ( CKEDITOR.env.ie )\r
216                                                 editor.getSelection().unlock( true );\r
217 \r
218                                         // Return focus to the editor (#5573)\r
219                                         // Refresh SCAYT markup\r
220                                         window.setTimeout( function()\r
221                                         {\r
222                                                 scayt_instance.focus();\r
223                                                 scayt_instance.refresh();\r
224                                         }, 10 );\r
225                                 }\r
226                         }, this, null, 50 );\r
227 \r
228                 editor.on( 'scaytDialog', function( ev )        // Communication with dialog.\r
229                         {\r
230                                 ev.data.djConfig = window.djConfig;\r
231                                 ev.data.scayt_control = plugin.getScayt( editor );\r
232                                 ev.data.tab = openPage;\r
233                                 ev.data.scayt = window.scayt;\r
234                         });\r
235 \r
236                 var dataProcessor = editor.dataProcessor,\r
237                         htmlFilter = dataProcessor && dataProcessor.htmlFilter;\r
238 \r
239                 if ( htmlFilter )\r
240                 {\r
241                         htmlFilter.addRules(\r
242                                 {\r
243                                         elements :\r
244                                         {\r
245                                                 span : function( element )\r
246                                                 {\r
247                                                         if ( element.attributes.scayt_word && element.attributes.scaytid )\r
248                                                         {\r
249                                                                 delete element.name;    // Write children, but don't write this node.\r
250                                                                 return element;\r
251                                                         }\r
252                                                 }\r
253                                         }\r
254                                 }\r
255                         );\r
256                 }\r
257 \r
258                 // Override Image.equals method avoid CK snapshot module to add SCAYT markup to snapshots. (#5546)\r
259                 var undoImagePrototype = CKEDITOR.plugins.undo.Image.prototype;\r
260                 undoImagePrototype.equals =      CKEDITOR.tools.override( undoImagePrototype.equals, function( org )\r
261                 {\r
262                         return function( otherImage )\r
263                         {\r
264                                 var thisContents = this.contents,\r
265                                         otherContents = otherImage.contents;\r
266                                 var scayt_instance = plugin.getScayt( this.editor );\r
267                                 // Making the comparison based on content without SCAYT word markers.\r
268                                 if ( scayt_instance && plugin.isScaytReady( this.editor ) )\r
269                                 {\r
270                                         // scayt::reset might return value undefined. (#5742)\r
271                                         this.contents = scayt_instance.reset( thisContents ) || '';\r
272                                         otherImage.contents = scayt_instance.reset( otherContents ) || '';\r
273                                 }\r
274 \r
275                                 var retval = org.apply( this, arguments );\r
276 \r
277                                 this.contents = thisContents;\r
278                                 otherImage.contents = otherContents;\r
279                                 return retval;\r
280                         };\r
281                 });\r
282 \r
283                 if ( editor.document )\r
284                         createInstance();\r
285         };\r
286 \r
287 CKEDITOR.plugins.scayt =\r
288         {\r
289                 engineLoaded : false,\r
290                 instances : {},\r
291                 // Data storage for SCAYT control, based on editor instances\r
292                 controlInfo : {},\r
293                 setControlInfo : function( editor, o )\r
294                 {\r
295                         if ( editor && editor.name && typeof ( this.controlInfo[ editor.name ] ) != 'object' )\r
296                                 this.controlInfo[ editor.name ] = {};\r
297 \r
298                         for ( var infoOpt in o )\r
299                                 this.controlInfo[ editor.name ][ infoOpt ] = o[ infoOpt ];\r
300                 },\r
301                 isControlRestored : function ( editor )\r
302                 {\r
303                         if ( editor &&\r
304                                         editor.name &&\r
305                                         this.controlInfo[ editor.name ] )\r
306                         {\r
307                                 return this.controlInfo[ editor.name ].restored ;\r
308                         }\r
309                         return false;\r
310                 },\r
311                 markControlRestore : function ( editor )\r
312                 {\r
313                         this.setControlInfo( editor,{ restored:true } );\r
314                 },\r
315                 setControlId: function (editor, id)\r
316                 {\r
317                         this.setControlInfo( editor,{ id:id } );\r
318                 },\r
319                 getControlId: function (editor)\r
320                 {\r
321                         if ( editor &&\r
322                                         editor.name &&\r
323                                         this.controlInfo[ editor.name ] &&\r
324                                         this.controlInfo[ editor.name ].id )\r
325                         {\r
326                                 return this.controlInfo[ editor.name ].id;\r
327                         }\r
328                         return null;\r
329                 },\r
330                 setPaused: function ( editor , bool )\r
331                 {\r
332                         this.setControlInfo( editor,{ paused:bool } );\r
333                 },\r
334                 isPaused: function (editor)\r
335                 {\r
336                         if ( editor &&\r
337                                         editor.name &&\r
338                                         this.controlInfo[editor.name] )\r
339                         {\r
340                                 return this.controlInfo[editor.name].paused ;\r
341                         }\r
342                         return undefined;\r
343                 },\r
344                 getScayt : function( editor )\r
345                 {\r
346                         return this.instances[ editor.name ];\r
347                 },\r
348                 isScaytReady : function( editor )\r
349                 {\r
350                         return this.engineLoaded === true &&\r
351                                 'undefined' !== typeof window.scayt && this.getScayt( editor );\r
352                 },\r
353                 isScaytEnabled : function( editor )\r
354                 {\r
355                         var scayt_instance = this.getScayt( editor );\r
356                         return ( scayt_instance ) ? scayt_instance.disabled === false : false;\r
357                 },\r
358                 loadEngine : function( editor )\r
359                 {\r
360                         // SCAYT doesn't work with Firefox2, Opera.\r
361                         if ( CKEDITOR.env.gecko && CKEDITOR.env.version < 10900 || CKEDITOR.env.opera )\r
362                                 return editor.fire( 'showScaytState' );\r
363 \r
364                         if ( this.engineLoaded === true )\r
365                                 return onEngineLoad.apply( editor );    // Add new instance.\r
366                         else if ( this.engineLoaded == -1 )                     // We are waiting.\r
367                                 return CKEDITOR.on( 'scaytReady', function(){ onEngineLoad.apply( editor ); } );        // Use function(){} to avoid rejection as duplicate.\r
368 \r
369                         CKEDITOR.on( 'scaytReady', onEngineLoad, editor );\r
370                         CKEDITOR.on( 'scaytReady', function()\r
371                                 {\r
372                                         this.engineLoaded = true;\r
373                                 },\r
374                                 this,\r
375                                 null,\r
376                                 0\r
377                         );      // First to run.\r
378 \r
379                         this.engineLoaded = -1; // Loading in progress.\r
380 \r
381                         // compose scayt url\r
382                         var protocol = document.location.protocol;\r
383                         // Default to 'http' for unknown.\r
384                         protocol = protocol.search( /https?:/) != -1? protocol : 'http:';\r
385                         var baseUrl  = 'svc.spellchecker.net/scayt25/loader__base.js';\r
386 \r
387                         var scaytUrl  =  editor.config.scayt_srcUrl || ( protocol + '//' + baseUrl );\r
388                         var scaytConfigBaseUrl =  plugin.parseUrl( scaytUrl ).path +  '/';\r
389 \r
390                         if( window.scayt == undefined )\r
391                         {\r
392                                 CKEDITOR._djScaytConfig =\r
393                                 {\r
394                                         baseUrl: scaytConfigBaseUrl,\r
395                                         addOnLoad:\r
396                                         [\r
397                                                 function()\r
398                                                 {\r
399                                                         CKEDITOR.fireOnce( 'scaytReady' );\r
400                                                 }\r
401                                         ],\r
402                                         isDebug: false\r
403                                 };\r
404                                 // Append javascript code.\r
405                                 CKEDITOR.document.getHead().append(\r
406                                         CKEDITOR.document.createElement( 'script',\r
407                                                 {\r
408                                                         attributes :\r
409                                                                 {\r
410                                                                         type : 'text/javascript',\r
411                                                                         async : 'true',\r
412                                                                         src : scaytUrl\r
413                                                                 }\r
414                                                 })\r
415                                 );\r
416                         }\r
417                         else\r
418                                 CKEDITOR.fireOnce( 'scaytReady' );\r
419 \r
420                         return null;\r
421                 },\r
422                 parseUrl : function ( data )\r
423                 {\r
424                         var match;\r
425                         if ( data.match && ( match = data.match(/(.*)[\/\\](.*?\.\w+)$/) ) )\r
426                                 return { path: match[1], file: match[2] };\r
427                         else\r
428                                 return data;\r
429                 }\r
430         };\r
431 \r
432         var plugin = CKEDITOR.plugins.scayt;\r
433 \r
434         // Context menu constructing.\r
435         var addButtonCommand = function( editor, buttonName, buttonLabel, commandName, command, menugroup, menuOrder )\r
436         {\r
437                 editor.addCommand( commandName, command );\r
438 \r
439                 // If the "menu" plugin is loaded, register the menu item.\r
440                 editor.addMenuItem( commandName,\r
441                         {\r
442                                 label : buttonLabel,\r
443                                 command : commandName,\r
444                                 group : menugroup,\r
445                                 order : menuOrder\r
446                         });\r
447         };\r
448 \r
449         var commandDefinition =\r
450         {\r
451                 preserveState : true,\r
452                 editorFocus : false,\r
453 \r
454                 exec: function( editor )\r
455                 {\r
456                         if ( plugin.isScaytReady( editor ) )\r
457                         {\r
458                                 var isEnabled = plugin.isScaytEnabled( editor );\r
459 \r
460                                 this.setState( isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_ON );\r
461 \r
462                                 var scayt_control = plugin.getScayt( editor );\r
463                                 // the place where the status of editor focus should be restored\r
464                                 // after there will be ability to store its state before SCAYT button click\r
465                                 // if (storedFocusState is focused )\r
466                                 //   scayt_control.focus();\r
467                                 //\r
468                                 // now focus is set certainly\r
469                                 scayt_control.focus( );\r
470                                 scayt_control.setDisabled( isEnabled );\r
471                         }\r
472                         else if ( !editor.config.scayt_autoStartup && plugin.engineLoaded >= 0 )        // Load first time\r
473                         {\r
474                                 this.setState( CKEDITOR.TRISTATE_DISABLED );\r
475                                 plugin.loadEngine( editor );\r
476                         }\r
477                 }\r
478         };\r
479 \r
480         // Add scayt plugin.\r
481         CKEDITOR.plugins.add( 'scayt',\r
482         {\r
483                 requires : [ 'menubutton' ],\r
484 \r
485                 beforeInit : function( editor )\r
486                 {\r
487                         var items_order = editor.config.scayt_contextMenuItemsOrder\r
488                                         || 'suggest|moresuggest|control',\r
489                                 items_order_str = "";\r
490 \r
491                         items_order = items_order.split( '|' );\r
492 \r
493                         if ( items_order && items_order.length )\r
494                         {\r
495                                 for ( var pos in items_order )\r
496                                         items_order_str += 'scayt_' + items_order[ pos ] + ( items_order.length != parseInt( pos, 10 ) + 1 ? ',' : '' );\r
497                         }\r
498 \r
499                         // Register scayt rbc menu group.\r
500                         if ( editor.config.scayt_contextMenuOntop )\r
501                                 // Put it on top of all context menu items\r
502                                 editor.config.menu_groups =  items_order_str + ',' + editor.config.menu_groups;\r
503                         else\r
504                                 // Put it down\r
505                                 editor.config.menu_groups = editor.config.menu_groups + ',' +items_order_str;\r
506                 },\r
507 \r
508                 init : function( editor )\r
509                 {\r
510                         var moreSuggestions = {};\r
511                         var mainSuggestions = {};\r
512 \r
513                         // Scayt command.\r
514                         var command = editor.addCommand( commandName, commandDefinition );\r
515 \r
516                         // Add Options dialog.\r
517                         CKEDITOR.dialog.add( commandName, CKEDITOR.getUrl( this.path + 'dialogs/options.js' ) );\r
518                         // read ui tags\r
519                         var confuiTabs = editor.config.scayt_uiTabs || '1,1,1';\r
520                         var uiTabs =[];\r
521                         // string to array convert\r
522                         confuiTabs = confuiTabs.split( ',' );\r
523                         // check array length ! always must be 3 filled with 1 or 0\r
524                         for (var i=0,l=3; i<l; i++)\r
525                         {\r
526                                 var flag = parseInt(confuiTabs[i] || '1' ,10);\r
527                                 uiTabs.push( flag );\r
528                         }\r
529 \r
530                         var menuGroup = 'scaytButton';\r
531                         editor.addMenuGroup( menuGroup );\r
532                         // combine menu items to render\r
533                         var uiMuneItems = {};\r
534 \r
535                         // always added\r
536                         uiMuneItems.scaytToggle =\r
537                                 {\r
538                                         label : editor.lang.scayt.enable,\r
539                                         command : commandName,\r
540                                         group : menuGroup\r
541                                 };\r
542 \r
543                         if (uiTabs[0] == 1)\r
544                                 uiMuneItems.scaytOptions =\r
545                                 {\r
546                                         label : editor.lang.scayt.options,\r
547                                         group : menuGroup,\r
548                                         onClick : function()\r
549                                         {\r
550                                                 openPage = 'options';\r
551                                                 editor.openDialog( commandName );\r
552                                         }\r
553                                 };\r
554 \r
555                         if (uiTabs[1] == 1)\r
556                                 uiMuneItems.scaytLangs =\r
557                                 {\r
558                                         label : editor.lang.scayt.langs,\r
559                                         group : menuGroup,\r
560                                         onClick : function()\r
561                                         {\r
562                                                 openPage = 'langs';\r
563                                                 editor.openDialog( commandName );\r
564                                         }\r
565                                 };\r
566                         if (uiTabs[2] == 1)\r
567                                 uiMuneItems.scaytDict =\r
568                                 {\r
569                                         label : editor.lang.scayt.dictionariesTab,\r
570                                         group : menuGroup,\r
571                                         onClick : function()\r
572                                         {\r
573                                                 openPage = 'dictionaries';\r
574                                                 editor.openDialog( commandName );\r
575                                         }\r
576                                 };\r
577                         // always added\r
578                         uiMuneItems.scaytAbout =\r
579                                 {\r
580                                         label : editor.lang.scayt.about,\r
581                                         group : menuGroup,\r
582                                         onClick : function()\r
583                                         {\r
584                                                 openPage = 'about';\r
585                                                 editor.openDialog( commandName );\r
586                                         }\r
587                                 }\r
588                         ;\r
589 \r
590                         uiTabs[3] = 1; // about us tab is always on\r
591                         plugin.uiTabs = uiTabs;\r
592 \r
593                         editor.addMenuItems( uiMuneItems );\r
594 \r
595                                 editor.ui.add( 'Scayt', CKEDITOR.UI_MENUBUTTON,\r
596                                         {\r
597                                                 label : editor.lang.scayt.title,\r
598                                                 title : CKEDITOR.env.opera ? editor.lang.scayt.opera_title : editor.lang.scayt.title,\r
599                                                 className : 'cke_button_scayt',\r
600                                                 onRender: function()\r
601                                                 {\r
602                                                         command.on( 'state', function()\r
603                                                         {\r
604                                                                 this.setState( command.state );\r
605                                                         },\r
606                                                         this);\r
607                                                 },\r
608                                                 onMenu : function()\r
609                                                 {\r
610                                                         var isEnabled = plugin.isScaytEnabled( editor );\r
611 \r
612                                                         editor.getMenuItem( 'scaytToggle' ).label = editor.lang.scayt[ isEnabled ? 'disable' : 'enable' ];\r
613 \r
614                                                         return {\r
615                                                                 scaytToggle  : CKEDITOR.TRISTATE_OFF,\r
616                                                                 scaytOptions : isEnabled && plugin.uiTabs[0] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED,\r
617                                                                 scaytLangs   : isEnabled && plugin.uiTabs[1] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED,\r
618                                                                 scaytDict    : isEnabled && plugin.uiTabs[2] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED,\r
619                                                                 scaytAbout   : isEnabled && plugin.uiTabs[3] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED\r
620                                                         };\r
621                                                 }\r
622                                         });\r
623 \r
624                         // If the "contextmenu" plugin is loaded, register the listeners.\r
625                         if ( editor.contextMenu && editor.addMenuItems )\r
626                         {\r
627                                 editor.contextMenu.addListener( function(  )\r
628                                         {\r
629                                                 if ( !plugin.isScaytEnabled( editor ) )\r
630                                                         return null;\r
631 \r
632                                                 var scayt_control = plugin.getScayt( editor ),\r
633                                                         node = scayt_control.getScaytNode();\r
634 \r
635                                                 if ( !node )\r
636                                                         return null;\r
637 \r
638                                                         var word = scayt_control.getWord( node );\r
639 \r
640                                                 if ( !word )\r
641                                                         return null;\r
642 \r
643                                                 var sLang = scayt_control.getLang(),\r
644                                                         _r = {},\r
645                                                         items_suggestion = window.scayt.getSuggestion( word, sLang );\r
646                                                 if ( !items_suggestion || !items_suggestion.length )\r
647                                                         return null;\r
648                                                 // Remove unused commands and menuitems\r
649                                                 for ( i in moreSuggestions )\r
650                                                 {\r
651                                                         delete editor._.menuItems[ i ];\r
652                                                         delete editor._.commands[ i ];\r
653                                                 }\r
654                                                 for ( i in mainSuggestions )\r
655                                                 {\r
656                                                         delete editor._.menuItems[ i ];\r
657                                                         delete editor._.commands[ i ];\r
658                                                 }\r
659                                                 moreSuggestions = {};           // Reset items.\r
660                                                 mainSuggestions = {};\r
661 \r
662                                                 var moreSuggestionsUnable = editor.config.scayt_moreSuggestions || 'on';\r
663                                                 var moreSuggestionsUnableAdded = false;\r
664 \r
665                                                 var maxSuggestions = editor.config.scayt_maxSuggestions;\r
666                                                 ( typeof maxSuggestions != 'number' ) && ( maxSuggestions = 5 );\r
667                                                 !maxSuggestions && ( maxSuggestions = items_suggestion.length );\r
668 \r
669                                                 var contextCommands = editor.config.scayt_contextCommands || 'all';\r
670                                                 contextCommands = contextCommands.split( '|' );\r
671 \r
672                                                 for ( var i = 0, l = items_suggestion.length; i < l; i += 1 )\r
673                                                 {\r
674                                                         var commandName = 'scayt_suggestion_' + items_suggestion[i].replace( ' ', '_' );\r
675                                                         var exec = ( function( el, s )\r
676                                                                 {\r
677                                                                         return {\r
678                                                                                 exec: function()\r
679                                                                                 {\r
680                                                                                         scayt_control.replace(el, s);\r
681                                                                                 }\r
682                                                                         };\r
683                                                                 })( node, items_suggestion[i] );\r
684 \r
685                                                         if ( i < maxSuggestions )\r
686                                                         {\r
687                                                                 addButtonCommand( editor, 'button_' + commandName, items_suggestion[i],\r
688                                                                         commandName, exec, 'scayt_suggest', i + 1 );\r
689                                                                 _r[ commandName ] = CKEDITOR.TRISTATE_OFF;\r
690                                                                 mainSuggestions[ commandName ] = CKEDITOR.TRISTATE_OFF;\r
691                                                         }\r
692                                                         else if ( moreSuggestionsUnable == 'on' )\r
693                                                         {\r
694                                                                 addButtonCommand( editor, 'button_' + commandName, items_suggestion[i],\r
695                                                                         commandName, exec, 'scayt_moresuggest', i + 1 );\r
696                                                                 moreSuggestions[ commandName ] = CKEDITOR.TRISTATE_OFF;\r
697                                                                 moreSuggestionsUnableAdded = true;\r
698                                                         }\r
699                                                 }\r
700 \r
701                                                 if ( moreSuggestionsUnableAdded )\r
702                                                 {\r
703                                                         // Register the More suggestions group;\r
704                                                         editor.addMenuItem( 'scayt_moresuggest',\r
705                                                         {\r
706                                                                 label : editor.lang.scayt.moreSuggestions,\r
707                                                                 group : 'scayt_moresuggest',\r
708                                                                 order : 10,\r
709                                                                 getItems : function()\r
710                                                                 {\r
711                                                                         return moreSuggestions;\r
712                                                                 }\r
713                                                         });\r
714                                                         mainSuggestions[ 'scayt_moresuggest' ] = CKEDITOR.TRISTATE_OFF;\r
715                                                 }\r
716 \r
717                                                 if ( in_array( 'all', contextCommands )  || in_array( 'ignore', contextCommands)  )\r
718                                                 {\r
719                                                         var ignore_command = {\r
720                                                                 exec: function(){\r
721                                                                         scayt_control.ignore( node );\r
722                                                                 }\r
723                                                         };\r
724                                                         addButtonCommand( editor, 'ignore', editor.lang.scayt.ignore, 'scayt_ignore', ignore_command, 'scayt_control', 1 );\r
725                                                         mainSuggestions[ 'scayt_ignore' ] = CKEDITOR.TRISTATE_OFF;\r
726                                                 }\r
727 \r
728                                                 if ( in_array( 'all', contextCommands )  || in_array( 'ignoreall', contextCommands ) )\r
729                                                 {\r
730                                                         var ignore_all_command = {\r
731                                                                 exec: function(){\r
732                                                                         scayt_control.ignoreAll( node );\r
733                                                                 }\r
734                                                         };\r
735                                                         addButtonCommand(editor, 'ignore_all', editor.lang.scayt.ignoreAll, 'scayt_ignore_all', ignore_all_command, 'scayt_control', 2);\r
736                                                         mainSuggestions['scayt_ignore_all'] = CKEDITOR.TRISTATE_OFF;\r
737                                                 }\r
738 \r
739                                                 if ( in_array( 'all', contextCommands )  || in_array( 'add', contextCommands ) )\r
740                                                 {\r
741                                                         var addword_command = {\r
742                                                                 exec: function(){\r
743                                                                         window.scayt.addWordToUserDictionary( node );\r
744                                                                 }\r
745                                                         };\r
746                                                         addButtonCommand(editor, 'add_word', editor.lang.scayt.addWord, 'scayt_add_word', addword_command, 'scayt_control', 3);\r
747                                                         mainSuggestions['scayt_add_word'] = CKEDITOR.TRISTATE_OFF;\r
748                                                 }\r
749 \r
750                                                 if ( scayt_control.fireOnContextMenu )\r
751                                                         scayt_control.fireOnContextMenu( editor );\r
752 \r
753                                                 return mainSuggestions;\r
754                                         });\r
755                         }\r
756 \r
757                         var showInitialState = function()\r
758                                 {\r
759                                         editor.removeListener( 'showScaytState', showInitialState );\r
760 \r
761                                         if ( !CKEDITOR.env.opera )\r
762                                                 command.setState( plugin.isScaytEnabled( editor ) ? CKEDITOR.TRISTATE_ON : CKEDITOR.TRISTATE_OFF );\r
763                                         else\r
764                                                 command.setState( CKEDITOR.TRISTATE_DISABLED );\r
765                                 };\r
766 \r
767                         editor.on( 'showScaytState', showInitialState );\r
768 \r
769                         if ( CKEDITOR.env.opera )\r
770                         {\r
771                                 editor.on( 'instanceReady', function()\r
772                                 {\r
773                                         showInitialState();\r
774                                 });\r
775                         }\r
776 \r
777                         // Start plugin\r
778                         if ( editor.config.scayt_autoStartup )\r
779                         {\r
780                                 editor.on( 'instanceReady', function()\r
781                                 {\r
782                                         plugin.loadEngine( editor );\r
783                                 });\r
784                         }\r
785                 },\r
786 \r
787                 afterInit : function( editor )\r
788                 {\r
789                         // Prevent word marker line from displaying in elements path and been removed when cleaning format. (#3570) (#4125)\r
790                         var elementsPathFilters,\r
791                                         scaytFilter = function( element )\r
792                                         {\r
793                                                 if ( element.hasAttribute( 'scaytid' ) )\r
794                                                         return false;\r
795                                         };\r
796 \r
797                         if ( editor._.elementsPath && ( elementsPathFilters = editor._.elementsPath.filters ) )\r
798                                 elementsPathFilters.push( scaytFilter );\r
799 \r
800                         editor.addRemoveFormatFilter && editor.addRemoveFormatFilter( scaytFilter );\r
801 \r
802                 }\r
803         });\r
804 })();\r
805 \r
806 /**\r
807  * If enabled (true), turns on SCAYT automatically after loading the editor.\r
808  * @name CKEDITOR.config.scayt_autoStartup\r
809  * @type Boolean\r
810  * @default false\r
811  * @example\r
812  * config.scayt_autoStartup = true;\r
813  */\r
814 \r
815 /**\r
816  * Defines the number of SCAYT suggestions to show in the main context menu.\r
817  * The possible values are:\r
818  * <ul>\r
819  *      <li>0 (zero): All suggestions are displayed in the main context menu.</li>\r
820  *      <li>Positive number: The maximum number of suggestions to shown in context\r
821  *              menu. Other entries will be shown in "More Suggestions" sub-menu.</li>\r
822  *      <li>Negative number: No suggestions are shown in the main context menu. All\r
823  *              entries will be listed in the "Suggestions" sub-menu.</li>\r
824  * </ul>\r
825  * @name CKEDITOR.config.scayt_maxSuggestions\r
826  * @type Number\r
827  * @default 5\r
828  * @example\r
829  * // Display only three suggestions in the main context menu.\r
830  * config.scayt_maxSuggestions = 3;\r
831  * @example\r
832  * // Do not show the suggestions directly.\r
833  * config.scayt_maxSuggestions = -1;\r
834  */\r
835 \r
836 /**\r
837  * Sets the customer ID for SCAYT. Required for migration from free version\r
838  * with banner to paid version.\r
839  * @name CKEDITOR.config.scayt_customerid\r
840  * @type String\r
841  * @default ''\r
842  * @example\r
843  * // Load SCAYT using my customer ID.\r
844  * config.scayt_customerid  = 'your-encrypted-customer-id';\r
845  */\r
846 \r
847 /**\r
848  * Enables/disables the "More Suggestions" sub-menu in the context menu.\r
849  * The possible values are "on" or "off".\r
850  * @name CKEDITOR.config.scayt_moreSuggestions\r
851  * @type String\r
852  * @default 'on'\r
853  * @example\r
854  * // Disables the "More Suggestions" sub-menu.\r
855  * config.scayt_moreSuggestions = 'off';\r
856  */\r
857 \r
858 /**\r
859  * Customizes the display of SCAYT context menu commands ("Add Word", "Ignore"\r
860  * and "Ignore All"). It must be a string with one or more of the following\r
861  * words separated by a pipe ("|"):\r
862  * <ul>\r
863  *      <li>"off": disables all options.</li>\r
864  *      <li>"all": enables all options.</li>\r
865  *      <li>"ignore": enables the "Ignore" option.</li>\r
866  *      <li>"ignoreall": enables the "Ignore All" option.</li>\r
867  *      <li>"add": enables the "Add Word" option.</li>\r
868  * </ul>\r
869  * @name CKEDITOR.config.scayt_contextCommands\r
870  * @type String\r
871  * @default 'all'\r
872  * @example\r
873  * // Show only "Add Word" and "Ignore All" in the context menu.\r
874  * config.scayt_contextCommands = 'add|ignoreall';\r
875  */\r
876 \r
877 /**\r
878  * Sets the default spellchecking language for SCAYT.\r
879  * @name CKEDITOR.config.scayt_sLang\r
880  * @type String\r
881  * @default 'en_US'\r
882  * @example\r
883  * // Sets SCAYT to German.\r
884  * config.scayt_sLang = 'de_DE';\r
885  */\r
886 \r
887 /**\r
888  * Sets the visibility of the SCAYT tabs in the settings dialog and toolbar\r
889  * button. The value must contain a "1" (enabled) or "0" (disabled) number for\r
890  * each of the following entries, in this precise order, separated by a\r
891  * comma (","): "Options", "Languages" and "Dictionary".\r
892  * @name CKEDITOR.config.scayt_uiTabs\r
893  * @type String\r
894  * @default '1,1,1'\r
895  * @example\r
896  * // Hide the "Languages" tab.\r
897  * config.scayt_uiTabs = '1,0,1';\r
898  */\r
899 \r
900 \r
901 /**\r
902  * Set the URL to SCAYT core. Required to switch to licensed version of SCAYT application.\r
903  * Further details at http://wiki.spellchecker.net/doku.php?id=3rd:wysiwyg:fckeditor:wscckf3l .\r
904  * @name CKEDITOR.config.scayt_srcUrl\r
905  * @type String\r
906  * @default ''\r
907  * @example\r
908  * config.scayt_srcUrl = "http://my-host/spellcheck/lf/scayt/scayt.js";\r
909  */\r
910 \r
911 /**\r
912  * Links SCAYT to custom dictionaries. It's a string containing dictionary ids\r
913  * separared by commas (","). Available only for licensed version.\r
914  * Further details at http://wiki.spellchecker.net/doku.php?id=custom_dictionary_support .\r
915  * @name CKEDITOR.config.scayt_customDictionaryIds\r
916  * @type String\r
917  * @default ''\r
918  * @example\r
919  * config.scayt_customDictionaryIds = '3021,3456,3478"';\r
920  */\r
921 \r
922 /**\r
923  * Makes it possible to activate a custom dictionary on SCAYT. The user\r
924  * dictionary name must be used. Available only for licensed version.\r
925  * @name CKEDITOR.config.scayt_userDictionaryName\r
926  * @type String\r
927  * @default ''\r
928  * @example\r
929  * config.scayt_userDictionaryName = 'MyDictionary';\r
930  */\r
931 \r
932 /**\r
933  * Makes it possible to place the SCAYT context menu items above others.\r
934  * @name CKEDITOR.config.scayt_contextMenuOntop\r
935  * @type Boolean\r
936  * @default false\r
937  * @example\r
938  * config.scayt_contextMenuOntop = true;\r
939  */\r
940 \r
941 /**\r
942  * Define order of placing of SCAYT context menu items by groups.\r
943  * It must be a string with one or more of the following\r
944  * words separated by a pipe ("|"):\r
945  * <ul>\r
946  *     <li>'suggest'     - main suggestion word list,</li>\r
947  *     <li>'moresuggest' - more suggestions word list,</li>\r
948  *     <li>'control'     - SCAYT commands, such as 'Ignore' and 'Add Word'</li>\r
949  * </ul>\r
950  *\r
951  * @name CKEDITOR.config.scayt_contextMenuItemsOrder\r
952  * @type String\r
953  * @default 'suggest|moresuggest|control'\r
954  * @example\r
955  * config.scayt_contextMenuItemsOrder = 'moresuggest|control|suggest';\r
956  */\r