Update TinyMCE to 3.5.3, enable stripping of Word styles on paste
This commit is contained in:
parent
83404c2c80
commit
48790b7525
274 changed files with 25268 additions and 14504 deletions
2
webapp/web/js/tiny_mce/plugins/visualchars/editor_plugin.js
vendored
Executable file → Normal file
2
webapp/web/js/tiny_mce/plugins/visualchars/editor_plugin.js
vendored
Executable file → Normal file
|
@ -1 +1 @@
|
|||
(function(){tinymce.create('tinymce.plugins.VisualChars',{init:function(ed,url){var t=this;t.editor=ed;ed.addCommand('mceVisualChars',t._toggleVisualChars,t);ed.addButton('visualchars',{title:'visualchars.desc',cmd:'mceVisualChars'});ed.onBeforeGetContent.add(function(ed,o){if(t.state){t.state=true;t._toggleVisualChars();}});},getInfo:function(){return{longname:'Visual characters',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualchars',version:tinymce.majorVersion+"."+tinymce.minorVersion};},_toggleVisualChars:function(){var t=this,ed=t.editor,nl,i,h,d=ed.getDoc(),b=ed.getBody(),nv,s=ed.selection,bo;t.state=!t.state;ed.controlManager.setActive('visualchars',t.state);if(t.state){nl=[];tinymce.walk(b,function(n){if(n.nodeType==3&&n.nodeValue&&n.nodeValue.indexOf('\u00a0')!=-1)nl.push(n);},'childNodes');for(i=0;i<nl.length;i++){nv=nl[i].nodeValue;nv=nv.replace(/(\u00a0+)/g,'<span class="mceItemHidden mceVisualNbsp">$1</span>');nv=nv.replace(/\u00a0/g,'\u00b7');ed.dom.setOuterHTML(nl[i],nv,d);}}else{nl=tinymce.grep(ed.dom.select('span',b),function(n){return ed.dom.hasClass(n,'mceVisualNbsp');});for(i=0;i<nl.length;i++)ed.dom.setOuterHTML(nl[i],nl[i].innerHTML.replace(/(·|\u00b7)/g,' '),d);}}});tinymce.PluginManager.add('visualchars',tinymce.plugins.VisualChars);})();
|
||||
(function(){tinymce.create("tinymce.plugins.VisualChars",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceVisualChars",c._toggleVisualChars,c);a.addButton("visualchars",{title:"visualchars.desc",cmd:"mceVisualChars"});a.onBeforeGetContent.add(function(d,e){if(c.state&&e.format!="raw"&&!e.draft){c.state=true;c._toggleVisualChars(false)}})},getInfo:function(){return{longname:"Visual characters",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualchars",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_toggleVisualChars:function(m){var p=this,k=p.editor,a,g,j,n=k.getDoc(),o=k.getBody(),l,q=k.selection,e,c,f;p.state=!p.state;k.controlManager.setActive("visualchars",p.state);if(m){f=q.getBookmark()}if(p.state){a=[];tinymce.walk(o,function(b){if(b.nodeType==3&&b.nodeValue&&b.nodeValue.indexOf("\u00a0")!=-1){a.push(b)}},"childNodes");for(g=0;g<a.length;g++){l=a[g].nodeValue;l=l.replace(/(\u00a0)/g,'<span data-mce-bogus="1" class="mceItemHidden mceItemNbsp">$1</span>');c=k.dom.create("div",null,l);while(node=c.lastChild){k.dom.insertAfter(node,a[g])}k.dom.remove(a[g])}}else{a=k.dom.select("span.mceItemNbsp",o);for(g=a.length-1;g>=0;g--){k.dom.remove(a[g],1)}}q.moveToBookmark(f)}});tinymce.PluginManager.add("visualchars",tinymce.plugins.VisualChars)})();
|
42
webapp/web/js/tiny_mce/plugins/visualchars/editor_plugin_src.js
vendored
Executable file → Normal file
42
webapp/web/js/tiny_mce/plugins/visualchars/editor_plugin_src.js
vendored
Executable file → Normal file
|
@ -1,8 +1,11 @@
|
|||
/**
|
||||
* $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $
|
||||
* editor_plugin_src.js
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
|
||||
* Copyright 2009, Moxiecode Systems AB
|
||||
* Released under LGPL License.
|
||||
*
|
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/
|
||||
|
||||
(function() {
|
||||
|
@ -19,9 +22,9 @@
|
|||
ed.addButton('visualchars', {title : 'visualchars.desc', cmd : 'mceVisualChars'});
|
||||
|
||||
ed.onBeforeGetContent.add(function(ed, o) {
|
||||
if (t.state) {
|
||||
if (t.state && o.format != 'raw' && !o.draft) {
|
||||
t.state = true;
|
||||
t._toggleVisualChars();
|
||||
t._toggleVisualChars(false);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
@ -38,12 +41,15 @@
|
|||
|
||||
// Private methods
|
||||
|
||||
_toggleVisualChars : function() {
|
||||
var t = this, ed = t.editor, nl, i, h, d = ed.getDoc(), b = ed.getBody(), nv, s = ed.selection, bo;
|
||||
_toggleVisualChars : function(bookmark) {
|
||||
var t = this, ed = t.editor, nl, i, h, d = ed.getDoc(), b = ed.getBody(), nv, s = ed.selection, bo, div, bm;
|
||||
|
||||
t.state = !t.state;
|
||||
ed.controlManager.setActive('visualchars', t.state);
|
||||
|
||||
if (bookmark)
|
||||
bm = s.getBookmark();
|
||||
|
||||
if (t.state) {
|
||||
nl = [];
|
||||
tinymce.walk(b, function(n) {
|
||||
|
@ -51,20 +57,24 @@
|
|||
nl.push(n);
|
||||
}, 'childNodes');
|
||||
|
||||
for (i=0; i<nl.length; i++) {
|
||||
for (i = 0; i < nl.length; i++) {
|
||||
nv = nl[i].nodeValue;
|
||||
nv = nv.replace(/(\u00a0+)/g, '<span class="mceItemHidden mceVisualNbsp">$1</span>');
|
||||
nv = nv.replace(/\u00a0/g, '\u00b7');
|
||||
ed.dom.setOuterHTML(nl[i], nv, d);
|
||||
nv = nv.replace(/(\u00a0)/g, '<span data-mce-bogus="1" class="mceItemHidden mceItemNbsp">$1</span>');
|
||||
|
||||
div = ed.dom.create('div', null, nv);
|
||||
while (node = div.lastChild)
|
||||
ed.dom.insertAfter(node, nl[i]);
|
||||
|
||||
ed.dom.remove(nl[i]);
|
||||
}
|
||||
} else {
|
||||
nl = tinymce.grep(ed.dom.select('span', b), function(n) {
|
||||
return ed.dom.hasClass(n, 'mceVisualNbsp');
|
||||
});
|
||||
nl = ed.dom.select('span.mceItemNbsp', b);
|
||||
|
||||
for (i=0; i<nl.length; i++)
|
||||
ed.dom.setOuterHTML(nl[i], nl[i].innerHTML.replace(/(·|\u00b7)/g, ' '), d);
|
||||
for (i = nl.length - 1; i >= 0; i--)
|
||||
ed.dom.remove(nl[i], 1);
|
||||
}
|
||||
|
||||
s.moveToBookmark(bm);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue