]> code.citadel.org Git - citadel.git/blobdiff - webcit/tiny_mce/plugins/iespell/editor_plugin_src.js
Began removing $Id$ tags. This will be an ongoing process.
[citadel.git] / webcit / tiny_mce / plugins / iespell / editor_plugin_src.js
index c9ff1d004bca1de94bde9aabb746f3394a752c7c..af5f36029aa6b118b72cecf5c9ecc835dd341786 100644 (file)
@@ -1,47 +1,48 @@
-/* Import plugin specific language pack */\r
-tinyMCE.importPluginLanguagePack('iespell', 'cs,el,en,fr_ca,it,ko,sv,zh_cn,fr,de,pl,pt_br,nl,da,he,no');\r
+/*\r
+ * Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.\r
+ */\r
 \r
-function TinyMCE_iespell_getInfo() {\r
-       return {\r
-               longname : 'IESpell',\r
-               author : 'Moxiecode Systems',\r
-               authorurl : 'http://tinymce.moxiecode.com',\r
-               infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_iespell.html',\r
-               version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion\r
-       };\r
-};\r
+(function() {\r
+       tinymce.create('tinymce.plugins.IESpell', {\r
+               init : function(ed, url) {\r
+                       var t = this, sp;\r
 \r
-/**\r
- * Returns the HTML contents of the iespell control.\r
- */\r
-function TinyMCE_iespell_getControlHTML(control_name) {\r
-       // Is it the iespell control and is the brower MSIE.\r
-       if (control_name == "iespell" && tinyMCE.isMSIE)\r
-               return '<a href="javascript:tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceIESpell\');" target="_self" onmousedown="return false;"><img id="{$editor_id}_iespell" src="{$pluginurl}/images/iespell.gif" title="{$lang_iespell_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" /></a>';\r
+                       if (!tinymce.isIE)\r
+                               return;\r
 \r
-       return "";\r
-}\r
+                       t.editor = ed;\r
 \r
-/**\r
- * Executes the mceIESpell command.\r
- */\r
-function TinyMCE_iespell_execCommand(editor_id, element, command, user_interface, value) {\r
-       // Handle ieSpellCommand\r
-       if (command == "mceIESpell") {\r
-               try {\r
-                       var ieSpell = new ActiveXObject("ieSpell.ieSpellExtension");\r
-                       ieSpell.CheckDocumentNode(tinyMCE.getInstanceById(editor_id).contentDocument.documentElement);\r
-               } catch (e) {\r
-                       if (e.number == -2146827859) {\r
-                               if (confirm(tinyMCE.getLang("lang_iespell_download", "", true)))\r
-                                       window.open('http://www.iespell.com/download.php', 'ieSpellDownload', '');\r
-                       } else\r
-                               alert("Error Loading ieSpell: Exception " + e.number);\r
-               }\r
+                       // Register commands\r
+                       ed.addCommand('mceIESpell', function() {\r
+                               try {\r
+                                       sp = new ActiveXObject("ieSpell.ieSpellExtension");\r
+                                       sp.CheckDocumentNode(ed.getDoc().documentElement);\r
+                               } catch (e) {\r
+                                       if (e.number == -2146827859) {\r
+                                               ed.windowManager.confirm(ed.getLang("iespell.download"), function(s) {\r
+                                                       if (s)\r
+                                                               window.open('http://www.iespell.com/download.php', 'ieSpellDownload', '');\r
+                                               });\r
+                                       } else\r
+                                               ed.windowManager.alert("Error Loading ieSpell: Exception " + e.number);\r
+                               }\r
+                       });\r
+\r
+                       // Register buttons\r
+                       ed.addButton('iespell', {title : 'iespell.iespell_desc', cmd : 'mceIESpell'});\r
+               },\r
 \r
-               return true;\r
-       }\r
+               getInfo : function() {\r
+                       return {\r
+                               longname : 'IESpell (IE Only)',\r
+                               author : 'Moxiecode Systems AB',\r
+                               authorurl : 'http://tinymce.moxiecode.com',\r
+                               infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell',\r
+                               version : tinymce.majorVersion + "." + tinymce.minorVersion\r
+                       };\r
+               }\r
+       });\r
 \r
-       // Pass to next handler in chain\r
-       return false;\r
-}
\ No newline at end of file
+       // Register plugin\r
+       tinymce.PluginManager.add('iespell', tinymce.plugins.IESpell);\r
+})();\r