src/crypto.c: possible fix for memory leak related
[citadel.git] / webcit / tiny_mce / plugins / iespell / editor_plugin_src.js
index 0c0884d026c314b9fe8b8daf50aa07b399b1f4c0..1b09fb72df89674be03e0714c565ce54cf111d91 100644 (file)
@@ -1,47 +1,49 @@
-/* Import plugin specific language pack */
-tinyMCE.importPluginLanguagePack('iespell', 'cs,el,en,fr_ca,it,ko,sv,zh_cn,fr,de,pl,pt_br,nl');
-
-function TinyMCE_iespell_getInfo() {
-       return {
-               longname : 'IESpell',
-               author : 'Moxiecode Systems',
-               authorurl : 'http://tinymce.moxiecode.com',
-               infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_iespell.html',
-               version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
-       };
-};
-
-/**
- * Returns the HTML contents of the iespell control.
- */
-function TinyMCE_iespell_getControlHTML(control_name) {
-       // Is it the iespell control and is the brower MSIE.
-       if (control_name == "iespell" && tinyMCE.isMSIE)
-               return '<a href="javascript:tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceIESpell\');" 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>';
-
-       return "";
-}
-
-/**
- * Executes the mceIESpell command.
- */
-function TinyMCE_iespell_execCommand(editor_id, element, command, user_interface, value) {
-       // Handle ieSpellCommand
-       if (command == "mceIESpell") {
-               try {
-                       var ieSpell = new ActiveXObject("ieSpell.ieSpellExtension");
-                       ieSpell.CheckDocumentNode(tinyMCE.getInstanceById(editor_id).contentDocument.documentElement);
-               } catch (e) {
-                       if (e.number == -2146827859) {
-                               if (confirm(tinyMCE.getLang("lang_iespell_download", "", true)))
-                                       window.open('http://www.iespell.com/download.php', 'ieSpellDownload', '');
-                       } else
-                               alert("Error Loading ieSpell: Exception " + e.number);
-               }
-
-               return true;
-       }
-
-       // Pass to next handler in chain
-       return false;
+/* 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,nb,ru,ru_KOI8-R,ru_UTF-8,nn,fi,cy,es,is,zh_tw,zh_tw_utf8,sk');\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 && !tinyMCE.isOpera)) {\r
+               var cmd = 'tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceIESpell\');return false;';\r
+               return '<a href="javascript:' + cmd + '" onclick="' + cmd + '" 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
+\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