]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/tinymce/utils/form_utils.js
Wordpress 2.3.2
[autoinstalls/wordpress.git] / wp-includes / js / tinymce / utils / form_utils.js
index 639b681149cc5659fde1f53cfda564197fbea0c4..110a720e03db872580cda078400ee30218215f6c 100644 (file)
-/**\r
- * $RCSfile: form_utils.js,v $\r
- * $Revision: 1.5 $\r
- * $Date: 2005/10/25 16:01:51 $\r
- *\r
- * Various form utilitiy functions.\r
- *\r
- * @author Moxiecode\r
- * @copyright Copyright © 2005, Moxiecode Systems AB, All rights reserved.\r
- */\r
-\r
-function getColorPickerHTML(id, target_form_element) {\r
-       var html = "";\r
-\r
-       html += '<a id="' + id + '_link" href="javascript:void(0);" onkeydown="pickColor(event,\'' + target_form_element +'\');" onmousedown="pickColor(event,\'' + target_form_element +'\');return false;">';\r
-       html += '<img id="' + id + '" src="../../themes/advanced/images/color.gif"';\r
-       html += ' onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');"';\r
-       html += ' onmouseout="tinyMCE.restoreClass(this);"';\r
-       html += ' onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');"';\r
-       html += ' width="20" height="16" border="0" title="' + tinyMCE.getLang('lang_browse') + '"';\r
-       html += ' class="mceButtonNormal" alt="' + tinyMCE.getLang('lang_browse') + '" /></a>';\r
-\r
-       return html;\r
-}\r
-\r
-function pickColor(e, target_form_element) {\r
-       if ((e.keyCode == 32 || e.keyCode == 13) || e.type == "mousedown")\r
-               tinyMCEPopup.pickColor(e, target_form_element);\r
-}\r
-\r
-function updateColor(img_id, form_element_id) {\r
-       document.getElementById(img_id).style.backgroundColor = document.forms[0].elements[form_element_id].value;\r
-}\r
-\r
-function setBrowserDisabled(id, state) {\r
-       var img = document.getElementById(id);\r
-       var lnk = document.getElementById(id + "_link");\r
-\r
-       if (lnk) {\r
-               if (state) {\r
-                       lnk.setAttribute("realhref", lnk.getAttribute("href"));\r
-                       lnk.removeAttribute("href");\r
-                       tinyMCE.switchClass(img, 'mceButtonDisabled', true);\r
-               } else {\r
-                       lnk.setAttribute("href", lnk.getAttribute("realhref"));\r
-                       tinyMCE.switchClass(img, 'mceButtonNormal', false);\r
-               }\r
-       }\r
-}\r
-\r
-function getBrowserHTML(id, target_form_element, type, prefix) {\r
-       var option = prefix + "_" + type + "_browser_callback";\r
-       var cb = tinyMCE.getParam(option, tinyMCE.getParam("file_browser_callback"));\r
-       if (cb == null)\r
-               return "";\r
-\r
-       var html = "";\r
-\r
-       html += '<a id="' + id + '_link" href="javascript:openBrower(\'' + id + '\',\'' + target_form_element + '\', \'' + type + '\',\'' + option + '\');" onmousedown="return false;">';\r
-       html += '<img id="' + id + '" src="../../themes/advanced/images/browse.gif"';\r
-       html += ' onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');"';\r
-       html += ' onmouseout="tinyMCE.restoreClass(this);"';\r
-       html += ' onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');"';\r
-       html += ' width="20" height="18" border="0" title="' + tinyMCE.getLang('lang_browse') + '"';\r
-       html += ' class="mceButtonNormal" alt="' + tinyMCE.getLang('lang_browse') + '" /></a>';\r
-\r
-       return html;\r
-}\r
-\r
-function openBrower(img_id, target_form_element, type, option) {\r
-       var img = document.getElementById(img_id);\r
-\r
-       if (img.className != "mceButtonDisabled")\r
-               tinyMCEPopup.openBrowser(target_form_element, type, option);\r
-}\r
-\r
-function selectByValue(form_obj, field_name, value, add_custom) {\r
-       if (!form_obj || !form_obj.elements[field_name])\r
-               return;\r
-\r
-       var sel = form_obj.elements[field_name];\r
-\r
-       var found = false;\r
-       for (var i=0; i<sel.options.length; i++) {\r
-               var option = sel.options[i];\r
-\r
-               if (option.value == value) {\r
-                       option.selected = true;\r
-                       found = true;\r
-               } else\r
-                       option.selected = false;\r
-       }\r
-\r
-       if (!found && add_custom && value != '') {\r
-               var option = new Option('Value: ' + value, value);\r
-               option.selected = true;\r
-               sel.options[sel.options.length] = option;\r
-       }\r
-\r
-       return found;\r
-}\r
-\r
-function getSelectValue(form_obj, field_name) {\r
-       var elm = form_obj.elements[field_name];\r
-\r
-       if (elm == null || elm.options == null)\r
-               return "";\r
-\r
-       return elm.options[elm.selectedIndex].value;\r
-}\r
-\r
-function addClassesToList(list_id, specific_option) {\r
-return;\r
-       // Setup class droplist\r
-       var styleSelectElm = document.getElementById(list_id);\r
-       var styles = tinyMCE.getParam('theme_advanced_styles', false);\r
-       styles = tinyMCE.getParam(specific_option, styles);\r
-\r
-       if (styles) {\r
-               var stylesAr = styles.split(';');\r
-\r
-               for (var i=0; i<stylesAr.length; i++) {\r
-                       if (stylesAr != "") {\r
-                               var key, value;\r
-\r
-                               key = stylesAr[i].split('=')[0];\r
-                               value = stylesAr[i].split('=')[1];\r
-\r
-                               styleSelectElm.options[styleSelectElm.length] = new Option(key, value);\r
-                       }\r
-               }\r
-       } else {\r
-               // Use auto impored classes\r
-               var csses = tinyMCE.getCSSClasses(tinyMCE.getWindowArg('editor_id'));\r
-               for (var i=0; i<csses.length; i++)\r
-                       styleSelectElm.options[styleSelectElm.length] = new Option(csses[i], csses[i]);\r
-       }\r
-}\r
-\r
-function isVisible(element_id) {\r
-       var elm = document.getElementById(element_id);\r
-\r
-       return elm && elm.style.display != "none";\r
-}\r
-\r
-function convertRGBToHex(col) {\r
-       var re = new RegExp("rgb\\s*\\(\\s*([0-9]+).*,\\s*([0-9]+).*,\\s*([0-9]+).*\\)", "gi");\r
-\r
-       var rgb = col.replace(re, "$1,$2,$3").split(',');\r
-       if (rgb.length == 3) {\r
-               r = parseInt(rgb[0]).toString(16);\r
-               g = parseInt(rgb[1]).toString(16);\r
-               b = parseInt(rgb[2]).toString(16);\r
-\r
-               r = r.length == 1 ? '0' + r : r;\r
-               g = g.length == 1 ? '0' + g : g;\r
-               b = b.length == 1 ? '0' + b : b;\r
-\r
-               return "#" + r + g + b;\r
-       }\r
-\r
-       return col;\r
-}\r
-\r
-function convertHexToRGB(col) {\r
-       if (col.indexOf('#') != -1) {\r
-               col = col.replace(new RegExp('[^0-9A-F]', 'gi'), '');\r
-\r
-               r = parseInt(col.substring(0, 2), 16);\r
-               g = parseInt(col.substring(2, 4), 16);\r
-               b = parseInt(col.substring(4, 6), 16);\r
-\r
-               return "rgb(" + r + "," + g + "," + b + ")";\r
-       }\r
-\r
-       return col;\r
-}\r
-\r
-function trimSize(size) {\r
-       return size.replace(new RegExp('[^0-9%]', 'gi'), '');\r
-}\r
-\r
-function getCSSSize(size) {\r
-       size = trimSize(size);\r
-\r
-       if (size == "")\r
-               return "";\r
-\r
-       return size.indexOf('%') != -1 ? size : size + "px";\r
-}\r
-\r
-function getStyle(elm, attrib, style) {\r
-       var val = tinyMCE.getAttrib(elm, attrib);\r
-\r
-       if (val != '')\r
-               return '' + val;\r
-\r
-       if (typeof(style) == 'undefined')\r
-               style = attrib;\r
-\r
-       val = eval('elm.style.' + style);\r
-\r
-       return val == null ? '' : '' + val;\r
-}\r
+/**
+ * $Id: form_utils.js 162 2007-01-03 16:16:52Z spocke $
+ *
+ * Various form utilitiy functions.
+ *
+ * @author Moxiecode
+ * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
+ */
+
+var themeBaseURL = tinyMCE.baseURL + '/themes/' + tinyMCE.getParam("theme");
+
+function getColorPickerHTML(id, target_form_element) {
+       var h = "";
+
+       h += '<a id="' + id + '_link" href="javascript:void(0);" onkeydown="pickColor(event,\'' + target_form_element +'\');" onmousedown="pickColor(event,\'' + target_form_element +'\');return false;">';
+       h += '<img id="' + id + '" src="' + themeBaseURL + '/images/color.gif"';
+       h += ' onmouseover="this.className=\'mceButtonOver\'"';
+       h += ' onmouseout="this.className=\'mceButtonNormal\'"';
+       h += ' onmousedown="this.className=\'mceButtonDown\'"';
+       h += ' width="20" height="16" border="0" title="' + tinyMCE.getLang('lang_browse') + '"';
+       h += ' class="mceButtonNormal" alt="' + tinyMCE.getLang('lang_browse') + '" /></a>';
+
+       return h;
+}
+
+function pickColor(e, target_form_element) {
+       if ((e.keyCode == 32 || e.keyCode == 13) || e.type == "mousedown")
+               tinyMCEPopup.pickColor(e, target_form_element);
+}
+
+function updateColor(img_id, form_element_id) {
+       document.getElementById(img_id).style.backgroundColor = document.forms[0].elements[form_element_id].value;
+}
+
+function setBrowserDisabled(id, state) {
+       var img = document.getElementById(id);
+       var lnk = document.getElementById(id + "_link");
+
+       if (lnk) {
+               if (state) {
+                       lnk.setAttribute("realhref", lnk.getAttribute("href"));
+                       lnk.removeAttribute("href");
+                       tinyMCE.switchClass(img, 'mceButtonDisabled', true);
+               } else {
+                       lnk.setAttribute("href", lnk.getAttribute("realhref"));
+                       tinyMCE.switchClass(img, 'mceButtonNormal', false);
+               }
+       }
+}
+
+function getBrowserHTML(id, target_form_element, type, prefix) {
+       var option = prefix + "_" + type + "_browser_callback";
+       var cb = tinyMCE.getParam(option, tinyMCE.getParam("file_browser_callback"));
+       if (cb == null)
+               return "";
+
+       var html = "";
+
+       html += '<a id="' + id + '_link" href="javascript:openBrower(\'' + id + '\',\'' + target_form_element + '\', \'' + type + '\',\'' + option + '\');" onmousedown="return false;">';
+       html += '<img id="' + id + '" src="' + themeBaseURL + '/images/browse.gif"';
+       html += ' onmouseover="this.className=\'mceButtonOver\';"';
+       html += ' onmouseout="this.className=\'mceButtonNormal\';"';
+       html += ' onmousedown="this.className=\'mceButtonDown\';"';
+       html += ' width="20" height="18" border="0" title="' + tinyMCE.getLang('lang_browse') + '"';
+       html += ' class="mceButtonNormal" alt="' + tinyMCE.getLang('lang_browse') + '" /></a>';
+
+       return html;
+}
+
+function openBrower(img_id, target_form_element, type, option) {
+       var img = document.getElementById(img_id);
+
+       if (img.className != "mceButtonDisabled")
+               tinyMCEPopup.openBrowser(target_form_element, type, option);
+}
+
+function selectByValue(form_obj, field_name, value, add_custom, ignore_case) {
+       if (!form_obj || !form_obj.elements[field_name])
+               return;
+
+       var sel = form_obj.elements[field_name];
+
+       var found = false;
+       for (var i=0; i<sel.options.length; i++) {
+               var option = sel.options[i];
+
+               if (option.value == value || (ignore_case && option.value.toLowerCase() == value.toLowerCase())) {
+                       option.selected = true;
+                       found = true;
+               } else
+                       option.selected = false;
+       }
+
+       if (!found && add_custom && value != '') {
+               var option = new Option(value, value);
+               option.selected = true;
+               sel.options[sel.options.length] = option;
+               sel.selectedIndex = sel.options.length - 1;
+       }
+
+       return found;
+}
+
+function getSelectValue(form_obj, field_name) {
+       var elm = form_obj.elements[field_name];
+
+       if (elm == null || elm.options == null)
+               return "";
+
+       return elm.options[elm.selectedIndex].value;
+}
+
+function addSelectValue(form_obj, field_name, name, value) {
+       var s = form_obj.elements[field_name];
+       var o = new Option(name, value);
+       s.options[s.options.length] = o;
+}
+
+function addClassesToList(list_id, specific_option) {
+       // Setup class droplist
+       var styleSelectElm = document.getElementById(list_id);
+       var styles = tinyMCE.getParam('theme_advanced_styles', false);
+       styles = tinyMCE.getParam(specific_option, styles);
+
+       if (styles) {
+               var stylesAr = styles.split(';');
+
+               for (var i=0; i<stylesAr.length; i++) {
+                       if (stylesAr != "") {
+                               var key, value;
+
+                               key = stylesAr[i].split('=')[0];
+                               value = stylesAr[i].split('=')[1];
+
+                               styleSelectElm.options[styleSelectElm.length] = new Option(key, value);
+                       }
+               }
+       } else {
+               // Use auto impored classes
+               var csses = tinyMCE.getCSSClasses(tinyMCE.getWindowArg('editor_id'));
+               for (var i=0; i<csses.length; i++)
+                       styleSelectElm.options[styleSelectElm.length] = new Option(csses[i], csses[i]);
+       }
+}
+
+function isVisible(element_id) {
+       var elm = document.getElementById(element_id);
+
+       return elm && elm.style.display != "none";
+}
+
+function convertRGBToHex(col) {
+       var re = new RegExp("rgb\\s*\\(\\s*([0-9]+).*,\\s*([0-9]+).*,\\s*([0-9]+).*\\)", "gi");
+
+       var rgb = col.replace(re, "$1,$2,$3").split(',');
+       if (rgb.length == 3) {
+               r = parseInt(rgb[0]).toString(16);
+               g = parseInt(rgb[1]).toString(16);
+               b = parseInt(rgb[2]).toString(16);
+
+               r = r.length == 1 ? '0' + r : r;
+               g = g.length == 1 ? '0' + g : g;
+               b = b.length == 1 ? '0' + b : b;
+
+               return "#" + r + g + b;
+       }
+
+       return col;
+}
+
+function convertHexToRGB(col) {
+       if (col.indexOf('#') != -1) {
+               col = col.replace(new RegExp('[^0-9A-F]', 'gi'), '');
+
+               r = parseInt(col.substring(0, 2), 16);
+               g = parseInt(col.substring(2, 4), 16);
+               b = parseInt(col.substring(4, 6), 16);
+
+               return "rgb(" + r + "," + g + "," + b + ")";
+       }
+
+       return col;
+}
+
+function trimSize(size) {
+       return size.replace(new RegExp('[^0-9%]', 'gi'), '');
+}
+
+function getCSSSize(size) {
+       size = trimSize(size);
+
+       if (size == "")
+               return "";
+
+       return size.indexOf('%') != -1 ? size : size + "px";
+}
+
+function getStyle(elm, attrib, style) {
+       var val = tinyMCE.getAttrib(elm, attrib);
+
+       if (val != '')
+               return '' + val;
+
+       if (typeof(style) == 'undefined')
+               style = attrib;
+
+       val = eval('elm.style.' + style);
+
+       return val == null ? '' : '' + val;
+}