X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=roojs-bootstrap-debug.js;h=d417f6c18204f5dbdb1e3199e6e27165edf08335;hb=3818ab34627387a252c8450f8b34bbe7e153cafd;hp=9eb90a14b53d6f0e1070be9dbf51875a24766cfc;hpb=71b5ca0374b16351f1f3b64dc222d3d5925622b5;p=roojs1 diff --git a/roojs-bootstrap-debug.js b/roojs-bootstrap-debug.js index 9eb90a14b5..d417f6c182 100644 --- a/roojs-bootstrap-debug.js +++ b/roojs-bootstrap-debug.js @@ -26512,7 +26512,10 @@ Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter, node.removeChild(cn); node.parentNode.insertBefore(cn, node); // move node to parent - and clean it.. - this.replaceTag(cn); + if (cn.nodeType == 1) { + this.replaceTag(cn); + } + } node.parentNode.removeChild(node); /// no need to iterate chidlren = it's got none.. @@ -26580,7 +26583,7 @@ Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter, ret[kv[0]] = kv[1]; }); return ret; - } + }, replaceDocBullets : function(doc) @@ -26597,9 +26600,14 @@ Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter, // gather all the siblings. var ns = p, parent = p.parentNode, + doc = parent.ownerDocument, items = []; while (ns) { - if (!ns.className.match(/MsoListParagraph/)) { + if (ns.nodeType != 1) { + ns = ns.nextSibling; + continue; + } + if (!ns.className.match(/MsoListParagraph/i)) { break; } items.push(ns); @@ -26607,13 +26615,42 @@ Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter, } var ul = parent.ownerDocument.createElement('ul'); // what about number lists... - + parent.insertBefore(ul, p); + var lvl = 0; + var stack = [ ul ]; + var last_li = false; items.forEach(function(n) { parent.removeChild(n); var spans = n.getElementsByTagName('span'); + if (!spans.length || !n.isEqualNode(spans.item(0).parentNode)) { + return; // skip it... + } + + var style = this.styleToObject(n); + if (typeof(style['mso-list']) == 'undefined') { + return; // skip it. + } n.removeChild(spans.item(0)); // remove the fake bullet. + var nlvl = (style['mso-list'].split(' ')[1].replace(/level/,'') *1) - 1; + if (nlvl > lvl) { + //new indent + var nul = doc.createElement('ul'); // what about number lists... + last_li.appendChild(nul); + stack[nlvl] = nul; + } + lvl = nlvl; + + var nli = stack[nlvl].appendChild(doc.createElement('li')); + last_li = nli; + // copy children of p into nli + while(n.firstChild) { + var fc = n.firstChild; + n.removeChild(fc); + nli.appendChild(fc); + } + - }); + },this); @@ -29312,6 +29349,8 @@ Roo.extend(Roo.HtmlEditorCore, Roo.Component, { }); } if (this.autoClean) { + new Roo.htmleditor.FilterWord({ node : d }); + new Roo.htmleditor.FilterStyleToTag({ node : d }); new Roo.htmleditor.FilterAttributes({ node : d,