src/crypto.c: possible fix for memory leak related
[citadel.git] / webcit / tiny_mce / plugins / emotions / editor_plugin_src.js
index d69f21994329b75fcf35c8e85903746500ba3b07..4517b947953a18fcf8280809ab25b2507823354e 100644 (file)
@@ -1,50 +1,51 @@
-/* Import plugin specific language pack */
-tinyMCE.importPluginLanguagePack('emotions', 'en,sv,zh_cn,cs,fa,fr_ca,fr,de,pl,pt_br,nl,da,he,no,hu');
-
-function TinyMCE_emotions_getInfo() {
-       return {
-               longname : 'Emotions',
-               author : 'Moxiecode Systems',
-               authorurl : 'http://tinymce.moxiecode.com',
-               infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_emotions.html',
-               version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
-       };
-};
-
-/**
- * Returns the HTML contents of the emotions control.
- */
-function TinyMCE_emotions_getControlHTML(control_name) {
-       switch (control_name) {
-               case "emotions":
-                       return '<a href="javascript:tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceEmotion\');" target="_self" onmousedown="return false;"><img id="{$editor_id}_emotions" src="{$pluginurl}/images/emotions.gif" title="{$lang_emotions_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 mceEmotion command.
- */
-function TinyMCE_emotions_execCommand(editor_id, element, command, user_interface, value) {
-       // Handle commands
-       switch (command) {
-               case "mceEmotion":
-                       var template = new Array();
-
-                       template['file'] = '../../plugins/emotions/emotions.htm'; // Relative to theme
-                       template['width'] = 160;
-                       template['height'] = 160;
-
-                       // Language specific width and height addons
-                       template['width'] += tinyMCE.getLang('lang_emotions_delta_width', 0);
-                       template['height'] += tinyMCE.getLang('lang_emotions_delta_height', 0);
-
-                       tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes"});
-
-                       return true;
-       }
-
-       // Pass to next handler in chain
-       return false;
-}
+/* Import plugin specific language pack */\r
+tinyMCE.importPluginLanguagePack('emotions', 'en,sv,zh_cn,cs,fa,fr_ca,fr,de,pl,pt_br,nl,da,he,nb,hu,ru,ru_KOI8-R,ru_UTF-8,nn,es,cy,is,zh_tw,zh_tw_utf8,sk');\r
+\r
+function TinyMCE_emotions_getInfo() {\r
+       return {\r
+               longname : 'Emotions',\r
+               author : 'Moxiecode Systems',\r
+               authorurl : 'http://tinymce.moxiecode.com',\r
+               infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_emotions.html',\r
+               version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion\r
+       };\r
+};\r
+\r
+/**\r
+ * Returns the HTML contents of the emotions control.\r
+ */\r
+function TinyMCE_emotions_getControlHTML(control_name) {\r
+       switch (control_name) {\r
+               case "emotions":\r
+                       var cmd = 'tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceEmotion\');return false;';\r
+                       return '<a href="javascript:' + cmd + '" onclick="' + cmd + '" target="_self" onmousedown="return false;"><img id="{$editor_id}_emotions" src="{$pluginurl}/images/emotions.gif" title="{$lang_emotions_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 mceEmotion command.\r
+ */\r
+function TinyMCE_emotions_execCommand(editor_id, element, command, user_interface, value) {\r
+       // Handle commands\r
+       switch (command) {\r
+               case "mceEmotion":\r
+                       var template = new Array();\r
+\r
+                       template['file'] = '../../plugins/emotions/emotions.htm'; // Relative to theme\r
+                       template['width'] = 160;\r
+                       template['height'] = 160;\r
+\r
+                       // Language specific width and height addons\r
+                       template['width'] += tinyMCE.getLang('lang_emotions_delta_width', 0);\r
+                       template['height'] += tinyMCE.getLang('lang_emotions_delta_height', 0);\r
+\r
+                       tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes"});\r
+\r
+                       return true;\r
+       }\r
+\r
+       // Pass to next handler in chain\r
+       return false;\r
+}\r