]> code.citadel.org Git - citadel.git/blobdiff - webcit/tiny_mce/plugins/iespell/editor_plugin_src.js
re-added binary
[citadel.git] / webcit / tiny_mce / plugins / iespell / editor_plugin_src.js
diff --git a/webcit/tiny_mce/plugins/iespell/editor_plugin_src.js b/webcit/tiny_mce/plugins/iespell/editor_plugin_src.js
new file mode 100644 (file)
index 0000000..c9ff1d0
--- /dev/null
@@ -0,0 +1,47 @@
+/* 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
+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
+\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
+\r
+       return "";\r
+}\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
+\r
+               return true;\r
+       }\r
+\r
+       // Pass to next handler in chain\r
+       return false;\r
+}
\ No newline at end of file