]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/tinymce/themes/advanced/jscripts/source_editor.js
Wordpress 2.3.2-scripts
[autoinstalls/wordpress.git] / wp-includes / js / tinymce / themes / advanced / jscripts / source_editor.js
index cb5704f2059eee7e6e79354e2cbe345d3caccc96..83648be49c273411cad7bc0c9d89e6613bacbb02 100644 (file)
@@ -3,29 +3,35 @@ function saveContent() {
        tinyMCE.closeWindow(window);
 }
 
-// Fixes some charcode issues
-function fixContent(html) {
-       // WP
-       return html;
-
-       html = html.replace(new RegExp('<(p|hr|table|tr|td|ol|ul|object|embed|li|blockquote)', 'gi'),'\n<$1');
-       html = html.replace(new RegExp('<\/(p|ol|ul|li|table|tr|td|blockquote|object)>', 'gi'),'</$1>\n');
-       html = tinyMCE.regexpReplace(html, '<br />','<br />\n','gi');
-       html = tinyMCE.regexpReplace(html, '\n\n','\n','gi');
-       return html;
-}
-
 function onLoadInit() {
        tinyMCEPopup.resizeToInnerSize();
 
-       document.forms[0].htmlSource.value = fixContent(tinyMCE.getContent(tinyMCE.getWindowArg('editor_id')));
+       // Remove Gecko spellchecking
+       if (tinyMCE.isGecko)
+               document.body.spellcheck = tinyMCE.getParam("gecko_spellcheck");
+
+       document.getElementById('htmlSource').value = tinyMCE.getContent(tinyMCE.getWindowArg('editor_id'));
+
        resizeInputs();
-       setWrap('off');
+
+       if (tinyMCE.getParam("theme_advanced_source_editor_wrap", true)) {
+               setWrap('soft');
+               document.getElementById('wraped').checked = true;
+       }
 }
 
 function setWrap(val) {
-       // hard soft off
-       document.forms[0].htmlSource.wrap = val;
+       var s = document.getElementById('htmlSource');
+
+       s.wrap = val;
+
+       if (tinyMCE.isGecko || tinyMCE.isOpera) {
+               var v = s.value;
+               var n = s.cloneNode(false);
+               n.setAttribute("wrap", val);
+               s.parentNode.replaceChild(n, s);
+               n.value = v;
+       }
 }
 
 function toggleWordWrap(elm) {
@@ -38,19 +44,16 @@ function toggleWordWrap(elm) {
 var wHeight=0, wWidth=0, owHeight=0, owWidth=0;
 
 function resizeInputs() {
+       var el = document.getElementById('htmlSource');
+
        if (!tinyMCE.isMSIE) {
-                wHeight = self.innerHeight-80;
-                wWidth = self.innerWidth-16;
+                wHeight = self.innerHeight - 60;
+                wWidth = self.innerWidth - 16;
        } else {
-                wHeight = document.body.clientHeight - 80;
+                wHeight = document.body.clientHeight - 60;
                 wWidth = document.body.clientWidth - 16;
        }
 
-       document.forms[0].htmlSource.style.height = Math.abs(wHeight) + 'px';
-       document.forms[0].htmlSource.style.width  = Math.abs(wWidth) + 'px';
-}
-
-function renderWordWrap() {
-       if (tinyMCE.isMSIE)
-               document.write('<input type="checkbox" name="wraped" id="wraped" onclick="toggleWordWrap(this);" class="wordWrapCode" /><label for="wraped">{$lang_theme_code_wordwrap}</label>');
+       el.style.height = Math.abs(wHeight) + 'px';
+       el.style.width  = Math.abs(wWidth) + 'px';
 }