Merge pull request #593 from fermionic/20130127-tinymce-update-and-fixes
TinyMCE 3.5.8 update; some fixes
This commit is contained in:
commit
d4984bff8d
|
@ -670,9 +670,9 @@ function setupFieldRichtext(){
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: baseurl+"/view/custom_tinymce.css",
|
content_css: baseurl+"/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
1
js/main.min.js
vendored
1
js/main.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
|
@ -395,12 +395,14 @@ var ImageDialog = {
|
||||||
if (v == '0')
|
if (v == '0')
|
||||||
img.style.border = isIE ? '0' : '0 none none';
|
img.style.border = isIE ? '0' : '0 none none';
|
||||||
else {
|
else {
|
||||||
if (b.length == 3 && b[isIE ? 2 : 1])
|
var isOldIE = tinymce.isIE && (!document.documentMode || document.documentMode < 9);
|
||||||
bStyle = b[isIE ? 2 : 1];
|
|
||||||
|
if (b.length == 3 && b[isOldIE ? 2 : 1])
|
||||||
|
bStyle = b[isOldIE ? 2 : 1];
|
||||||
else if (!bStyle || bStyle == 'none')
|
else if (!bStyle || bStyle == 'none')
|
||||||
bStyle = 'solid';
|
bStyle = 'solid';
|
||||||
if (b.length == 3 && b[isIE ? 0 : 2])
|
if (b.length == 3 && b[isIE ? 0 : 2])
|
||||||
bColor = b[isIE ? 0 : 2];
|
bColor = b[isOldIE ? 0 : 2];
|
||||||
else if (!bColor || bColor == 'none')
|
else if (!bColor || bColor == 'none')
|
||||||
bColor = 'black';
|
bColor = 'black';
|
||||||
img.style.border = v + 'px ' + bStyle + ' ' + bColor;
|
img.style.border = v + 'px ' + bStyle + ' ' + bColor;
|
||||||
|
|
|
@ -71,6 +71,7 @@ function init() {
|
||||||
if (action == "update") {
|
if (action == "update") {
|
||||||
var href = inst.dom.getAttrib(elm, 'href');
|
var href = inst.dom.getAttrib(elm, 'href');
|
||||||
var onclick = inst.dom.getAttrib(elm, 'onclick');
|
var onclick = inst.dom.getAttrib(elm, 'onclick');
|
||||||
|
var linkTarget = inst.dom.getAttrib(elm, 'target') ? inst.dom.getAttrib(elm, 'target') : "_self";
|
||||||
|
|
||||||
// Setup form data
|
// Setup form data
|
||||||
setFormValue('href', href);
|
setFormValue('href', href);
|
||||||
|
@ -98,7 +99,7 @@ function init() {
|
||||||
setFormValue('onkeypress', inst.dom.getAttrib(elm, 'onkeypress'));
|
setFormValue('onkeypress', inst.dom.getAttrib(elm, 'onkeypress'));
|
||||||
setFormValue('onkeydown', inst.dom.getAttrib(elm, 'onkeydown'));
|
setFormValue('onkeydown', inst.dom.getAttrib(elm, 'onkeydown'));
|
||||||
setFormValue('onkeyup', inst.dom.getAttrib(elm, 'onkeyup'));
|
setFormValue('onkeyup', inst.dom.getAttrib(elm, 'onkeyup'));
|
||||||
setFormValue('target', inst.dom.getAttrib(elm, 'target'));
|
setFormValue('target', linkTarget);
|
||||||
setFormValue('classes', inst.dom.getAttrib(elm, 'class'));
|
setFormValue('classes', inst.dom.getAttrib(elm, 'class'));
|
||||||
|
|
||||||
// Parse onclick data
|
// Parse onclick data
|
||||||
|
@ -119,7 +120,7 @@ function init() {
|
||||||
addClassesToList('classlist', 'advlink_styles');
|
addClassesToList('classlist', 'advlink_styles');
|
||||||
|
|
||||||
selectByValue(formObj, 'classlist', inst.dom.getAttrib(elm, 'class'), true);
|
selectByValue(formObj, 'classlist', inst.dom.getAttrib(elm, 'class'), true);
|
||||||
selectByValue(formObj, 'targetlist', inst.dom.getAttrib(elm, 'target'), true);
|
selectByValue(formObj, 'targetlist', linkTarget, true);
|
||||||
} else
|
} else
|
||||||
addClassesToList('classlist', 'advlink_styles');
|
addClassesToList('classlist', 'advlink_styles');
|
||||||
}
|
}
|
||||||
|
@ -377,6 +378,9 @@ function getAnchorListHTML(id, target) {
|
||||||
for (i=0, len=nodes.length; i<len; i++) {
|
for (i=0, len=nodes.length; i<len; i++) {
|
||||||
if ((name = ed.dom.getAttrib(nodes[i], "name")) != "")
|
if ((name = ed.dom.getAttrib(nodes[i], "name")) != "")
|
||||||
html += '<option value="#' + name + '">' + name + '</option>';
|
html += '<option value="#' + name + '">' + name + '</option>';
|
||||||
|
|
||||||
|
if ((name = nodes[i].id) != "" && !nodes[i].href)
|
||||||
|
html += '<option value="#' + name + '">' + name + '</option>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (html == "")
|
if (html == "")
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
(function(){tinymce.create("tinymce.plugins.AutolinkPlugin",{init:function(a,b){var c=this;a.onKeyDown.addToTop(function(d,f){if(f.keyCode==13){return c.handleEnter(d)}});if(tinyMCE.isIE){return}a.onKeyPress.add(function(d,f){if(f.which==41){return c.handleEclipse(d)}});a.onKeyUp.add(function(d,f){if(f.keyCode==32){return c.handleSpacebar(d)}})},handleEclipse:function(a){this.parseCurrentLine(a,-1,"(",true)},handleSpacebar:function(a){this.parseCurrentLine(a,0,"",true)},handleEnter:function(a){this.parseCurrentLine(a,-1,"",false)},parseCurrentLine:function(i,d,b,g){var a,f,c,n,k,m,h,e,j;a=i.selection.getRng(true).cloneRange();if(a.startOffset<5){e=a.endContainer.previousSibling;if(e==null){if(a.endContainer.firstChild==null||a.endContainer.firstChild.nextSibling==null){return}e=a.endContainer.firstChild.nextSibling}j=e.length;a.setStart(e,j);a.setEnd(e,j);if(a.endOffset<5){return}f=a.endOffset;n=e}else{n=a.endContainer;if(n.nodeType!=3&&n.firstChild){while(n.nodeType!=3&&n.firstChild){n=n.firstChild}a.setStart(n,0);a.setEnd(n,n.nodeValue.length)}if(a.endOffset==1){f=2}else{f=a.endOffset-1-d}}c=f;do{a.setStart(n,f-2);a.setEnd(n,f-1);f-=1}while(a.toString()!=" "&&a.toString()!=""&&a.toString().charCodeAt(0)!=160&&(f-2)>=0&&a.toString()!=b);if(a.toString()==b||a.toString().charCodeAt(0)==160){a.setStart(n,f);a.setEnd(n,c);f+=1}else{if(a.startOffset==0){a.setStart(n,0);a.setEnd(n,c)}else{a.setStart(n,f);a.setEnd(n,c)}}var m=a.toString();if(m.charAt(m.length-1)=="."){a.setEnd(n,c-1)}m=a.toString();h=m.match(/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|[A-Z0-9._%+-]+@)(.+)$/i);if(h){if(h[1]=="www."){h[1]="http://www."}else{if(/@$/.test(h[1])){h[1]="mailto:"+h[1]}}k=i.selection.getBookmark();i.selection.setRng(a);tinyMCE.execCommand("createlink",false,h[1]+h[2]);i.selection.moveToBookmark(k);if(tinyMCE.isWebKit){i.selection.collapse(false);var l=Math.min(n.length,c+1);a.setStart(n,l);a.setEnd(n,l);i.selection.setRng(a)}}},getInfo:function(){return{longname:"Autolink",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autolink",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("autolink",tinymce.plugins.AutolinkPlugin)})();
|
(function(){tinymce.create("tinymce.plugins.AutolinkPlugin",{init:function(a,b){var c=this;a.onKeyDown.addToTop(function(d,f){if(f.keyCode==13){return c.handleEnter(d)}});if(tinyMCE.isIE){return}a.onKeyPress.add(function(d,f){if(f.which==41){return c.handleEclipse(d)}});a.onKeyUp.add(function(d,f){if(f.keyCode==32){return c.handleSpacebar(d)}})},handleEclipse:function(a){this.parseCurrentLine(a,-1,"(",true)},handleSpacebar:function(a){this.parseCurrentLine(a,0,"",true)},handleEnter:function(a){this.parseCurrentLine(a,-1,"",false)},parseCurrentLine:function(i,d,b,g){var a,f,c,n,k,m,h,e,j;a=i.selection.getRng(true).cloneRange();if(a.startOffset<5){e=a.endContainer.previousSibling;if(e==null){if(a.endContainer.firstChild==null||a.endContainer.firstChild.nextSibling==null){return}e=a.endContainer.firstChild.nextSibling}j=e.length;a.setStart(e,j);a.setEnd(e,j);if(a.endOffset<5){return}f=a.endOffset;n=e}else{n=a.endContainer;if(n.nodeType!=3&&n.firstChild){while(n.nodeType!=3&&n.firstChild){n=n.firstChild}if(n.nodeType==3){a.setStart(n,0);a.setEnd(n,n.nodeValue.length)}}if(a.endOffset==1){f=2}else{f=a.endOffset-1-d}}c=f;do{a.setStart(n,f>=2?f-2:0);a.setEnd(n,f>=1?f-1:0);f-=1}while(a.toString()!=" "&&a.toString()!=""&&a.toString().charCodeAt(0)!=160&&(f-2)>=0&&a.toString()!=b);if(a.toString()==b||a.toString().charCodeAt(0)==160){a.setStart(n,f);a.setEnd(n,c);f+=1}else{if(a.startOffset==0){a.setStart(n,0);a.setEnd(n,c)}else{a.setStart(n,f);a.setEnd(n,c)}}var m=a.toString();if(m.charAt(m.length-1)=="."){a.setEnd(n,c-1)}m=a.toString();h=m.match(/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+-]+@)(.+)$/i);if(h){if(h[1]=="www."){h[1]="http://www."}else{if(/@$/.test(h[1])&&!/^mailto:/.test(h[1])){h[1]="mailto:"+h[1]}}k=i.selection.getBookmark();i.selection.setRng(a);tinyMCE.execCommand("createlink",false,h[1]+h[2]);i.selection.moveToBookmark(k);i.nodeChanged();if(tinyMCE.isWebKit){i.selection.collapse(false);var l=Math.min(n.length,c+1);a.setStart(n,l);a.setEnd(n,l);i.selection.setRng(a)}}},getInfo:function(){return{longname:"Autolink",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autolink",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("autolink",tinymce.plugins.AutolinkPlugin)})();
|
|
@ -89,9 +89,12 @@
|
||||||
while (endContainer.nodeType != 3 && endContainer.firstChild)
|
while (endContainer.nodeType != 3 && endContainer.firstChild)
|
||||||
endContainer = endContainer.firstChild;
|
endContainer = endContainer.firstChild;
|
||||||
|
|
||||||
|
// Move range to text node
|
||||||
|
if (endContainer.nodeType == 3) {
|
||||||
r.setStart(endContainer, 0);
|
r.setStart(endContainer, 0);
|
||||||
r.setEnd(endContainer, endContainer.nodeValue.length);
|
r.setEnd(endContainer, endContainer.nodeValue.length);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (r.endOffset == 1)
|
if (r.endOffset == 1)
|
||||||
end = 2;
|
end = 2;
|
||||||
|
@ -104,8 +107,8 @@
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
// Move the selection one character backwards.
|
// Move the selection one character backwards.
|
||||||
r.setStart(endContainer, end - 2);
|
r.setStart(endContainer, end >= 2 ? end - 2 : 0);
|
||||||
r.setEnd(endContainer, end - 1);
|
r.setEnd(endContainer, end >= 1 ? end - 1 : 0);
|
||||||
end -= 1;
|
end -= 1;
|
||||||
|
|
||||||
// Loop until one of the following is found: a blank space, , delimeter, (end-2) >= 0
|
// Loop until one of the following is found: a blank space, , delimeter, (end-2) >= 0
|
||||||
|
@ -131,12 +134,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
text = r.toString();
|
text = r.toString();
|
||||||
matches = text.match(/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|[A-Z0-9._%+-]+@)(.+)$/i);
|
matches = text.match(/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+-]+@)(.+)$/i);
|
||||||
|
|
||||||
if (matches) {
|
if (matches) {
|
||||||
if (matches[1] == 'www.') {
|
if (matches[1] == 'www.') {
|
||||||
matches[1] = 'http://www.';
|
matches[1] = 'http://www.';
|
||||||
} else if (/@$/.test(matches[1])) {
|
} else if (/@$/.test(matches[1]) && !/^mailto:/.test(matches[1])) {
|
||||||
matches[1] = 'mailto:' + matches[1];
|
matches[1] = 'mailto:' + matches[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -145,6 +148,7 @@
|
||||||
ed.selection.setRng(r);
|
ed.selection.setRng(r);
|
||||||
tinyMCE.execCommand('createlink',false, matches[1] + matches[2]);
|
tinyMCE.execCommand('createlink',false, matches[1] + matches[2]);
|
||||||
ed.selection.moveToBookmark(bookmark);
|
ed.selection.moveToBookmark(bookmark);
|
||||||
|
ed.nodeChanged();
|
||||||
|
|
||||||
// TODO: Determine if this is still needed.
|
// TODO: Determine if this is still needed.
|
||||||
if (tinyMCE.isWebKit) {
|
if (tinyMCE.isWebKit) {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
(function(e){var c="autosave",g="restoredraft",b=true,f,d,a=e.util.Dispatcher;e.create("tinymce.plugins.AutoSave",{init:function(i,j){var h=this,l=i.settings;h.editor=i;function k(n){var m={s:1000,m:60000};n=/^(\d+)([ms]?)$/.exec(""+n);return(n[2]?m[n[2]]:1)*parseInt(n)}e.each({ask_before_unload:b,interval:"30s",retention:"20m",minlength:50},function(n,m){m=c+"_"+m;if(l[m]===f){l[m]=n}});l.autosave_interval=k(l.autosave_interval);l.autosave_retention=k(l.autosave_retention);i.addButton(g,{title:c+".restore_content",onclick:function(){if(i.getContent({draft:true}).replace(/\s| |<\/?p[^>]*>|<br[^>]*>/gi,"").length>0){i.windowManager.confirm(c+".warning_message",function(m){if(m){h.restoreDraft()}})}else{h.restoreDraft()}}});i.onNodeChange.add(function(){var m=i.controlManager;if(m.get(g)){m.setDisabled(g,!h.hasDraft())}});i.onInit.add(function(){if(i.controlManager.get(g)){h.setupStorage(i);setInterval(function(){h.storeDraft();i.nodeChanged()},l.autosave_interval)}});h.onStoreDraft=new a(h);h.onRestoreDraft=new a(h);h.onRemoveDraft=new a(h);if(!d){window.onbeforeunload=e.plugins.AutoSave._beforeUnloadHandler;d=b}},getInfo:function(){return{longname:"Auto save",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autosave",version:e.majorVersion+"."+e.minorVersion}},getExpDate:function(){return new Date(new Date().getTime()+this.editor.settings.autosave_retention).toUTCString()},setupStorage:function(i){var h=this,k=c+"_test",j="OK";h.key=c+i.id;e.each([function(){if(localStorage){localStorage.setItem(k,j);if(localStorage.getItem(k)===j){localStorage.removeItem(k);return localStorage}}},function(){if(sessionStorage){sessionStorage.setItem(k,j);if(sessionStorage.getItem(k)===j){sessionStorage.removeItem(k);return sessionStorage}}},function(){if(e.isIE){i.getElement().style.behavior="url('#default#userData')";return{autoExpires:b,setItem:function(l,n){var m=i.getElement();m.setAttribute(l,n);m.expires=h.getExpDate();try{m.save("TinyMCE")}catch(o){}},getItem:function(l){var m=i.getElement();try{m.load("TinyMCE");return m.getAttribute(l)}catch(n){return null}},removeItem:function(l){i.getElement().removeAttribute(l)}}}},],function(l){try{h.storage=l();if(h.storage){return false}}catch(m){}})},storeDraft:function(){var i=this,l=i.storage,j=i.editor,h,k;if(l){if(!l.getItem(i.key)&&!j.isDirty()){return}k=j.getContent({draft:true});if(k.length>j.settings.autosave_minlength){h=i.getExpDate();if(!i.storage.autoExpires){i.storage.setItem(i.key+"_expires",h)}i.storage.setItem(i.key,k);i.onStoreDraft.dispatch(i,{expires:h,content:k})}}},restoreDraft:function(){var h=this,j=h.storage,i;if(j){i=j.getItem(h.key);if(i){h.editor.setContent(i);h.onRestoreDraft.dispatch(h,{content:i})}}},hasDraft:function(){var h=this,k=h.storage,i,j;if(k){j=!!k.getItem(h.key);if(j){if(!h.storage.autoExpires){i=new Date(k.getItem(h.key+"_expires"));if(new Date().getTime()<i.getTime()){return b}h.removeDraft()}else{return b}}}return false},removeDraft:function(){var h=this,k=h.storage,i=h.key,j;if(k){j=k.getItem(i);k.removeItem(i);k.removeItem(i+"_expires");if(j){h.onRemoveDraft.dispatch(h,{content:j})}}},"static":{_beforeUnloadHandler:function(h){var i;e.each(tinyMCE.editors,function(j){if(j.plugins.autosave){j.plugins.autosave.storeDraft()}if(j.getParam("fullscreen_is_enabled")){return}if(!i&&j.isDirty()&&j.getParam("autosave_ask_before_unload")){i=j.getLang("autosave.unload_msg")}});return i}}});e.PluginManager.add("autosave",e.plugins.AutoSave)})(tinymce);
|
(function(e){var c="autosave",g="restoredraft",b=true,f,d,a=e.util.Dispatcher;e.create("tinymce.plugins.AutoSave",{init:function(i,j){var h=this,l=i.settings;h.editor=i;function k(n){var m={s:1000,m:60000};n=/^(\d+)([ms]?)$/.exec(""+n);return(n[2]?m[n[2]]:1)*parseInt(n)}e.each({ask_before_unload:b,interval:"30s",retention:"20m",minlength:50},function(n,m){m=c+"_"+m;if(l[m]===f){l[m]=n}});l.autosave_interval=k(l.autosave_interval);l.autosave_retention=k(l.autosave_retention);i.addButton(g,{title:c+".restore_content",onclick:function(){if(i.getContent({draft:true}).replace(/\s| |<\/?p[^>]*>|<br[^>]*>/gi,"").length>0){i.windowManager.confirm(c+".warning_message",function(m){if(m){h.restoreDraft()}})}else{h.restoreDraft()}}});i.onNodeChange.add(function(){var m=i.controlManager;if(m.get(g)){m.setDisabled(g,!h.hasDraft())}});i.onInit.add(function(){if(i.controlManager.get(g)){h.setupStorage(i);setInterval(function(){if(!i.removed){h.storeDraft();i.nodeChanged()}},l.autosave_interval)}});h.onStoreDraft=new a(h);h.onRestoreDraft=new a(h);h.onRemoveDraft=new a(h);if(!d){window.onbeforeunload=e.plugins.AutoSave._beforeUnloadHandler;d=b}},getInfo:function(){return{longname:"Auto save",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autosave",version:e.majorVersion+"."+e.minorVersion}},getExpDate:function(){return new Date(new Date().getTime()+this.editor.settings.autosave_retention).toUTCString()},setupStorage:function(i){var h=this,k=c+"_test",j="OK";h.key=c+i.id;e.each([function(){if(localStorage){localStorage.setItem(k,j);if(localStorage.getItem(k)===j){localStorage.removeItem(k);return localStorage}}},function(){if(sessionStorage){sessionStorage.setItem(k,j);if(sessionStorage.getItem(k)===j){sessionStorage.removeItem(k);return sessionStorage}}},function(){if(e.isIE){i.getElement().style.behavior="url('#default#userData')";return{autoExpires:b,setItem:function(l,n){var m=i.getElement();m.setAttribute(l,n);m.expires=h.getExpDate();try{m.save("TinyMCE")}catch(o){}},getItem:function(l){var m=i.getElement();try{m.load("TinyMCE");return m.getAttribute(l)}catch(n){return null}},removeItem:function(l){i.getElement().removeAttribute(l)}}}},],function(l){try{h.storage=l();if(h.storage){return false}}catch(m){}})},storeDraft:function(){var i=this,l=i.storage,j=i.editor,h,k;if(l){if(!l.getItem(i.key)&&!j.isDirty()){return}k=j.getContent({draft:true});if(k.length>j.settings.autosave_minlength){h=i.getExpDate();if(!i.storage.autoExpires){i.storage.setItem(i.key+"_expires",h)}i.storage.setItem(i.key,k);i.onStoreDraft.dispatch(i,{expires:h,content:k})}}},restoreDraft:function(){var h=this,j=h.storage,i;if(j){i=j.getItem(h.key);if(i){h.editor.setContent(i);h.onRestoreDraft.dispatch(h,{content:i})}}},hasDraft:function(){var h=this,k=h.storage,i,j;if(k){j=!!k.getItem(h.key);if(j){if(!h.storage.autoExpires){i=new Date(k.getItem(h.key+"_expires"));if(new Date().getTime()<i.getTime()){return b}h.removeDraft()}else{return b}}}return false},removeDraft:function(){var h=this,k=h.storage,i=h.key,j;if(k){j=k.getItem(i);k.removeItem(i);k.removeItem(i+"_expires");if(j){h.onRemoveDraft.dispatch(h,{content:j})}}},"static":{_beforeUnloadHandler:function(h){var i;e.each(tinyMCE.editors,function(j){if(j.plugins.autosave){j.plugins.autosave.storeDraft()}if(j.getParam("fullscreen_is_enabled")){return}if(!i&&j.isDirty()&&j.getParam("autosave_ask_before_unload")){i=j.getLang("autosave.unload_msg")}});return i}}});e.PluginManager.add("autosave",e.plugins.AutoSave)})(tinymce);
|
|
@ -136,8 +136,10 @@
|
||||||
|
|
||||||
// Auto save contents each interval time
|
// Auto save contents each interval time
|
||||||
setInterval(function() {
|
setInterval(function() {
|
||||||
|
if (!ed.removed) {
|
||||||
self.storeDraft();
|
self.storeDraft();
|
||||||
ed.nodeChanged();
|
ed.nodeChanged();
|
||||||
|
}
|
||||||
}, settings.autosave_interval);
|
}, settings.autosave_interval);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
tinyMCE.addI18n('en.autosave',{
|
|
||||||
restore_content: "Restore auto-saved content",
|
|
||||||
warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?"
|
|
||||||
});
|
|
File diff suppressed because one or more lines are too long
|
@ -84,6 +84,9 @@ commenting out for now
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
function get(re) {
|
||||||
|
return s.match(re);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* oembed */
|
/* oembed */
|
||||||
|
@ -119,6 +122,7 @@ commenting out for now
|
||||||
|
|
||||||
return match;
|
return match;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s.indexOf('class="oembed')>=0){
|
if (s.indexOf('class="oembed')>=0){
|
||||||
//alert("request oembed html2bbcode");
|
//alert("request oembed html2bbcode");
|
||||||
s = _h2b_cb(s);
|
s = _h2b_cb(s);
|
||||||
|
@ -127,17 +131,23 @@ commenting out for now
|
||||||
/* /oembed */
|
/* /oembed */
|
||||||
|
|
||||||
|
|
||||||
|
// Preserve HTML tags inside code blocks
|
||||||
|
var codes = get(/<code>(.*?)<\/code>/gi);
|
||||||
|
rep(/<code>(.*?)<\/code>/gi,"[$!$!CODEBLOCK!$!$]");
|
||||||
|
|
||||||
// example: <strong> to [b]
|
// example: <strong> to [b]
|
||||||
rep(/<a class=\"bookmark\" href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[bookmark=$1]$2[/bookmark]");
|
rep(/<a class=\"bookmark\" href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[bookmark=$1]$2[/bookmark]");
|
||||||
rep(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]");
|
rep(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]");
|
||||||
rep(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]");
|
rep(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]");
|
||||||
rep(/<span style=\"color:(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]");
|
rep(/<span style=\"color:(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]");
|
||||||
rep(/<font>(.*?)<\/font>/gi,"$1");
|
rep(/<font>(.*?)<\/font>/gi,"$1");
|
||||||
rep(/<img.*?width=\"(.*?)\".*?height=\"(.*?)\".*?src=\"(.*?)\".*?\/>/gi,"[img=$1x$2]$3[/img]");
|
|
||||||
rep(/<img.*?height=\"(.*?)\".*?width=\"(.*?)\".*?src=\"(.*?)\".*?\/>/gi,"[img=$2x$1]$3[/img]");
|
// Use [^>]* instead of .* to prevent a match against two separate <img> tags
|
||||||
rep(/<img.*?src=\"(.*?)\".*?height=\"(.*?)\".*?width=\"(.*?)\".*?\/>/gi,"[img=$3x$2]$1[/img]");
|
rep(/<img[^>]*?width=\"([^>]*?)\"[^>]*?height=\"([^>]*?)\"[^>]*?src=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$1x$2]$3[/img]");
|
||||||
rep(/<img.*?src=\"(.*?)\".*?width=\"(.*?)\".*?height=\"(.*?)\".*?\/>/gi,"[img=$2x$3]$1[/img]");
|
rep(/<img[^>]*?height=\"([^>]*?)\"[^>]*?width=\"([^>]*?)\"[^>]*?src=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$2x$1]$3[/img]");
|
||||||
rep(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]");
|
rep(/<img[^>]*?src=\"([^>]*?)\"[^>]*?height=\"([^>]*?)\"[^>]*?width=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$3x$2]$1[/img]");
|
||||||
|
rep(/<img[^>]*?src=\"([^>]*?)\"[^>]*?width=\"([^>]*?)\"[^>]*?height=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$2x$3]$1[/img]");
|
||||||
|
rep(/<img[^>]*?src=\"([^>]*?)\"[^>]*?\/>/gi,"[img]$1[/img]");
|
||||||
|
|
||||||
rep(/<ul class=\"listbullet\" style=\"list-style-type\: circle\;\">(.*?)<\/ul>/gi,"[list]$1[/list]");
|
rep(/<ul class=\"listbullet\" style=\"list-style-type\: circle\;\">(.*?)<\/ul>/gi,"[list]$1[/list]");
|
||||||
rep(/<ul class=\"listnone\" style=\"list-style-type\: none\;\">(.*?)<\/ul>/gi,"[list=]$1[/list]");
|
rep(/<ul class=\"listnone\" style=\"list-style-type\: none\;\">(.*?)<\/ul>/gi,"[list=]$1[/list]");
|
||||||
|
@ -148,7 +158,7 @@ commenting out for now
|
||||||
rep(/<ul class=\"listupperalpha\" style=\"list-style-type\: upper-alpha\;\">(.*?)<\/ul>/gi,"[list=A]$1[/list]");
|
rep(/<ul class=\"listupperalpha\" style=\"list-style-type\: upper-alpha\;\">(.*?)<\/ul>/gi,"[list=A]$1[/list]");
|
||||||
rep(/<li>(.*?)<\/li>/gi,'[li]$1[/li]');
|
rep(/<li>(.*?)<\/li>/gi,'[li]$1[/li]');
|
||||||
|
|
||||||
rep(/<code>(.*?)<\/code>/gi,"[code]$1[/code]");
|
//rep(/<code>(.*?)<\/code>/gi,"[code]$1[/code]");
|
||||||
rep(/<\/(strong|b)>/gi,"[/b]");
|
rep(/<\/(strong|b)>/gi,"[/b]");
|
||||||
rep(/<(strong|b)>/gi,"[b]");
|
rep(/<(strong|b)>/gi,"[b]");
|
||||||
rep(/<\/(em|i)>/gi,"[/i]");
|
rep(/<\/(em|i)>/gi,"[/i]");
|
||||||
|
@ -164,12 +174,26 @@ commenting out for now
|
||||||
rep(/<br>/gi,"\n");
|
rep(/<br>/gi,"\n");
|
||||||
rep(/<p>/gi,"");
|
rep(/<p>/gi,"");
|
||||||
rep(/<\/p>/gi,"\n");
|
rep(/<\/p>/gi,"\n");
|
||||||
rep(/ /gi," ");
|
rep(/ |\u00a0/gi," ");
|
||||||
rep(/"/gi,"\"");
|
rep(/"/gi,"\"");
|
||||||
rep(/</gi,"<");
|
rep(/</gi,"<");
|
||||||
rep(/>/gi,">");
|
rep(/>/gi,">");
|
||||||
rep(/&/gi,"&");
|
rep(/&/gi,"&");
|
||||||
|
|
||||||
|
// Hack to fix an annoying bug of TinyMCE where block formats don't
|
||||||
|
// work when forced_root_block = ''. So set forced_root_block = 'div'
|
||||||
|
// and then strip out the divs manually
|
||||||
|
rep(/<div>/gi,"");
|
||||||
|
rep(/<\/div>/gi,"");
|
||||||
|
|
||||||
|
if(codes != null) {
|
||||||
|
for(var i=0; i<codes.length; i++) {
|
||||||
|
codes[i] = codes[i].replace("<code>","");
|
||||||
|
codes[i] = codes[i].replace("</code>","");
|
||||||
|
rep(/\[\$!\$!CODEBLOCK!\$!\$\]/i,"[code]"+codes[i]+"[/code]");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -181,7 +205,7 @@ commenting out for now
|
||||||
function rep(re, str) {
|
function rep(re, str) {
|
||||||
|
|
||||||
|
|
||||||
//modify code to keep stuff intact within [code][/code] blocks
|
/*//modify code to keep stuff intact within [code][/code] blocks
|
||||||
//Waitman Gobble NO WARRANTY
|
//Waitman Gobble NO WARRANTY
|
||||||
|
|
||||||
|
|
||||||
|
@ -205,14 +229,24 @@ commenting out for now
|
||||||
o.push(no.join("[/code]"));
|
o.push(no.join("[/code]"));
|
||||||
}
|
}
|
||||||
|
|
||||||
s = o.join("[code]");
|
s = o.join("[code]");*/
|
||||||
|
|
||||||
|
s = s.replace(re, str);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function get(re) {
|
||||||
|
return s.match(re);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Preserve HTML tags inside code blocks
|
||||||
|
var codes = get(/\[code\](.*?)\[\/code\]/gi);
|
||||||
|
rep(/\[code\](.*?)\[\/code\]/gi,"[$!$!CODEBLOCK!$!$]");
|
||||||
|
|
||||||
// example: [b] to <strong>
|
// example: [b] to <strong>
|
||||||
rep(/\n/gi,"<br />");
|
rep(/\n/gi,"<br />");
|
||||||
rep(/\[b\]/gi,"<strong>");
|
rep(/\[b\]/gi,"<strong>");
|
||||||
|
@ -238,7 +272,7 @@ commenting out for now
|
||||||
rep(/\[li\](.*?)\[\/li\]/gi, '<li>$1</li>');
|
rep(/\[li\](.*?)\[\/li\]/gi, '<li>$1</li>');
|
||||||
rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"<span style=\"color: $1;\">$2</span>");
|
rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"<span style=\"color: $1;\">$2</span>");
|
||||||
rep(/\[size=(.*?)\](.*?)\[\/size\]/gi,"<span style=\"font-size: $1;\">$2</span>");
|
rep(/\[size=(.*?)\](.*?)\[\/size\]/gi,"<span style=\"font-size: $1;\">$2</span>");
|
||||||
rep(/\[code\](.*?)\[\/code\]/gi,"<code>$1</code>");
|
//rep(/\[code\](.*?)\[\/code\]/gi,"<code>$1</code>");
|
||||||
rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"<blockquote>$1</blockquote>");
|
rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"<blockquote>$1</blockquote>");
|
||||||
|
|
||||||
/* oembed */
|
/* oembed */
|
||||||
|
@ -255,10 +289,19 @@ commenting out for now
|
||||||
});
|
});
|
||||||
return match;
|
return match;
|
||||||
}
|
}
|
||||||
|
|
||||||
s = s.replace(/\[embed\](.*?)\[\/embed\]/gi, _b2h_cb);
|
s = s.replace(/\[embed\](.*?)\[\/embed\]/gi, _b2h_cb);
|
||||||
|
|
||||||
/* /oembed */
|
/* /oembed */
|
||||||
|
|
||||||
|
if(codes != null) {
|
||||||
|
for(var i=0; i<codes.length; i++) {
|
||||||
|
codes[i] = codes[i].replace("[code]","");
|
||||||
|
codes[i] = codes[i].replace("[/code]","");
|
||||||
|
rep(/\[\$!\$!CODEBLOCK!\$!\$\]/i,"<code>"+codes[i]+"</code>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
1
library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin.js
vendored
Normal file
1
library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin.js
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
(function(){tinymce.create("tinymce.plugins.BBCodePlugin",{init:function(a,b){var d=this,c=a.getParam("bbcode_dialect","punbb").toLowerCase();a.onBeforeSetContent.add(function(e,f){f.content=d["_"+c+"_bbcode2html"](f.content)});a.onPostProcess.add(function(e,f){if(f.set){f.content=d["_"+c+"_bbcode2html"](f.content)}if(f.get){f.content=d["_"+c+"_html2bbcode"](f.content)}})},getInfo:function(){return{longname:"BBCode Plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_punbb_html2bbcode:function(a){a=tinymce.trim(a);function b(c,d){a=a.replace(c,d)}b(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]");b(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");b(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");b(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");b(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");b(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]");b(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]");b(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]");b(/<font>(.*?)<\/font>/gi,"$1");b(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]");b(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]");b(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]");b(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]");b(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]");b(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]");b(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]");b(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]");b(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]");b(/<\/(strong|b)>/gi,"[/b]");b(/<(strong|b)>/gi,"[b]");b(/<\/(em|i)>/gi,"[/i]");b(/<(em|i)>/gi,"[i]");b(/<\/u>/gi,"[/u]");b(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]");b(/<u>/gi,"[u]");b(/<blockquote[^>]*>/gi,"[quote]");b(/<\/blockquote>/gi,"[/quote]");b(/<br \/>/gi,"\n");b(/<br\/>/gi,"\n");b(/<br>/gi,"\n");b(/<p>/gi,"");b(/<\/p>/gi,"\n");b(/ |\u00a0/gi," ");b(/"/gi,'"');b(/</gi,"<");b(/>/gi,">");b(/&/gi,"&");return a},_punbb_bbcode2html:function(a){a=tinymce.trim(a);function b(c,d){a=a.replace(c,d)}b(/\n/gi,"<br />");b(/\[b\]/gi,"<strong>");b(/\[\/b\]/gi,"</strong>");b(/\[i\]/gi,"<em>");b(/\[\/i\]/gi,"</em>");b(/\[u\]/gi,"<u>");b(/\[\/u\]/gi,"</u>");b(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'<a href="$1">$2</a>');b(/\[url\](.*?)\[\/url\]/gi,'<a href="$1">$1</a>');b(/\[img\](.*?)\[\/img\]/gi,'<img src="$1" />');b(/\[color=(.*?)\](.*?)\[\/color\]/gi,'<font color="$1">$2</font>');b(/\[code\](.*?)\[\/code\]/gi,'<span class="codeStyle">$1</span> ');b(/\[quote.*?\](.*?)\[\/quote\]/gi,'<span class="quoteStyle">$1</span> ');return a}});tinymce.PluginManager.add("bbcode",tinymce.plugins.BBCodePlugin)})();
|
120
library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin_src.js
vendored
Normal file
120
library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin_src.js
vendored
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
/**
|
||||||
|
* editor_plugin_src.js
|
||||||
|
*
|
||||||
|
* Copyright 2009, Moxiecode Systems AB
|
||||||
|
* Released under LGPL License.
|
||||||
|
*
|
||||||
|
* License: http://tinymce.moxiecode.com/license
|
||||||
|
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||||
|
*/
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
tinymce.create('tinymce.plugins.BBCodePlugin', {
|
||||||
|
init : function(ed, url) {
|
||||||
|
var t = this, dialect = ed.getParam('bbcode_dialect', 'punbb').toLowerCase();
|
||||||
|
|
||||||
|
ed.onBeforeSetContent.add(function(ed, o) {
|
||||||
|
o.content = t['_' + dialect + '_bbcode2html'](o.content);
|
||||||
|
});
|
||||||
|
|
||||||
|
ed.onPostProcess.add(function(ed, o) {
|
||||||
|
if (o.set)
|
||||||
|
o.content = t['_' + dialect + '_bbcode2html'](o.content);
|
||||||
|
|
||||||
|
if (o.get)
|
||||||
|
o.content = t['_' + dialect + '_html2bbcode'](o.content);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
getInfo : function() {
|
||||||
|
return {
|
||||||
|
longname : 'BBCode Plugin',
|
||||||
|
author : 'Moxiecode Systems AB',
|
||||||
|
authorurl : 'http://tinymce.moxiecode.com',
|
||||||
|
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode',
|
||||||
|
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
// Private methods
|
||||||
|
|
||||||
|
// HTML -> BBCode in PunBB dialect
|
||||||
|
_punbb_html2bbcode : function(s) {
|
||||||
|
s = tinymce.trim(s);
|
||||||
|
|
||||||
|
function rep(re, str) {
|
||||||
|
s = s.replace(re, str);
|
||||||
|
};
|
||||||
|
|
||||||
|
// example: <strong> to [b]
|
||||||
|
rep(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]");
|
||||||
|
rep(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");
|
||||||
|
rep(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");
|
||||||
|
rep(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");
|
||||||
|
rep(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");
|
||||||
|
rep(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]");
|
||||||
|
rep(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]");
|
||||||
|
rep(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]");
|
||||||
|
rep(/<font>(.*?)<\/font>/gi,"$1");
|
||||||
|
rep(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]");
|
||||||
|
rep(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]");
|
||||||
|
rep(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]");
|
||||||
|
rep(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]");
|
||||||
|
rep(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]");
|
||||||
|
rep(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]");
|
||||||
|
rep(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]");
|
||||||
|
rep(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]");
|
||||||
|
rep(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]");
|
||||||
|
rep(/<\/(strong|b)>/gi,"[/b]");
|
||||||
|
rep(/<(strong|b)>/gi,"[b]");
|
||||||
|
rep(/<\/(em|i)>/gi,"[/i]");
|
||||||
|
rep(/<(em|i)>/gi,"[i]");
|
||||||
|
rep(/<\/u>/gi,"[/u]");
|
||||||
|
rep(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]");
|
||||||
|
rep(/<u>/gi,"[u]");
|
||||||
|
rep(/<blockquote[^>]*>/gi,"[quote]");
|
||||||
|
rep(/<\/blockquote>/gi,"[/quote]");
|
||||||
|
rep(/<br \/>/gi,"\n");
|
||||||
|
rep(/<br\/>/gi,"\n");
|
||||||
|
rep(/<br>/gi,"\n");
|
||||||
|
rep(/<p>/gi,"");
|
||||||
|
rep(/<\/p>/gi,"\n");
|
||||||
|
rep(/ |\u00a0/gi," ");
|
||||||
|
rep(/"/gi,"\"");
|
||||||
|
rep(/</gi,"<");
|
||||||
|
rep(/>/gi,">");
|
||||||
|
rep(/&/gi,"&");
|
||||||
|
|
||||||
|
return s;
|
||||||
|
},
|
||||||
|
|
||||||
|
// BBCode -> HTML from PunBB dialect
|
||||||
|
_punbb_bbcode2html : function(s) {
|
||||||
|
s = tinymce.trim(s);
|
||||||
|
|
||||||
|
function rep(re, str) {
|
||||||
|
s = s.replace(re, str);
|
||||||
|
};
|
||||||
|
|
||||||
|
// example: [b] to <strong>
|
||||||
|
rep(/\n/gi,"<br />");
|
||||||
|
rep(/\[b\]/gi,"<strong>");
|
||||||
|
rep(/\[\/b\]/gi,"</strong>");
|
||||||
|
rep(/\[i\]/gi,"<em>");
|
||||||
|
rep(/\[\/i\]/gi,"</em>");
|
||||||
|
rep(/\[u\]/gi,"<u>");
|
||||||
|
rep(/\[\/u\]/gi,"</u>");
|
||||||
|
rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"<a href=\"$1\">$2</a>");
|
||||||
|
rep(/\[url\](.*?)\[\/url\]/gi,"<a href=\"$1\">$1</a>");
|
||||||
|
rep(/\[img\](.*?)\[\/img\]/gi,"<img src=\"$1\" />");
|
||||||
|
rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"<font color=\"$1\">$2</font>");
|
||||||
|
rep(/\[code\](.*?)\[\/code\]/gi,"<span class=\"codeStyle\">$1</span> ");
|
||||||
|
rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"<span class=\"quoteStyle\">$1</span> ");
|
||||||
|
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Register plugin
|
||||||
|
tinymce.PluginManager.add('bbcode', tinymce.plugins.BBCodePlugin);
|
||||||
|
})();
|
|
@ -1 +1 @@
|
||||||
(function(){var a=tinymce.dom.Event,c=tinymce.each,b=tinymce.DOM;tinymce.create("tinymce.plugins.ContextMenu",{init:function(e){var h=this,f,d,i;h.editor=e;d=e.settings.contextmenu_never_use_native;h.onContextMenu=new tinymce.util.Dispatcher(this);f=e.onContextMenu.add(function(j,k){if((i!==0?i:k.ctrlKey)&&!d){return}a.cancel(k);if(k.target.nodeName=="IMG"){j.selection.select(k.target)}h._getMenu(j).showMenu(k.clientX||k.pageX,k.clientY||k.pageY);a.add(j.getDoc(),"click",function(l){g(j,l)});j.nodeChanged()});e.onRemove.add(function(){if(h._menu){h._menu.removeAll()}});function g(j,k){i=0;if(k&&k.button==2){i=k.ctrlKey;return}if(h._menu){h._menu.removeAll();h._menu.destroy();a.remove(j.getDoc(),"click",g);h._menu=null}}e.onMouseDown.add(g);e.onKeyDown.add(g);e.onKeyDown.add(function(j,k){if(k.shiftKey&&!k.ctrlKey&&!k.altKey&&k.keyCode===121){a.cancel(k);f(j,k)}})},getInfo:function(){return{longname:"Contextmenu",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_getMenu:function(e){var g=this,d=g._menu,j=e.selection,f=j.isCollapsed(),h=j.getNode()||e.getBody(),i,k;if(d){d.removeAll();d.destroy()}k=b.getPos(e.getContentAreaContainer());d=e.controlManager.createDropMenu("contextmenu",{offset_x:k.x+e.getParam("contextmenu_offset_x",0),offset_y:k.y+e.getParam("contextmenu_offset_y",0),constrain:1,keyboard_focus:true});g._menu=d;d.add({title:"advanced.cut_desc",icon:"cut",cmd:"Cut"}).setDisabled(f);d.add({title:"advanced.copy_desc",icon:"copy",cmd:"Copy"}).setDisabled(f);d.add({title:"advanced.paste_desc",icon:"paste",cmd:"Paste"});if((h.nodeName=="A"&&!e.dom.getAttrib(h,"name"))||!f){d.addSeparator();d.add({title:"advanced.link_desc",icon:"link",cmd:e.plugins.advlink?"mceAdvLink":"mceLink",ui:true});d.add({title:"advanced.unlink_desc",icon:"unlink",cmd:"UnLink"})}d.addSeparator();d.add({title:"advanced.image_desc",icon:"image",cmd:e.plugins.advimage?"mceAdvImage":"mceImage",ui:true});d.addSeparator();i=d.addMenu({title:"contextmenu.align"});i.add({title:"contextmenu.left",icon:"justifyleft",cmd:"JustifyLeft"});i.add({title:"contextmenu.center",icon:"justifycenter",cmd:"JustifyCenter"});i.add({title:"contextmenu.right",icon:"justifyright",cmd:"JustifyRight"});i.add({title:"contextmenu.full",icon:"justifyfull",cmd:"JustifyFull"});g.onContextMenu.dispatch(g,d,h,f);return d}});tinymce.PluginManager.add("contextmenu",tinymce.plugins.ContextMenu)})();
|
(function(){var a=tinymce.dom.Event,c=tinymce.each,b=tinymce.DOM;tinymce.create("tinymce.plugins.ContextMenu",{init:function(f){var i=this,g,d,j,e;i.editor=f;d=f.settings.contextmenu_never_use_native;i.onContextMenu=new tinymce.util.Dispatcher(this);e=function(k){h(f,k)};g=f.onContextMenu.add(function(k,l){if((j!==0?j:l.ctrlKey)&&!d){return}a.cancel(l);if(l.target.nodeName=="IMG"){k.selection.select(l.target)}i._getMenu(k).showMenu(l.clientX||l.pageX,l.clientY||l.pageY);a.add(k.getDoc(),"click",e);k.nodeChanged()});f.onRemove.add(function(){if(i._menu){i._menu.removeAll()}});function h(k,l){j=0;if(l&&l.button==2){j=l.ctrlKey;return}if(i._menu){i._menu.removeAll();i._menu.destroy();a.remove(k.getDoc(),"click",e);i._menu=null}}f.onMouseDown.add(h);f.onKeyDown.add(h);f.onKeyDown.add(function(k,l){if(l.shiftKey&&!l.ctrlKey&&!l.altKey&&l.keyCode===121){a.cancel(l);g(k,l)}})},getInfo:function(){return{longname:"Contextmenu",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_getMenu:function(e){var g=this,d=g._menu,j=e.selection,f=j.isCollapsed(),h=j.getNode()||e.getBody(),i,k;if(d){d.removeAll();d.destroy()}k=b.getPos(e.getContentAreaContainer());d=e.controlManager.createDropMenu("contextmenu",{offset_x:k.x+e.getParam("contextmenu_offset_x",0),offset_y:k.y+e.getParam("contextmenu_offset_y",0),constrain:1,keyboard_focus:true});g._menu=d;d.add({title:"advanced.cut_desc",icon:"cut",cmd:"Cut"}).setDisabled(f);d.add({title:"advanced.copy_desc",icon:"copy",cmd:"Copy"}).setDisabled(f);d.add({title:"advanced.paste_desc",icon:"paste",cmd:"Paste"});if((h.nodeName=="A"&&!e.dom.getAttrib(h,"name"))||!f){d.addSeparator();d.add({title:"advanced.link_desc",icon:"link",cmd:e.plugins.advlink?"mceAdvLink":"mceLink",ui:true});d.add({title:"advanced.unlink_desc",icon:"unlink",cmd:"UnLink"})}d.addSeparator();d.add({title:"advanced.image_desc",icon:"image",cmd:e.plugins.advimage?"mceAdvImage":"mceImage",ui:true});d.addSeparator();i=d.addMenu({title:"contextmenu.align"});i.add({title:"contextmenu.left",icon:"justifyleft",cmd:"JustifyLeft"});i.add({title:"contextmenu.center",icon:"justifycenter",cmd:"JustifyCenter"});i.add({title:"contextmenu.right",icon:"justifyright",cmd:"JustifyRight"});i.add({title:"contextmenu.full",icon:"justifyfull",cmd:"JustifyFull"});g.onContextMenu.dispatch(g,d,h,f);return d}});tinymce.PluginManager.add("contextmenu",tinymce.plugins.ContextMenu)})();
|
|
@ -27,7 +27,7 @@
|
||||||
* @param {string} url Absolute URL to where the plugin is located.
|
* @param {string} url Absolute URL to where the plugin is located.
|
||||||
*/
|
*/
|
||||||
init : function(ed) {
|
init : function(ed) {
|
||||||
var t = this, showMenu, contextmenuNeverUseNative, realCtrlKey;
|
var t = this, showMenu, contextmenuNeverUseNative, realCtrlKey, hideMenu;
|
||||||
|
|
||||||
t.editor = ed;
|
t.editor = ed;
|
||||||
|
|
||||||
|
@ -42,6 +42,10 @@
|
||||||
*/
|
*/
|
||||||
t.onContextMenu = new tinymce.util.Dispatcher(this);
|
t.onContextMenu = new tinymce.util.Dispatcher(this);
|
||||||
|
|
||||||
|
hideMenu = function(e) {
|
||||||
|
hide(ed, e);
|
||||||
|
};
|
||||||
|
|
||||||
showMenu = ed.onContextMenu.add(function(ed, e) {
|
showMenu = ed.onContextMenu.add(function(ed, e) {
|
||||||
// Block TinyMCE menu on ctrlKey and work around Safari issue
|
// Block TinyMCE menu on ctrlKey and work around Safari issue
|
||||||
if ((realCtrlKey !== 0 ? realCtrlKey : e.ctrlKey) && !contextmenuNeverUseNative)
|
if ((realCtrlKey !== 0 ? realCtrlKey : e.ctrlKey) && !contextmenuNeverUseNative)
|
||||||
|
@ -54,9 +58,7 @@
|
||||||
ed.selection.select(e.target);
|
ed.selection.select(e.target);
|
||||||
|
|
||||||
t._getMenu(ed).showMenu(e.clientX || e.pageX, e.clientY || e.pageY);
|
t._getMenu(ed).showMenu(e.clientX || e.pageX, e.clientY || e.pageY);
|
||||||
Event.add(ed.getDoc(), 'click', function(e) {
|
Event.add(ed.getDoc(), 'click', hideMenu);
|
||||||
hide(ed, e);
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.nodeChanged();
|
ed.nodeChanged();
|
||||||
});
|
});
|
||||||
|
@ -79,7 +81,7 @@
|
||||||
if (t._menu) {
|
if (t._menu) {
|
||||||
t._menu.removeAll();
|
t._menu.removeAll();
|
||||||
t._menu.destroy();
|
t._menu.destroy();
|
||||||
Event.remove(ed.getDoc(), 'click', hide);
|
Event.remove(ed.getDoc(), 'click', hideMenu);
|
||||||
t._menu = null;
|
t._menu = null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
(function(){tinymce.create("tinymce.plugins.Directionality",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceDirectionLTR",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="ltr"){a.dom.setAttrib(d,"dir","ltr")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addCommand("mceDirectionRTL",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="rtl"){a.dom.setAttrib(d,"dir","rtl")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addButton("ltr",{title:"directionality.ltr_desc",cmd:"mceDirectionLTR"});a.addButton("rtl",{title:"directionality.rtl_desc",cmd:"mceDirectionRTL"});a.onNodeChange.add(c._nodeChange,c)},getInfo:function(){return{longname:"Directionality",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_nodeChange:function(b,a,e){var d=b.dom,c;e=d.getParent(e,d.isBlock);if(!e){a.setDisabled("ltr",1);a.setDisabled("rtl",1);return}c=d.getAttrib(e,"dir");a.setActive("ltr",c=="ltr");a.setDisabled("ltr",0);a.setActive("rtl",c=="rtl");a.setDisabled("rtl",0)}});tinymce.PluginManager.add("directionality",tinymce.plugins.Directionality)})();
|
(function(){tinymce.create("tinymce.plugins.Directionality",{init:function(b,c){var d=this;d.editor=b;function a(e){var h=b.dom,g,f=b.selection.getSelectedBlocks();if(f.length){g=h.getAttrib(f[0],"dir");tinymce.each(f,function(i){if(!h.getParent(i.parentNode,"*[dir='"+e+"']",h.getRoot())){if(g!=e){h.setAttrib(i,"dir",e)}else{h.setAttrib(i,"dir",null)}}});b.nodeChanged()}}b.addCommand("mceDirectionLTR",function(){a("ltr")});b.addCommand("mceDirectionRTL",function(){a("rtl")});b.addButton("ltr",{title:"directionality.ltr_desc",cmd:"mceDirectionLTR"});b.addButton("rtl",{title:"directionality.rtl_desc",cmd:"mceDirectionRTL"});b.onNodeChange.add(d._nodeChange,d)},getInfo:function(){return{longname:"Directionality",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_nodeChange:function(b,a,e){var d=b.dom,c;e=d.getParent(e,d.isBlock);if(!e){a.setDisabled("ltr",1);a.setDisabled("rtl",1);return}c=d.getAttrib(e,"dir");a.setActive("ltr",c=="ltr");a.setDisabled("ltr",0);a.setActive("rtl",c=="rtl");a.setDisabled("rtl",0)}});tinymce.PluginManager.add("directionality",tinymce.plugins.Directionality)})();
|
|
@ -15,30 +15,33 @@
|
||||||
|
|
||||||
t.editor = ed;
|
t.editor = ed;
|
||||||
|
|
||||||
ed.addCommand('mceDirectionLTR', function() {
|
function setDir(dir) {
|
||||||
var e = ed.dom.getParent(ed.selection.getNode(), ed.dom.isBlock);
|
var dom = ed.dom, curDir, blocks = ed.selection.getSelectedBlocks();
|
||||||
|
|
||||||
if (e) {
|
if (blocks.length) {
|
||||||
if (ed.dom.getAttrib(e, "dir") != "ltr")
|
curDir = dom.getAttrib(blocks[0], "dir");
|
||||||
ed.dom.setAttrib(e, "dir", "ltr");
|
|
||||||
else
|
tinymce.each(blocks, function(block) {
|
||||||
ed.dom.setAttrib(e, "dir", "");
|
// Add dir to block if the parent block doesn't already have that dir
|
||||||
|
if (!dom.getParent(block.parentNode, "*[dir='" + dir + "']", dom.getRoot())) {
|
||||||
|
if (curDir != dir) {
|
||||||
|
dom.setAttrib(block, "dir", dir);
|
||||||
|
} else {
|
||||||
|
dom.setAttrib(block, "dir", null);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
ed.nodeChanged();
|
ed.nodeChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ed.addCommand('mceDirectionLTR', function() {
|
||||||
|
setDir("ltr");
|
||||||
});
|
});
|
||||||
|
|
||||||
ed.addCommand('mceDirectionRTL', function() {
|
ed.addCommand('mceDirectionRTL', function() {
|
||||||
var e = ed.dom.getParent(ed.selection.getNode(), ed.dom.isBlock);
|
setDir("rtl");
|
||||||
|
|
||||||
if (e) {
|
|
||||||
if (ed.dom.getAttrib(e, "dir") != "rtl")
|
|
||||||
ed.dom.setAttrib(e, "dir", "rtl");
|
|
||||||
else
|
|
||||||
ed.dom.setAttrib(e, "dir", "");
|
|
||||||
}
|
|
||||||
|
|
||||||
ed.nodeChanged();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
ed.addButton('ltr', {title : 'directionality.ltr_desc', cmd : 'mceDirectionLTR'});
|
ed.addButton('ltr', {title : 'directionality.ltr_desc', cmd : 'mceDirectionLTR'});
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
(function(){var a=tinymce.DOM;tinymce.create("tinymce.plugins.FullScreenPlugin",{init:function(d,e){var f=this,g={},c,b;f.editor=d;d.addCommand("mceFullScreen",function(){var i,j=a.doc.documentElement;if(d.getParam("fullscreen_is_enabled")){if(d.getParam("fullscreen_new_window")){closeFullscreen()}else{a.win.setTimeout(function(){tinymce.dom.Event.remove(a.win,"resize",f.resizeFunc);tinyMCE.get(d.getParam("fullscreen_editor_id")).setContent(d.getContent());tinyMCE.remove(d);a.remove("mce_fullscreen_container");j.style.overflow=d.getParam("fullscreen_html_overflow");a.setStyle(a.doc.body,"overflow",d.getParam("fullscreen_overflow"));a.win.scrollTo(d.getParam("fullscreen_scrollx"),d.getParam("fullscreen_scrolly"));tinyMCE.settings=tinyMCE.oldSettings},10)}return}if(d.getParam("fullscreen_new_window")){i=a.win.open(e+"/fullscreen.htm","mceFullScreenPopup","fullscreen=yes,menubar=no,toolbar=no,scrollbars=no,resizable=yes,left=0,top=0,width="+screen.availWidth+",height="+screen.availHeight);try{i.resizeTo(screen.availWidth,screen.availHeight)}catch(h){}}else{tinyMCE.oldSettings=tinyMCE.settings;g.fullscreen_overflow=a.getStyle(a.doc.body,"overflow",1)||"auto";g.fullscreen_html_overflow=a.getStyle(j,"overflow",1);c=a.getViewPort();g.fullscreen_scrollx=c.x;g.fullscreen_scrolly=c.y;if(tinymce.isOpera&&g.fullscreen_overflow=="visible"){g.fullscreen_overflow="auto"}if(tinymce.isIE&&g.fullscreen_overflow=="scroll"){g.fullscreen_overflow="auto"}if(tinymce.isIE&&(g.fullscreen_html_overflow=="visible"||g.fullscreen_html_overflow=="scroll")){g.fullscreen_html_overflow="auto"}if(g.fullscreen_overflow=="0px"){g.fullscreen_overflow=""}a.setStyle(a.doc.body,"overflow","hidden");j.style.overflow="hidden";c=a.getViewPort();a.win.scrollTo(0,0);if(tinymce.isIE){c.h-=1}if(tinymce.isIE6||document.compatMode=="BackCompat"){b="absolute;top:"+c.y}else{b="fixed;top:0"}n=a.add(a.doc.body,"div",{id:"mce_fullscreen_container",style:"position:"+b+";left:0;width:"+c.w+"px;height:"+c.h+"px;z-index:200000;"});a.add(n,"div",{id:"mce_fullscreen"});tinymce.each(d.settings,function(k,l){g[l]=k});g.id="mce_fullscreen";g.width=n.clientWidth;g.height=n.clientHeight-15;g.fullscreen_is_enabled=true;g.fullscreen_editor_id=d.id;g.theme_advanced_resizing=false;g.save_onsavecallback=function(){d.setContent(tinyMCE.get(g.id).getContent());d.execCommand("mceSave")};tinymce.each(d.getParam("fullscreen_settings"),function(m,l){g[l]=m});if(g.theme_advanced_toolbar_location==="external"){g.theme_advanced_toolbar_location="top"}f.fullscreenEditor=new tinymce.Editor("mce_fullscreen",g);f.fullscreenEditor.onInit.add(function(){f.fullscreenEditor.setContent(d.getContent());f.fullscreenEditor.focus()});f.fullscreenEditor.render();f.fullscreenElement=new tinymce.dom.Element("mce_fullscreen_container");f.fullscreenElement.update();f.resizeFunc=tinymce.dom.Event.add(a.win,"resize",function(){var o=tinymce.DOM.getViewPort(),l=f.fullscreenEditor,k,m;k=l.dom.getSize(l.getContainer().firstChild);m=l.dom.getSize(l.getContainer().getElementsByTagName("iframe")[0]);l.theme.resizeTo(o.w-k.w+m.w,o.h-k.h+m.h)})}});d.addButton("fullscreen",{title:"fullscreen.desc",cmd:"mceFullScreen"});d.onNodeChange.add(function(i,h){h.setActive("fullscreen",i.getParam("fullscreen_is_enabled"))})},getInfo:function(){return{longname:"Fullscreen",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullscreen",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("fullscreen",tinymce.plugins.FullScreenPlugin)})();
|
(function(){var a=tinymce.DOM;tinymce.create("tinymce.plugins.FullScreenPlugin",{init:function(d,e){var f=this,g={},c,b;f.editor=d;d.addCommand("mceFullScreen",function(){var i,j=a.doc.documentElement;if(d.getParam("fullscreen_is_enabled")){if(d.getParam("fullscreen_new_window")){closeFullscreen()}else{a.win.setTimeout(function(){tinymce.dom.Event.remove(a.win,"resize",f.resizeFunc);tinyMCE.get(d.getParam("fullscreen_editor_id")).setContent(d.getContent());tinyMCE.remove(d);a.remove("mce_fullscreen_container");j.style.overflow=d.getParam("fullscreen_html_overflow");a.setStyle(a.doc.body,"overflow",d.getParam("fullscreen_overflow"));a.win.scrollTo(d.getParam("fullscreen_scrollx"),d.getParam("fullscreen_scrolly"));tinyMCE.settings=tinyMCE.oldSettings},10)}return}if(d.getParam("fullscreen_new_window")){i=a.win.open(e+"/fullscreen.htm","mceFullScreenPopup","fullscreen=yes,menubar=no,toolbar=no,scrollbars=no,resizable=yes,left=0,top=0,width="+screen.availWidth+",height="+screen.availHeight);try{i.resizeTo(screen.availWidth,screen.availHeight)}catch(h){}}else{tinyMCE.oldSettings=tinyMCE.settings;g.fullscreen_overflow=a.getStyle(a.doc.body,"overflow",1)||"auto";g.fullscreen_html_overflow=a.getStyle(j,"overflow",1);c=a.getViewPort();g.fullscreen_scrollx=c.x;g.fullscreen_scrolly=c.y;if(tinymce.isOpera&&g.fullscreen_overflow=="visible"){g.fullscreen_overflow="auto"}if(tinymce.isIE&&g.fullscreen_overflow=="scroll"){g.fullscreen_overflow="auto"}if(tinymce.isIE&&(g.fullscreen_html_overflow=="visible"||g.fullscreen_html_overflow=="scroll")){g.fullscreen_html_overflow="auto"}if(g.fullscreen_overflow=="0px"){g.fullscreen_overflow=""}a.setStyle(a.doc.body,"overflow","hidden");j.style.overflow="hidden";c=a.getViewPort();a.win.scrollTo(0,0);if(tinymce.isIE){c.h-=1}if(tinymce.isIE6||document.compatMode=="BackCompat"){b="absolute;top:"+c.y}else{b="fixed;top:0"}n=a.add(a.doc.body,"div",{id:"mce_fullscreen_container",style:"position:"+b+";left:0;width:"+c.w+"px;height:"+c.h+"px;z-index:200000;"});a.add(n,"div",{id:"mce_fullscreen"});tinymce.each(d.settings,function(k,l){g[l]=k});g.id="mce_fullscreen";g.width=n.clientWidth;g.height=n.clientHeight-15;g.fullscreen_is_enabled=true;g.fullscreen_editor_id=d.id;g.theme_advanced_resizing=false;g.save_onsavecallback=function(){d.setContent(tinyMCE.get(g.id).getContent());d.execCommand("mceSave")};tinymce.each(d.getParam("fullscreen_settings"),function(m,l){g[l]=m});if(g.theme_advanced_toolbar_location==="external"){g.theme_advanced_toolbar_location="top"}f.fullscreenEditor=new tinymce.Editor("mce_fullscreen",g);f.fullscreenEditor.onInit.add(function(){f.fullscreenEditor.setContent(d.getContent());f.fullscreenEditor.focus()});f.fullscreenEditor.render();f.fullscreenElement=new tinymce.dom.Element("mce_fullscreen_container");f.fullscreenElement.update();f.resizeFunc=tinymce.dom.Event.add(a.win,"resize",function(){var o=tinymce.DOM.getViewPort(),l=f.fullscreenEditor,k,m;k=l.dom.getSize(l.getContainer().getElementsByTagName("table")[0]);m=l.dom.getSize(l.getContainer().getElementsByTagName("iframe")[0]);l.theme.resizeTo(o.w-k.w+m.w,o.h-k.h+m.h)})}});d.addButton("fullscreen",{title:"fullscreen.desc",cmd:"mceFullScreen"});d.onNodeChange.add(function(i,h){h.setActive("fullscreen",i.getParam("fullscreen_is_enabled"))})},getInfo:function(){return{longname:"Fullscreen",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullscreen",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("fullscreen",tinymce.plugins.FullScreenPlugin)})();
|
|
@ -127,7 +127,7 @@
|
||||||
var vp = tinymce.DOM.getViewPort(), fed = t.fullscreenEditor, outerSize, innerSize;
|
var vp = tinymce.DOM.getViewPort(), fed = t.fullscreenEditor, outerSize, innerSize;
|
||||||
|
|
||||||
// Get outer/inner size to get a delta size that can be used to calc the new iframe size
|
// Get outer/inner size to get a delta size that can be used to calc the new iframe size
|
||||||
outerSize = fed.dom.getSize(fed.getContainer().firstChild);
|
outerSize = fed.dom.getSize(fed.getContainer().getElementsByTagName('table')[0]);
|
||||||
innerSize = fed.dom.getSize(fed.getContainer().getElementsByTagName('iframe')[0]);
|
innerSize = fed.dom.getSize(fed.getContainer().getElementsByTagName('iframe')[0]);
|
||||||
|
|
||||||
fed.theme.resizeTo(vp.w - outerSize.w + innerSize.w, vp.h - outerSize.h + innerSize.h);
|
fed.theme.resizeTo(vp.w - outerSize.w + innerSize.w, vp.h - outerSize.h + innerSize.h);
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
(function(a){a.onAddEditor.addToTop(function(c,b){b.settings.inline_styles=false});a.create("tinymce.plugins.LegacyOutput",{init:function(b){b.onInit.add(function(){var c="p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img",e=a.explode(b.settings.font_size_style_values),d=b.schema;b.formatter.register({alignleft:{selector:c,attributes:{align:"left"}},aligncenter:{selector:c,attributes:{align:"center"}},alignright:{selector:c,attributes:{align:"right"}},alignfull:{selector:c,attributes:{align:"justify"}},bold:[{inline:"b",remove:"all"},{inline:"strong",remove:"all"},{inline:"span",styles:{fontWeight:"bold"}}],italic:[{inline:"i",remove:"all"},{inline:"em",remove:"all"},{inline:"span",styles:{fontStyle:"italic"}}],underline:[{inline:"u",remove:"all"},{inline:"span",styles:{textDecoration:"underline"},exact:true}],strikethrough:[{inline:"strike",remove:"all"},{inline:"span",styles:{textDecoration:"line-through"},exact:true}],fontname:{inline:"font",attributes:{face:"%value"}},fontsize:{inline:"font",attributes:{size:function(f){return a.inArray(e,f.value)+1}}},forecolor:{inline:"font",styles:{color:"%value"}},hilitecolor:{inline:"font",styles:{backgroundColor:"%value"}}});a.each("b,i,u,strike".split(","),function(f){d.addValidElements(f+"[*]")});if(!d.getElementRule("font")){d.addValidElements("font[face|size|color|style]")}a.each(c.split(","),function(f){var h=d.getElementRule(f),g;if(h){if(!h.attributes.align){h.attributes.align={};h.attributesOrder.push("align")}}});b.onNodeChange.add(function(g,k){var j,f,h,i;f=g.dom.getParent(g.selection.getNode(),"font");if(f){h=f.face;i=f.size}if(j=k.get("fontselect")){j.select(function(l){return l==h})}if(j=k.get("fontsizeselect")){j.select(function(m){var l=a.inArray(e,m.fontSize);return l+1==i})}})})},getInfo:function(){return{longname:"LegacyOutput",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/legacyoutput",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("legacyoutput",a.plugins.LegacyOutput)})(tinymce);
|
(function(a){a.onAddEditor.addToTop(function(c,b){b.settings.inline_styles=false});a.create("tinymce.plugins.LegacyOutput",{init:function(b){b.onInit.add(function(){var c="p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img",e=a.explode(b.settings.font_size_style_values),d=b.schema;b.formatter.register({alignleft:{selector:c,attributes:{align:"left"}},aligncenter:{selector:c,attributes:{align:"center"}},alignright:{selector:c,attributes:{align:"right"}},alignfull:{selector:c,attributes:{align:"justify"}},bold:[{inline:"b",remove:"all"},{inline:"strong",remove:"all"},{inline:"span",styles:{fontWeight:"bold"}}],italic:[{inline:"i",remove:"all"},{inline:"em",remove:"all"},{inline:"span",styles:{fontStyle:"italic"}}],underline:[{inline:"u",remove:"all"},{inline:"span",styles:{textDecoration:"underline"},exact:true}],strikethrough:[{inline:"strike",remove:"all"},{inline:"span",styles:{textDecoration:"line-through"},exact:true}],fontname:{inline:"font",attributes:{face:"%value"}},fontsize:{inline:"font",attributes:{size:function(f){return a.inArray(e,f.value)+1}}},forecolor:{inline:"font",attributes:{color:"%value"}},hilitecolor:{inline:"font",styles:{backgroundColor:"%value"}}});a.each("b,i,u,strike".split(","),function(f){d.addValidElements(f+"[*]")});if(!d.getElementRule("font")){d.addValidElements("font[face|size|color|style]")}a.each(c.split(","),function(f){var h=d.getElementRule(f),g;if(h){if(!h.attributes.align){h.attributes.align={};h.attributesOrder.push("align")}}});b.onNodeChange.add(function(g,k){var j,f,h,i;f=g.dom.getParent(g.selection.getNode(),"font");if(f){h=f.face;i=f.size}if(j=k.get("fontselect")){j.select(function(l){return l==h})}if(j=k.get("fontsizeselect")){j.select(function(m){var l=a.inArray(e,m.fontSize);return l+1==i})}})})},getInfo:function(){return{longname:"LegacyOutput",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/legacyoutput",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("legacyoutput",a.plugins.LegacyOutput)})(tinymce);
|
|
@ -68,7 +68,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
// Setup font elements for colors as well
|
// Setup font elements for colors as well
|
||||||
forecolor : {inline : 'font', styles : {color : '%value'}},
|
forecolor : {inline : 'font', attributes : {color : '%value'}},
|
||||||
hilitecolor : {inline : 'font', styles : {backgroundColor : '%value'}}
|
hilitecolor : {inline : 'font', styles : {backgroundColor : '%value'}}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -440,9 +440,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function fixDeletingFirstCharOfList(ed, e) {
|
function fixDeletingFirstCharOfList(ed, e) {
|
||||||
function listElements(list, li) {
|
function listElements(li) {
|
||||||
var elements = [];
|
var elements = [];
|
||||||
var walker = new tinymce.dom.TreeWalker(li, list);
|
var walker = new tinymce.dom.TreeWalker(li.firstChild, li);
|
||||||
for (var node = walker.current(); node; node = walker.next()) {
|
for (var node = walker.current(); node; node = walker.next()) {
|
||||||
if (ed.dom.is(node, 'ol,ul,li')) {
|
if (ed.dom.is(node, 'ol,ul,li')) {
|
||||||
elements.push(node);
|
elements.push(node);
|
||||||
|
@ -454,9 +454,11 @@
|
||||||
if (e.keyCode == tinymce.VK.BACKSPACE) {
|
if (e.keyCode == tinymce.VK.BACKSPACE) {
|
||||||
var li = getLi();
|
var li = getLi();
|
||||||
if (li) {
|
if (li) {
|
||||||
var list = ed.dom.getParent(li, 'ol,ul');
|
var list = ed.dom.getParent(li, 'ol,ul'),
|
||||||
if (list && list.firstChild === li) {
|
rng = ed.selection.getRng();
|
||||||
var elements = listElements(list, li);
|
if (list && list.firstChild === li && rng.startOffset == 0) {
|
||||||
|
var elements = listElements(li);
|
||||||
|
elements.unshift(li);
|
||||||
ed.execCommand("Outdent", false, elements);
|
ed.execCommand("Outdent", false, elements);
|
||||||
ed.undoManager.add();
|
ed.undoManager.add();
|
||||||
return Event.cancel(e);
|
return Event.cancel(e);
|
||||||
|
@ -474,7 +476,7 @@
|
||||||
ed.dom.remove(li, true);
|
ed.dom.remove(li, true);
|
||||||
var textNodes = tinymce.grep(prevLi.childNodes, function(n){ return n.nodeType === 3 });
|
var textNodes = tinymce.grep(prevLi.childNodes, function(n){ return n.nodeType === 3 });
|
||||||
if (textNodes.length === 1) {
|
if (textNodes.length === 1) {
|
||||||
var textNode = textNodes[0]
|
var textNode = textNodes[0];
|
||||||
ed.selection.setCursorLocation(textNode, textNode.length);
|
ed.selection.setCursorLocation(textNode, textNode.length);
|
||||||
}
|
}
|
||||||
ed.undoManager.add();
|
ed.undoManager.add();
|
||||||
|
@ -722,7 +724,8 @@
|
||||||
} else {
|
} else {
|
||||||
actions = {
|
actions = {
|
||||||
defaultAction: convertListItemToParagraph,
|
defaultAction: convertListItemToParagraph,
|
||||||
elements: this.selectedBlocks()
|
elements: this.selectedBlocks(),
|
||||||
|
processEvenIfEmpty: true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
this.process(actions);
|
this.process(actions);
|
||||||
|
@ -826,7 +829,7 @@
|
||||||
|
|
||||||
function processElement(element) {
|
function processElement(element) {
|
||||||
dom.removeClass(element, '_mce_act_on');
|
dom.removeClass(element, '_mce_act_on');
|
||||||
if (!element || element.nodeType !== 1 || selectedBlocks.length > 1 && isEmptyElement(element)) {
|
if (!element || element.nodeType !== 1 || ! actions.processEvenIfEmpty && selectedBlocks.length > 1 && isEmptyElement(element)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
element = findItemToOperateOn(element, dom);
|
element = findItemToOperateOn(element, dom);
|
||||||
|
@ -838,7 +841,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function recurse(element) {
|
function recurse(element) {
|
||||||
t.splitSafeEach(element.childNodes, processElement);
|
t.splitSafeEach(element.childNodes, processElement, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
function brAtEdgeOfSelection(container, offset) {
|
function brAtEdgeOfSelection(container, offset) {
|
||||||
|
@ -889,9 +892,11 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
splitSafeEach: function(elements, f) {
|
splitSafeEach: function(elements, f, forceClassBase) {
|
||||||
if (tinymce.isGecko && (/Firefox\/[12]\.[0-9]/.test(navigator.userAgent) ||
|
if (forceClassBase ||
|
||||||
/Firefox\/3\.[0-4]/.test(navigator.userAgent))) {
|
(tinymce.isGecko &&
|
||||||
|
(/Firefox\/[12]\.[0-9]/.test(navigator.userAgent) ||
|
||||||
|
/Firefox\/3\.[0-4]/.test(navigator.userAgent)))) {
|
||||||
this.classBasedEach(elements, f);
|
this.classBasedEach(elements, f);
|
||||||
} else {
|
} else {
|
||||||
each(elements, f);
|
each(elements, f);
|
||||||
|
@ -932,8 +937,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
selectedBlocks: function() {
|
selectedBlocks: function() {
|
||||||
var ed = this.ed
|
var ed = this.ed, selectedBlocks = ed.selection.getSelectedBlocks();
|
||||||
var selectedBlocks = ed.selection.getSelectedBlocks();
|
|
||||||
return selectedBlocks.length == 0 ? [ ed.dom.getRoot() ] : selectedBlocks;
|
return selectedBlocks.length == 0 ? [ ed.dom.getRoot() ] : selectedBlocks;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -28,6 +28,10 @@
|
||||||
["Audio"]
|
["Audio"]
|
||||||
];
|
];
|
||||||
|
|
||||||
|
function normalizeSize(size) {
|
||||||
|
return typeof(size) == "string" ? size.replace(/[^0-9%]/g, '') : size;
|
||||||
|
}
|
||||||
|
|
||||||
function toArray(obj) {
|
function toArray(obj) {
|
||||||
var undef, out, i;
|
var undef, out, i;
|
||||||
|
|
||||||
|
@ -258,8 +262,8 @@
|
||||||
'data-mce-json' : JSON.serialize(data, "'")
|
'data-mce-json' : JSON.serialize(data, "'")
|
||||||
});
|
});
|
||||||
|
|
||||||
img.width = data.width || (data.type == 'audio' ? "300" : "320");
|
img.width = data.width = normalizeSize(data.width || (data.type == 'audio' ? "300" : "320"));
|
||||||
img.height = data.height || (data.type == 'audio' ? "32" : "240");
|
img.height = data.height = normalizeSize(data.height || (data.type == 'audio' ? "32" : "240"));
|
||||||
|
|
||||||
return img;
|
return img;
|
||||||
},
|
},
|
||||||
|
@ -378,7 +382,7 @@
|
||||||
data = JSON.parse(data);
|
data = JSON.parse(data);
|
||||||
typeItem = this.getType(node.attr('class'));
|
typeItem = this.getType(node.attr('class'));
|
||||||
|
|
||||||
style = node.attr('data-mce-style')
|
style = node.attr('data-mce-style');
|
||||||
if (!style) {
|
if (!style) {
|
||||||
style = node.attr('style');
|
style = node.attr('style');
|
||||||
|
|
||||||
|
@ -386,6 +390,10 @@
|
||||||
style = editor.dom.serializeStyle(editor.dom.parseStyle(style, 'img'));
|
style = editor.dom.serializeStyle(editor.dom.parseStyle(style, 'img'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Use node width/height to override the data width/height when the placeholder is resized
|
||||||
|
data.width = node.attr('width') || data.width;
|
||||||
|
data.height = node.attr('height') || data.height;
|
||||||
|
|
||||||
// Handle iframe
|
// Handle iframe
|
||||||
if (typeItem.name === 'Iframe') {
|
if (typeItem.name === 'Iframe') {
|
||||||
replacement = new Node('iframe', 1);
|
replacement = new Node('iframe', 1);
|
||||||
|
@ -434,8 +442,8 @@
|
||||||
// Create new object element
|
// Create new object element
|
||||||
video = new Node('video', 1).attr(tinymce.extend({
|
video = new Node('video', 1).attr(tinymce.extend({
|
||||||
id : node.attr('id'),
|
id : node.attr('id'),
|
||||||
width: node.attr('width'),
|
width: normalizeSize(node.attr('width')),
|
||||||
height: node.attr('height'),
|
height: normalizeSize(node.attr('height')),
|
||||||
style : style
|
style : style
|
||||||
}, data.video.attrs));
|
}, data.video.attrs));
|
||||||
|
|
||||||
|
@ -473,8 +481,8 @@
|
||||||
// Create new object element
|
// Create new object element
|
||||||
audio = new Node('audio', 1).attr(tinymce.extend({
|
audio = new Node('audio', 1).attr(tinymce.extend({
|
||||||
id : node.attr('id'),
|
id : node.attr('id'),
|
||||||
width: node.attr('width'),
|
width: normalizeSize(node.attr('width')),
|
||||||
height: node.attr('height'),
|
height: normalizeSize(node.attr('height')),
|
||||||
style : style
|
style : style
|
||||||
}, data.video.attrs));
|
}, data.video.attrs));
|
||||||
|
|
||||||
|
@ -502,8 +510,8 @@
|
||||||
embed.shortEnded = true;
|
embed.shortEnded = true;
|
||||||
embed.attr({
|
embed.attr({
|
||||||
id: node.attr('id'),
|
id: node.attr('id'),
|
||||||
width: node.attr('width'),
|
width: normalizeSize(node.attr('width')),
|
||||||
height: node.attr('height'),
|
height: normalizeSize(node.attr('height')),
|
||||||
style : style,
|
style : style,
|
||||||
type: node.attr('type')
|
type: node.attr('type')
|
||||||
});
|
});
|
||||||
|
@ -531,8 +539,8 @@
|
||||||
// Create new object element
|
// Create new object element
|
||||||
object = new Node('object', 1).attr({
|
object = new Node('object', 1).attr({
|
||||||
id : node.attr('id'),
|
id : node.attr('id'),
|
||||||
width: node.attr('width'),
|
width: normalizeSize(node.attr('width')),
|
||||||
height: node.attr('height'),
|
height: normalizeSize(node.attr('height')),
|
||||||
style : style
|
style : style
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -576,8 +584,8 @@
|
||||||
embed.shortEnded = true;
|
embed.shortEnded = true;
|
||||||
embed.attr({
|
embed.attr({
|
||||||
id: node.attr('id'),
|
id: node.attr('id'),
|
||||||
width: node.attr('width'),
|
width: normalizeSize(node.attr('width')),
|
||||||
height: node.attr('height'),
|
height: normalizeSize(node.attr('height')),
|
||||||
style : style,
|
style : style,
|
||||||
type: typeItem.mimes[0]
|
type: typeItem.mimes[0]
|
||||||
});
|
});
|
||||||
|
@ -793,8 +801,8 @@
|
||||||
|
|
||||||
if (iframe) {
|
if (iframe) {
|
||||||
// Get width/height
|
// Get width/height
|
||||||
width = iframe.attr('width');
|
width = normalizeSize(iframe.attr('width'));
|
||||||
height = iframe.attr('height');
|
height = normalizeSize(iframe.attr('height'));
|
||||||
style = style || iframe.attr('style');
|
style = style || iframe.attr('style');
|
||||||
id = iframe.attr('id');
|
id = iframe.attr('id');
|
||||||
hspace = iframe.attr('hspace');
|
hspace = iframe.attr('hspace');
|
||||||
|
|
|
@ -78,7 +78,7 @@
|
||||||
get('video_altsource2_filebrowser').innerHTML = getBrowserHTML('video_filebrowser_altsource2','video_altsource2','media','media');
|
get('video_altsource2_filebrowser').innerHTML = getBrowserHTML('video_filebrowser_altsource2','video_altsource2','media','media');
|
||||||
get('audio_altsource1_filebrowser').innerHTML = getBrowserHTML('audio_filebrowser_altsource1','audio_altsource1','media','media');
|
get('audio_altsource1_filebrowser').innerHTML = getBrowserHTML('audio_filebrowser_altsource1','audio_altsource1','media','media');
|
||||||
get('audio_altsource2_filebrowser').innerHTML = getBrowserHTML('audio_filebrowser_altsource2','audio_altsource2','media','media');
|
get('audio_altsource2_filebrowser').innerHTML = getBrowserHTML('audio_filebrowser_altsource2','audio_altsource2','media','media');
|
||||||
get('video_poster_filebrowser').innerHTML = getBrowserHTML('filebrowser_poster','video_poster','media','image');
|
get('video_poster_filebrowser').innerHTML = getBrowserHTML('filebrowser_poster','video_poster','image','media');
|
||||||
|
|
||||||
html = self.getMediaListHTML('medialist', 'src', 'media', 'media');
|
html = self.getMediaListHTML('medialist', 'src', 'media', 'media');
|
||||||
if (html == "")
|
if (html == "")
|
||||||
|
@ -295,8 +295,17 @@
|
||||||
} else {
|
} else {
|
||||||
src = getVal("src");
|
src = getVal("src");
|
||||||
|
|
||||||
|
// YouTube Embed
|
||||||
|
if (src.match(/youtube\.com\/embed\/\w+/)) {
|
||||||
|
data.width = 425;
|
||||||
|
data.height = 350;
|
||||||
|
data.params.frameborder = '0';
|
||||||
|
data.type = 'iframe';
|
||||||
|
setVal('src', src);
|
||||||
|
setVal('media_type', data.type);
|
||||||
|
} else {
|
||||||
// YouTube *NEW*
|
// YouTube *NEW*
|
||||||
if (src.match(/youtu.be\/[a-z1-9.-_]+/)) {
|
if (src.match(/youtu\.be\/[a-z1-9.-_]+/)) {
|
||||||
data.width = 425;
|
data.width = 425;
|
||||||
data.height = 350;
|
data.height = 350;
|
||||||
data.params.frameborder = '0';
|
data.params.frameborder = '0';
|
||||||
|
@ -307,7 +316,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// YouTube
|
// YouTube
|
||||||
if (src.match(/youtube.com(.+)v=([^&]+)/)) {
|
if (src.match(/youtube\.com(.+)v=([^&]+)/)) {
|
||||||
data.width = 425;
|
data.width = 425;
|
||||||
data.height = 350;
|
data.height = 350;
|
||||||
data.params.frameborder = '0';
|
data.params.frameborder = '0';
|
||||||
|
@ -316,9 +325,10 @@
|
||||||
setVal('src', src);
|
setVal('src', src);
|
||||||
setVal('media_type', data.type);
|
setVal('media_type', data.type);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Google video
|
// Google video
|
||||||
if (src.match(/video.google.com(.+)docid=([^&]+)/)) {
|
if (src.match(/video\.google\.com(.+)docid=([^&]+)/)) {
|
||||||
data.width = 425;
|
data.width = 425;
|
||||||
data.height = 326;
|
data.height = 326;
|
||||||
data.type = 'flash';
|
data.type = 'flash';
|
||||||
|
@ -327,6 +337,39 @@
|
||||||
setVal('media_type', data.type);
|
setVal('media_type', data.type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Vimeo
|
||||||
|
if (src.match(/vimeo\.com\/([0-9]+)/)) {
|
||||||
|
data.width = 425;
|
||||||
|
data.height = 350;
|
||||||
|
data.params.frameborder = '0';
|
||||||
|
data.type = 'iframe';
|
||||||
|
src = 'http://player.vimeo.com/video/' + src.match(/vimeo.com\/([0-9]+)/)[1];
|
||||||
|
setVal('src', src);
|
||||||
|
setVal('media_type', data.type);
|
||||||
|
}
|
||||||
|
|
||||||
|
// stream.cz
|
||||||
|
if (src.match(/stream\.cz\/((?!object).)*\/([0-9]+)/)) {
|
||||||
|
data.width = 425;
|
||||||
|
data.height = 350;
|
||||||
|
data.params.frameborder = '0';
|
||||||
|
data.type = 'iframe';
|
||||||
|
src = 'http://www.stream.cz/object/' + src.match(/stream.cz\/[^/]+\/([0-9]+)/)[1];
|
||||||
|
setVal('src', src);
|
||||||
|
setVal('media_type', data.type);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Google maps
|
||||||
|
if (src.match(/maps\.google\.([a-z]{2,3})\/maps\/(.+)msid=(.+)/)) {
|
||||||
|
data.width = 425;
|
||||||
|
data.height = 350;
|
||||||
|
data.params.frameborder = '0';
|
||||||
|
data.type = 'iframe';
|
||||||
|
src = 'http://maps.google.com/maps/ms?msid=' + src.match(/msid=(.+)/)[1] + "&output=embed";
|
||||||
|
setVal('src', src);
|
||||||
|
setVal('media_type', data.type);
|
||||||
|
}
|
||||||
|
|
||||||
if (data.type == 'video') {
|
if (data.type == 'video') {
|
||||||
if (!data.video.sources)
|
if (!data.video.sources)
|
||||||
data.video.sources = [];
|
data.video.sources = [];
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -14,10 +14,7 @@
|
||||||
var VK = tinymce.VK;
|
var VK = tinymce.VK;
|
||||||
|
|
||||||
function handleContentEditableSelection(ed) {
|
function handleContentEditableSelection(ed) {
|
||||||
var dom = ed.dom, selection = ed.selection, invisibleChar, caretContainerId = 'mce_noneditablecaret';
|
var dom = ed.dom, selection = ed.selection, invisibleChar, caretContainerId = 'mce_noneditablecaret', invisibleChar = '\uFEFF';
|
||||||
|
|
||||||
// Setup invisible character use zero width space on Gecko since it doesn't change the height of the container
|
|
||||||
invisibleChar = tinymce.isGecko ? '\u200B' : '\uFEFF';
|
|
||||||
|
|
||||||
// Returns the content editable state of a node "true/false" or null
|
// Returns the content editable state of a node "true/false" or null
|
||||||
function getContentEditable(node) {
|
function getContentEditable(node) {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -23,6 +23,7 @@
|
||||||
paste_convert_headers_to_strong : false,
|
paste_convert_headers_to_strong : false,
|
||||||
paste_dialog_width : "450",
|
paste_dialog_width : "450",
|
||||||
paste_dialog_height : "400",
|
paste_dialog_height : "400",
|
||||||
|
paste_max_consecutive_linebreaks: 2,
|
||||||
paste_text_use_dialog : false,
|
paste_text_use_dialog : false,
|
||||||
paste_text_sticky : false,
|
paste_text_sticky : false,
|
||||||
paste_text_sticky_default : false,
|
paste_text_sticky_default : false,
|
||||||
|
@ -790,10 +791,23 @@
|
||||||
[/<\/t[dh]>\s*<t[dh][^>]*>/gi, "\t"], // Table cells get tabs betweem them
|
[/<\/t[dh]>\s*<t[dh][^>]*>/gi, "\t"], // Table cells get tabs betweem them
|
||||||
/<[a-z!\/?][^>]*>/gi, // Delete all remaining tags
|
/<[a-z!\/?][^>]*>/gi, // Delete all remaining tags
|
||||||
[/ /gi, " "], // Convert non-break spaces to regular spaces (remember, *plain text*)
|
[/ /gi, " "], // Convert non-break spaces to regular spaces (remember, *plain text*)
|
||||||
[/(?:(?!\n)\s)*(\n+)(?:(?!\n)\s)*/gi, "$1"],// Cool little RegExp deletes whitespace around linebreak chars.
|
[/(?:(?!\n)\s)*(\n+)(?:(?!\n)\s)*/gi, "$1"] // Cool little RegExp deletes whitespace around linebreak chars.
|
||||||
[/\n{3,}/g, "\n\n"] // Max. 2 consecutive linebreaks
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
var maxLinebreaks = Number(getParam(ed, "paste_max_consecutive_linebreaks"));
|
||||||
|
if (maxLinebreaks > -1) {
|
||||||
|
var maxLinebreaksRegex = new RegExp("\n{" + (maxLinebreaks + 1) + ",}", "g");
|
||||||
|
var linebreakReplacement = "";
|
||||||
|
|
||||||
|
while (linebreakReplacement.length < maxLinebreaks) {
|
||||||
|
linebreakReplacement += "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
process([
|
||||||
|
[maxLinebreaksRegex, linebreakReplacement] // Limit max consecutive linebreaks
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
content = ed.dom.decode(tinymce.html.Entities.encodeRaw(content));
|
content = ed.dom.decode(tinymce.html.Entities.encodeRaw(content));
|
||||||
|
|
||||||
// Perform default or custom replacements
|
// Perform default or custom replacements
|
||||||
|
|
|
@ -93,7 +93,7 @@
|
||||||
<input type="submit" id="insert" name="insert" value="{#searchreplace_dlg.findnext}" />
|
<input type="submit" id="insert" name="insert" value="{#searchreplace_dlg.findnext}" />
|
||||||
<input type="button" class="button" id="replaceBtn" name="replaceBtn" value="{#searchreplace_dlg.replace}" onclick="SearchReplaceDialog.searchNext('current');" />
|
<input type="button" class="button" id="replaceBtn" name="replaceBtn" value="{#searchreplace_dlg.replace}" onclick="SearchReplaceDialog.searchNext('current');" />
|
||||||
<input type="button" class="button" id="replaceAllBtn" name="replaceAllBtn" value="{#searchreplace_dlg.replaceall}" onclick="SearchReplaceDialog.searchNext('all');" />
|
<input type="button" class="button" id="replaceAllBtn" name="replaceAllBtn" value="{#searchreplace_dlg.replaceall}" onclick="SearchReplaceDialog.searchNext('all');" />
|
||||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
<input type="button" id="cancel" name="close" value="{#close}" onclick="tinyMCEPopup.close();" />
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</body>
|
</body>
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -287,6 +287,21 @@
|
||||||
endX = startX + (cols - 1);
|
endX = startX + (cols - 1);
|
||||||
endY = startY + (rows - 1);
|
endY = startY + (rows - 1);
|
||||||
} else {
|
} else {
|
||||||
|
startPos = endPos = null;
|
||||||
|
|
||||||
|
// Calculate start/end pos by checking for selected cells in grid works better with context menu
|
||||||
|
each(grid, function(row, y) {
|
||||||
|
each(row, function(cell, x) {
|
||||||
|
if (isCellSelected(cell)) {
|
||||||
|
if (!startPos) {
|
||||||
|
startPos = {x: x, y: y};
|
||||||
|
}
|
||||||
|
|
||||||
|
endPos = {x: x, y: y};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
// Use selection
|
// Use selection
|
||||||
startX = startPos.x;
|
startX = startPos.x;
|
||||||
startY = startPos.y;
|
startY = startPos.y;
|
||||||
|
@ -551,6 +566,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
function pasteRows(rows, before) {
|
function pasteRows(rows, before) {
|
||||||
|
// If we don't have any rows in the clipboard, return immediately
|
||||||
|
if(!rows)
|
||||||
|
return;
|
||||||
|
|
||||||
var selectedRows = getSelectedRows(),
|
var selectedRows = getSelectedRows(),
|
||||||
targetRow = selectedRows[before ? 0 : selectedRows.length - 1],
|
targetRow = selectedRows[before ? 0 : selectedRows.length - 1],
|
||||||
targetCellCount = targetRow.cells.length;
|
targetCellCount = targetRow.cells.length;
|
||||||
|
@ -599,6 +618,9 @@
|
||||||
else
|
else
|
||||||
dom.insertAfter(row, targetRow);
|
dom.insertAfter(row, targetRow);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Remove current selection
|
||||||
|
dom.removeClass(dom.select('td.mceSelected,th.mceSelected'), 'mceSelected');
|
||||||
};
|
};
|
||||||
|
|
||||||
function getPos(target) {
|
function getPos(target) {
|
||||||
|
@ -1219,15 +1241,18 @@
|
||||||
|
|
||||||
// Fixes an issue on Gecko where it's impossible to place the caret behind a table
|
// Fixes an issue on Gecko where it's impossible to place the caret behind a table
|
||||||
// This fix will force a paragraph element after the table but only when the forced_root_block setting is enabled
|
// This fix will force a paragraph element after the table but only when the forced_root_block setting is enabled
|
||||||
if (!tinymce.isIE) {
|
|
||||||
function fixTableCaretPos() {
|
function fixTableCaretPos() {
|
||||||
var last;
|
var last;
|
||||||
|
|
||||||
// Skip empty text nodes form the end
|
// Skip empty text nodes form the end
|
||||||
for (last = ed.getBody().lastChild; last && last.nodeType == 3 && !last.nodeValue.length; last = last.previousSibling) ;
|
for (last = ed.getBody().lastChild; last && last.nodeType == 3 && !last.nodeValue.length; last = last.previousSibling) ;
|
||||||
|
|
||||||
if (last && last.nodeName == 'TABLE')
|
if (last && last.nodeName == 'TABLE') {
|
||||||
ed.dom.add(ed.getBody(), 'p', null, '<br mce_bogus="1" />');
|
if (ed.settings.forced_root_block)
|
||||||
|
ed.dom.add(ed.getBody(), ed.settings.forced_root_block, null, tinymce.isIE ? ' ' : '<br data-mce-bogus="1" />');
|
||||||
|
else
|
||||||
|
ed.dom.add(ed.getBody(), 'br', {'data-mce-bogus': '1'});
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Fixes an bug where it's impossible to place the caret before a table in Gecko
|
// Fixes an bug where it's impossible to place the caret before a table in Gecko
|
||||||
|
@ -1265,14 +1290,18 @@
|
||||||
ed.onPreProcess.add(function(ed, o) {
|
ed.onPreProcess.add(function(ed, o) {
|
||||||
var last = o.node.lastChild;
|
var last = o.node.lastChild;
|
||||||
|
|
||||||
if (last && last.childNodes.length == 1 && last.firstChild.nodeName == 'BR')
|
if (last && (last.nodeName == "BR" || (last.childNodes.length == 1 && (last.firstChild.nodeName == 'BR' || last.firstChild.nodeValue == '\u00a0'))) && last.previousSibling && last.previousSibling.nodeName == "TABLE") {
|
||||||
ed.dom.remove(last);
|
ed.dom.remove(last);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fixes bug in Gecko where shift-enter in table cell does not place caret on new line
|
* Fixes bug in Gecko where shift-enter in table cell does not place caret on new line
|
||||||
|
*
|
||||||
|
* Removed: Since the new enter logic seems to fix this one.
|
||||||
*/
|
*/
|
||||||
|
/*
|
||||||
if (tinymce.isGecko) {
|
if (tinymce.isGecko) {
|
||||||
ed.onKeyDown.add(function(ed, e) {
|
ed.onKeyDown.add(function(ed, e) {
|
||||||
if (e.keyCode === tinymce.VK.ENTER && e.shiftKey) {
|
if (e.keyCode === tinymce.VK.ENTER && e.shiftKey) {
|
||||||
|
@ -1285,11 +1314,10 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
fixTableCaretPos();
|
fixTableCaretPos();
|
||||||
ed.startContent = ed.getContent({format : 'raw'});
|
ed.startContent = ed.getContent({format : 'raw'});
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Register action commands
|
// Register action commands
|
||||||
|
|
|
@ -25,6 +25,7 @@ function init() {
|
||||||
var dir = dom.getAttrib(trElm, 'dir');
|
var dir = dom.getAttrib(trElm, 'dir');
|
||||||
|
|
||||||
selectByValue(formObj, 'rowtype', rowtype);
|
selectByValue(formObj, 'rowtype', rowtype);
|
||||||
|
setActionforRowType(formObj, rowtype);
|
||||||
|
|
||||||
// Any cells selected
|
// Any cells selected
|
||||||
if (dom.select('td.mceSelected,th.mceSelected', trElm).length == 0) {
|
if (dom.select('td.mceSelected,th.mceSelected', trElm).length == 0) {
|
||||||
|
@ -234,4 +235,20 @@ function changedColor() {
|
||||||
formObj.style.value = dom.serializeStyle(st);
|
formObj.style.value = dom.serializeStyle(st);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function changedRowType() {
|
||||||
|
var formObj = document.forms[0];
|
||||||
|
var rowtype = getSelectValue(formObj, 'rowtype');
|
||||||
|
|
||||||
|
setActionforRowType(formObj, rowtype);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function setActionforRowType(formObj, rowtype) {
|
||||||
|
if (rowtype === "tbody") {
|
||||||
|
formObj.action.disabled = false;
|
||||||
|
} else {
|
||||||
|
selectByValue(formObj, 'action', "row");
|
||||||
|
formObj.action.disabled = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
tinyMCEPopup.onInit.add(init);
|
tinyMCEPopup.onInit.add(init);
|
||||||
|
|
|
@ -247,7 +247,10 @@ function insertTable() {
|
||||||
|
|
||||||
// Fixes a bug in IE where the caret cannot be placed after the table if the table is at the end of the document
|
// Fixes a bug in IE where the caret cannot be placed after the table if the table is at the end of the document
|
||||||
if (tinymce.isIE && node.nextSibling == null) {
|
if (tinymce.isIE && node.nextSibling == null) {
|
||||||
dom.insertAfter(dom.create('p'), node);
|
if (inst.settings.forced_root_block)
|
||||||
|
dom.insertAfter(dom.create(inst.settings.forced_root_block), node);
|
||||||
|
else
|
||||||
|
dom.insertAfter(dom.create('br', {'data-mce-bogus': '1'}), node);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -304,6 +307,15 @@ function init() {
|
||||||
var formObj = document.forms[0];
|
var formObj = document.forms[0];
|
||||||
var elm = dom.getParent(inst.selection.getNode(), "table");
|
var elm = dom.getParent(inst.selection.getNode(), "table");
|
||||||
|
|
||||||
|
// Hide advanced fields that isn't available in the schema
|
||||||
|
tinymce.each("summary id rules dir style frame".split(" "), function(name) {
|
||||||
|
var tr = tinyMCEPopup.dom.getParent(name, "tr") || tinyMCEPopup.dom.getParent("t" + name, "tr");
|
||||||
|
|
||||||
|
if (tr && !tinyMCEPopup.editor.schema.isValid("table", name)) {
|
||||||
|
tr.style.display = 'none';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
action = tinyMCEPopup.getWindowArg('action');
|
action = tinyMCEPopup.getWindowArg('action');
|
||||||
|
|
||||||
if (!action)
|
if (!action)
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td><label for="rowtype">{#table_dlg.rowtype}</label></td>
|
<td><label for="rowtype">{#table_dlg.rowtype}</label></td>
|
||||||
<td class="col2">
|
<td class="col2">
|
||||||
<select id="rowtype" name="rowtype" class="mceFocus">
|
<select id="rowtype" name="rowtype" class="mceFocus" onChange="changedRowType();">
|
||||||
<option value="thead">{#table_dlg.thead}</option>
|
<option value="thead">{#table_dlg.thead}</option>
|
||||||
<option value="tbody">{#table_dlg.tbody}</option>
|
<option value="tbody">{#table_dlg.tbody}</option>
|
||||||
<option value="tfoot">{#table_dlg.tfoot}</option>
|
<option value="tfoot">{#table_dlg.tfoot}</option>
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
// Generates a preview for a format
|
// Generates a preview for a format
|
||||||
function getPreviewCss(ed, fmt) {
|
function getPreviewCss(ed, fmt) {
|
||||||
var previewElm, dom = ed.dom, previewCss = '', parentFontSize, previewStylesName;
|
var name, previewElm, dom = ed.dom, previewCss = '', parentFontSize, previewStylesName;
|
||||||
|
|
||||||
previewStyles = ed.settings.preview_styles;
|
previewStyles = ed.settings.preview_styles;
|
||||||
|
|
||||||
|
@ -154,19 +154,27 @@
|
||||||
t.editor = ed;
|
t.editor = ed;
|
||||||
t.url = url;
|
t.url = url;
|
||||||
t.onResolveName = new tinymce.util.Dispatcher(this);
|
t.onResolveName = new tinymce.util.Dispatcher(this);
|
||||||
|
s = ed.settings;
|
||||||
|
|
||||||
ed.forcedHighContrastMode = ed.settings.detect_highcontrast && t._isHighContrast();
|
ed.forcedHighContrastMode = ed.settings.detect_highcontrast && t._isHighContrast();
|
||||||
ed.settings.skin = ed.forcedHighContrastMode ? 'highcontrast' : ed.settings.skin;
|
ed.settings.skin = ed.forcedHighContrastMode ? 'highcontrast' : ed.settings.skin;
|
||||||
|
|
||||||
|
// Setup default buttons
|
||||||
|
if (!s.theme_advanced_buttons1) {
|
||||||
|
s = extend({
|
||||||
|
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect",
|
||||||
|
theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",
|
||||||
|
theme_advanced_buttons3 : "hr,removeformat,visualaid,|,sub,sup,|,charmap"
|
||||||
|
}, s);
|
||||||
|
}
|
||||||
|
|
||||||
// Default settings
|
// Default settings
|
||||||
t.settings = s = extend({
|
t.settings = s = extend({
|
||||||
theme_advanced_path : true,
|
theme_advanced_path : true,
|
||||||
theme_advanced_toolbar_location : 'bottom',
|
theme_advanced_toolbar_location : 'top',
|
||||||
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect",
|
|
||||||
theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",
|
|
||||||
theme_advanced_buttons3 : "hr,removeformat,visualaid,|,sub,sup,|,charmap",
|
|
||||||
theme_advanced_blockformats : "p,address,pre,h1,h2,h3,h4,h5,h6",
|
theme_advanced_blockformats : "p,address,pre,h1,h2,h3,h4,h5,h6",
|
||||||
theme_advanced_toolbar_align : "center",
|
theme_advanced_toolbar_align : "left",
|
||||||
|
theme_advanced_statusbar_location : "bottom",
|
||||||
theme_advanced_fonts : "Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",
|
theme_advanced_fonts : "Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",
|
||||||
theme_advanced_more_colors : 1,
|
theme_advanced_more_colors : 1,
|
||||||
theme_advanced_row_height : 23,
|
theme_advanced_row_height : 23,
|
||||||
|
@ -176,7 +184,7 @@
|
||||||
theme_advanced_font_selector : "span",
|
theme_advanced_font_selector : "span",
|
||||||
theme_advanced_show_current_color: 0,
|
theme_advanced_show_current_color: 0,
|
||||||
readonly : ed.settings.readonly
|
readonly : ed.settings.readonly
|
||||||
}, ed.settings);
|
}, s);
|
||||||
|
|
||||||
// Setup default font_size_style_values
|
// Setup default font_size_style_values
|
||||||
if (!s.font_size_style_values)
|
if (!s.font_size_style_values)
|
||||||
|
@ -823,6 +831,7 @@
|
||||||
var f = Event.add(ed.id + '_external_close', 'click', function() {
|
var f = Event.add(ed.id + '_external_close', 'click', function() {
|
||||||
DOM.hide(ed.id + '_external');
|
DOM.hide(ed.id + '_external');
|
||||||
Event.remove(ed.id + '_external_close', 'click', f);
|
Event.remove(ed.id + '_external_close', 'click', f);
|
||||||
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
DOM.show(e);
|
DOM.show(e);
|
||||||
|
@ -947,7 +956,7 @@
|
||||||
a = s.theme_advanced_toolbar_align.toLowerCase();
|
a = s.theme_advanced_toolbar_align.toLowerCase();
|
||||||
a = 'mce' + t._ufirst(a);
|
a = 'mce' + t._ufirst(a);
|
||||||
|
|
||||||
n = DOM.add(DOM.add(c, 'tr', {role: 'presentation'}), 'td', {'class' : 'mceToolbar ' + a, "role":"presentation"});
|
n = DOM.add(DOM.add(c, 'tr', {role: 'presentation'}), 'td', {'class' : 'mceToolbar ' + a, "role":"toolbar"});
|
||||||
|
|
||||||
// Create toolbar and add the controls
|
// Create toolbar and add the controls
|
||||||
for (i=1; (v = s['theme_advanced_buttons' + i]); i++) {
|
for (i=1; (v = s['theme_advanced_buttons' + i]); i++) {
|
||||||
|
@ -1030,6 +1039,8 @@
|
||||||
width = startWidth + (e.screenX - startX);
|
width = startWidth + (e.screenX - startX);
|
||||||
height = startHeight + (e.screenY - startY);
|
height = startHeight + (e.screenY - startY);
|
||||||
t.resizeTo(width, height, true);
|
t.resizeTo(width, height, true);
|
||||||
|
|
||||||
|
ed.nodeChanged();
|
||||||
};
|
};
|
||||||
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
@ -1089,19 +1100,17 @@
|
||||||
|
|
||||||
p = getParent('A');
|
p = getParent('A');
|
||||||
if (c = cm.get('link')) {
|
if (c = cm.get('link')) {
|
||||||
if (!p || !p.name) {
|
c.setDisabled((!p && co) || (p && !p.href));
|
||||||
c.setDisabled(!p && co);
|
c.setActive(!!p && (!p.name && !p.id));
|
||||||
c.setActive(!!p);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c = cm.get('unlink')) {
|
if (c = cm.get('unlink')) {
|
||||||
c.setDisabled(!p && co);
|
c.setDisabled(!p && co);
|
||||||
c.setActive(!!p && !p.name);
|
c.setActive(!!p && !p.name && !p.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c = cm.get('anchor')) {
|
if (c = cm.get('anchor')) {
|
||||||
c.setActive(!co && !!p && p.name);
|
c.setActive(!co && !!p && (p.name || (p.id && !p.href)));
|
||||||
}
|
}
|
||||||
|
|
||||||
p = getParent('IMG');
|
p = getParent('IMG');
|
||||||
|
@ -1280,7 +1289,7 @@
|
||||||
ti += 'id: ' + v + ' ';
|
ti += 'id: ' + v + ' ';
|
||||||
|
|
||||||
if (v = n.className) {
|
if (v = n.className) {
|
||||||
v = v.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g, '')
|
v = v.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g, '');
|
||||||
|
|
||||||
if (v) {
|
if (v) {
|
||||||
ti += 'class: ' + v + ' ';
|
ti += 'class: ' + v + ' ';
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
@ -6,7 +6,7 @@ var AnchorDialog = {
|
||||||
|
|
||||||
this.editor = ed;
|
this.editor = ed;
|
||||||
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
||||||
v = ed.dom.getAttrib(elm, 'name');
|
v = ed.dom.getAttrib(elm, 'name') || ed.dom.getAttrib(elm, 'id');
|
||||||
|
|
||||||
if (v) {
|
if (v) {
|
||||||
this.action = 'update';
|
this.action = 'update';
|
||||||
|
@ -17,7 +17,7 @@ var AnchorDialog = {
|
||||||
},
|
},
|
||||||
|
|
||||||
update : function() {
|
update : function() {
|
||||||
var ed = this.editor, elm, name = document.forms[0].anchorName.value;
|
var ed = this.editor, elm, name = document.forms[0].anchorName.value, attribName;
|
||||||
|
|
||||||
if (!name || !/^[a-z][a-z0-9\-\_:\.]*$/i.test(name)) {
|
if (!name || !/^[a-z][a-z0-9\-\_:\.]*$/i.test(name)) {
|
||||||
tinyMCEPopup.alert('advanced_dlg.anchor_invalid');
|
tinyMCEPopup.alert('advanced_dlg.anchor_invalid');
|
||||||
|
@ -29,13 +29,25 @@ var AnchorDialog = {
|
||||||
if (this.action != 'update')
|
if (this.action != 'update')
|
||||||
ed.selection.collapse(1);
|
ed.selection.collapse(1);
|
||||||
|
|
||||||
|
var aRule = ed.schema.getElementRule('a');
|
||||||
|
if (!aRule || aRule.attributes.name) {
|
||||||
|
attribName = 'name';
|
||||||
|
} else {
|
||||||
|
attribName = 'id';
|
||||||
|
}
|
||||||
|
|
||||||
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
||||||
if (elm) {
|
if (elm) {
|
||||||
elm.setAttribute('name', name);
|
elm.setAttribute(attribName, name);
|
||||||
elm.name = name;
|
elm[attribName] = name;
|
||||||
} else
|
ed.undoManager.add();
|
||||||
|
} else {
|
||||||
// create with zero-sized nbsp so that in Webkit where anchor is on last line by itself caret cannot be placed after it
|
// create with zero-sized nbsp so that in Webkit where anchor is on last line by itself caret cannot be placed after it
|
||||||
ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', {name : name, 'class' : 'mceItemAnchor'}, '\uFEFF'));
|
var attrs = {'class' : 'mceItemAnchor'};
|
||||||
|
attrs[attribName] = name;
|
||||||
|
ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', attrs, '\uFEFF'));
|
||||||
|
ed.nodeChanged();
|
||||||
|
}
|
||||||
|
|
||||||
tinyMCEPopup.close();
|
tinyMCEPopup.close();
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,10 +68,16 @@ var LinkDialog = {
|
||||||
} else {
|
} else {
|
||||||
ed.dom.setAttribs(e, {
|
ed.dom.setAttribs(e, {
|
||||||
href : href,
|
href : href,
|
||||||
title : f.linktitle.value,
|
title : f.linktitle.value
|
||||||
target : f.target_list ? getSelectValue(f, "target_list") : null,
|
|
||||||
'class' : f.class_list ? getSelectValue(f, "class_list") : null
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (f.target_list) {
|
||||||
|
ed.dom.setAttrib(e, 'target', getSelectValue(f, "target_list"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (f.class_list) {
|
||||||
|
ed.dom.setAttrib(e, 'class', getSelectValue(f, "class_list"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't move caret if selection was image
|
// Don't move caret if selection was image
|
||||||
|
|
|
@ -48,4 +48,3 @@ font[face=mceinline] {font-family:inherit !important}
|
||||||
.mceItemEmbeddedAudio {background-image:url(../../img/video.gif)}
|
.mceItemEmbeddedAudio {background-image:url(../../img/video.gif)}
|
||||||
.mceItemIframe {background-image:url(../../img/iframe.gif)}
|
.mceItemIframe {background-image:url(../../img/iframe.gif)}
|
||||||
.mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;}
|
.mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;}
|
||||||
.mceHideBrInPre pre br {display: none}
|
|
||||||
|
|
|
@ -105,11 +105,12 @@ h3 {font-size:14px;}
|
||||||
#plugintable, #about #plugintable td {border:1px solid #919B9C;}
|
#plugintable, #about #plugintable td {border:1px solid #919B9C;}
|
||||||
#plugintable {width:96%; margin-top:10px;}
|
#plugintable {width:96%; margin-top:10px;}
|
||||||
#pluginscontainer {height:290px; overflow:auto;}
|
#pluginscontainer {height:290px; overflow:auto;}
|
||||||
#colorpicker #preview {float:right; width:50px; height:14px;line-height:1px; border:1px solid black; margin-left:5px;}
|
#colorpicker #preview {display:inline-block; padding-left:40px; height:14px; border:1px solid black; margin-left:5px; margin-right: 5px}
|
||||||
|
#colorpicker #previewblock {position: relative; top: -3px; padding-left:5px; padding-top: 0px; display:inline}
|
||||||
|
#colorpicker #preview_wrapper { text-align:center; padding-top:4px; white-space: nowrap}
|
||||||
#colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;}
|
#colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;}
|
||||||
#colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;}
|
#colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;}
|
||||||
#colorpicker #light div {overflow:hidden;}
|
#colorpicker #light div {overflow:hidden;}
|
||||||
#colorpicker #previewblock {float:right; padding-left:10px; height:20px;}
|
|
||||||
#colorpicker .panel_wrapper div.current {height:175px;}
|
#colorpicker .panel_wrapper div.current {height:175px;}
|
||||||
#colorpicker #namedcolors {width:150px;}
|
#colorpicker #namedcolors {width:150px;}
|
||||||
#colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;}
|
#colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;}
|
||||||
|
|
|
@ -4,14 +4,14 @@
|
||||||
.defaultSkin table td {vertical-align:middle}
|
.defaultSkin table td {vertical-align:middle}
|
||||||
|
|
||||||
/* Containers */
|
/* Containers */
|
||||||
.defaultSkin table {direction:ltr; background:#FFF}
|
.defaultSkin table {direction:ltr;background:transparent}
|
||||||
.defaultSkin iframe {display:block; background:#FFF}
|
.defaultSkin iframe {display:block;}
|
||||||
.defaultSkin .mceToolbar {height:26px}
|
.defaultSkin .mceToolbar {height:26px}
|
||||||
.defaultSkin .mceLeft {text-align:left}
|
.defaultSkin .mceLeft {text-align:left}
|
||||||
.defaultSkin .mceRight {text-align:right}
|
.defaultSkin .mceRight {text-align:right}
|
||||||
|
|
||||||
/* External */
|
/* External */
|
||||||
.defaultSkin .mceExternalToolbar {position:absolute; border:2px solid #CCC; border-bottom:0; display:none;}
|
.defaultSkin .mceExternalToolbar {position:absolute; border:1px solid #CCC; border-bottom:0; display:none;}
|
||||||
.defaultSkin .mceExternalToolbar td.mceToolbar {padding-right:13px;}
|
.defaultSkin .mceExternalToolbar td.mceToolbar {padding-right:13px;}
|
||||||
.defaultSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.gif) -820px 0}
|
.defaultSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.gif) -820px 0}
|
||||||
|
|
||||||
|
@ -20,9 +20,9 @@
|
||||||
.defaultSkin table.mceLayout tr.mceFirst td {border-top:1px solid #CCC}
|
.defaultSkin table.mceLayout tr.mceFirst td {border-top:1px solid #CCC}
|
||||||
.defaultSkin table.mceLayout tr.mceLast td {border-bottom:1px solid #CCC}
|
.defaultSkin table.mceLayout tr.mceLast td {border-bottom:1px solid #CCC}
|
||||||
.defaultSkin table.mceToolbar, .defaultSkin tr.mceFirst .mceToolbar tr td, .defaultSkin tr.mceLast .mceToolbar tr td {border:0; margin:0; padding:0;}
|
.defaultSkin table.mceToolbar, .defaultSkin tr.mceFirst .mceToolbar tr td, .defaultSkin tr.mceLast .mceToolbar tr td {border:0; margin:0; padding:0;}
|
||||||
.defaultSkin td.mceToolbar {padding-top:1px; vertical-align:top}
|
.defaultSkin td.mceToolbar {background:#F0F0EE; padding-top:1px; vertical-align:top}
|
||||||
.defaultSkin .mceIframeContainer { /*border-top:1px solid #CCC; border-bottom:1px solid #CCC */ border: none;}
|
.defaultSkin .mceIframeContainer {border-top:1px solid #CCC; border-bottom:1px solid #CCC}
|
||||||
.defaultSkin .mceStatusbar {font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; display:block; height:20px}
|
.defaultSkin .mceStatusbar {background:#F0F0EE; font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; display:block; height:20px}
|
||||||
.defaultSkin .mceStatusbar div {float:left; margin:2px}
|
.defaultSkin .mceStatusbar div {float:left; margin:2px}
|
||||||
.defaultSkin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0}
|
.defaultSkin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0}
|
||||||
.defaultSkin .mceStatusbar a:hover {text-decoration:underline}
|
.defaultSkin .mceStatusbar a:hover {text-decoration:underline}
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
.defaultSkin td.mceRight table {margin:0 0 0 auto;}
|
.defaultSkin td.mceRight table {margin:0 0 0 auto;}
|
||||||
|
|
||||||
/* Button */
|
/* Button */
|
||||||
.defaultSkin .mceButton {display:block; border:1px solid #F0F0EE; width:20px; height:20px; margin-right:10px}
|
.defaultSkin .mceButton {display:block; border:1px solid #F0F0EE; width:20px; height:20px; margin-right:1px}
|
||||||
.defaultSkin a.mceButtonEnabled:hover {border:1px solid #0A246A; background-color:#B2BBD0}
|
.defaultSkin a.mceButtonEnabled:hover {border:1px solid #0A246A; background-color:#B2BBD0}
|
||||||
.defaultSkin a.mceButtonActive, .defaultSkin a.mceButtonSelected {border:1px solid #0A246A; background-color:#C2CBE0}
|
.defaultSkin a.mceButtonActive, .defaultSkin a.mceButtonSelected {border:1px solid #0A246A; background-color:#C2CBE0}
|
||||||
.defaultSkin .mceButtonDisabled .mceIcon {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)}
|
.defaultSkin .mceButtonDisabled .mceIcon {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)}
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
.defaultSkin .mce_forecolor span.mceAction, .defaultSkin .mce_backcolor span.mceAction {overflow:hidden; height:16px}
|
.defaultSkin .mce_forecolor span.mceAction, .defaultSkin .mce_backcolor span.mceAction {overflow:hidden; height:16px}
|
||||||
|
|
||||||
/* Menu */
|
/* Menu */
|
||||||
.defaultSkin .mceMenu {position:absolute; left:0; top:0; z-index:1000; border:1px solid #D4D0C8}
|
.defaultSkin .mceMenu {position:absolute; left:0; top:0; z-index:1000; border:1px solid #D4D0C8; direction:ltr}
|
||||||
.defaultSkin .mceNoIcons span.mceIcon {width:0;}
|
.defaultSkin .mceNoIcons span.mceIcon {width:0;}
|
||||||
.defaultSkin .mceNoIcons a .mceText {padding-left:10px}
|
.defaultSkin .mceNoIcons a .mceText {padding-left:10px}
|
||||||
.defaultSkin .mceMenu table {background:#FFF}
|
.defaultSkin .mceMenu table {background:#FFF}
|
||||||
|
@ -103,11 +103,16 @@
|
||||||
.defaultSkin .mceNoIcons .mceMenuItemSelected a {background:url(img/menu_arrow.gif) no-repeat -6px center}
|
.defaultSkin .mceNoIcons .mceMenuItemSelected a {background:url(img/menu_arrow.gif) no-repeat -6px center}
|
||||||
.defaultSkin .mceMenu span.mceMenuLine {display:none}
|
.defaultSkin .mceMenu span.mceMenuLine {display:none}
|
||||||
.defaultSkin .mceMenuItemSub a {background:url(img/menu_arrow.gif) no-repeat top right;}
|
.defaultSkin .mceMenuItemSub a {background:url(img/menu_arrow.gif) no-repeat top right;}
|
||||||
|
.defaultSkin .mceMenuItem td, .defaultSkin .mceMenuItem th {line-height: normal}
|
||||||
|
|
||||||
/* Progress,Resize */
|
/* Progress,Resize */
|
||||||
.defaultSkin .mceBlocker {position:absolute; left:0; top:0; z-index:1000; opacity:0.5; -ms-filter:'alpha(opacity=50)'; filter:alpha(opacity=50); background:#FFF}
|
.defaultSkin .mceBlocker {position:absolute; left:0; top:0; z-index:1000; opacity:0.5; -ms-filter:'alpha(opacity=50)'; filter:alpha(opacity=50); background:#FFF}
|
||||||
.defaultSkin .mceProgress {position:absolute; left:0; top:0; z-index:1001; background:url(img/progress.gif) no-repeat; width:32px; height:32px; margin:-16px 0 0 -16px}
|
.defaultSkin .mceProgress {position:absolute; left:0; top:0; z-index:1001; background:url(img/progress.gif) no-repeat; width:32px; height:32px; margin:-16px 0 0 -16px}
|
||||||
|
|
||||||
|
/* Rtl */
|
||||||
|
.mceRtl .mceListBox .mceText {text-align: right; padding: 0 4px 0 0}
|
||||||
|
.mceRtl .mceMenuItem .mceText {text-align: right}
|
||||||
|
|
||||||
/* Formats */
|
/* Formats */
|
||||||
.defaultSkin .mce_formatPreview a {font-size:10px}
|
.defaultSkin .mce_formatPreview a {font-size:10px}
|
||||||
.defaultSkin .mce_p span.mceText {}
|
.defaultSkin .mce_p span.mceText {}
|
||||||
|
@ -211,3 +216,4 @@
|
||||||
.defaultSkin span.mce_pagebreak {background-position:0 -40px}
|
.defaultSkin span.mce_pagebreak {background-position:0 -40px}
|
||||||
.defaultSkin span.mce_restoredraft {background-position:-20px -40px}
|
.defaultSkin span.mce_restoredraft {background-position:-20px -40px}
|
||||||
.defaultSkin span.mce_spellchecker {background-position:-540px -20px}
|
.defaultSkin span.mce_spellchecker {background-position:-540px -20px}
|
||||||
|
.defaultSkin span.mce_visualblocks {background-position: -40px -40px}
|
||||||
|
|
|
@ -22,4 +22,3 @@ abbr {border-bottom:1px dashed #CCC; cursor:help}
|
||||||
img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px}
|
img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px}
|
||||||
font[face=mceinline] {font-family:inherit !important}
|
font[face=mceinline] {font-family:inherit !important}
|
||||||
*[contentEditable]:focus {outline:0}
|
*[contentEditable]:focus {outline:0}
|
||||||
.mceHideBrInPre pre br {display: none}
|
|
||||||
|
|
|
@ -46,4 +46,3 @@ font[face=mceinline] {font-family:inherit !important}
|
||||||
.mceItemAudio {background-image:url(../../img/video.gif)}
|
.mceItemAudio {background-image:url(../../img/video.gif)}
|
||||||
.mceItemIframe {background-image:url(../../img/iframe.gif)}
|
.mceItemIframe {background-image:url(../../img/iframe.gif)}
|
||||||
.mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;}
|
.mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;}
|
||||||
.mceHideBrInPre pre br {display: none}
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||||
<script type="text/javascript" src="js/source_editor.js"></script>
|
<script type="text/javascript" src="js/source_editor.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body onresize="resizeInputs();" style="display:none; overflow:hidden;">
|
<body onresize="resizeInputs();" style="display:none; overflow:hidden;" spellcheck="false">
|
||||||
<form name="source" onsubmit="saveContent();return false;" action="#">
|
<form name="source" onsubmit="saveContent();return false;" action="#">
|
||||||
<div style="float: left" class="title"><label for="htmlSource">{#advanced_dlg.code_title}</label></div>
|
<div style="float: left" class="title"><label for="htmlSource">{#advanced_dlg.code_title}</label></div>
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2,4 +2,4 @@
|
||||||
// Uncomment and change this document.domain value if you are loading the script cross subdomains
|
// Uncomment and change this document.domain value if you are loading the script cross subdomains
|
||||||
// document.domain = 'moxiecode.com';
|
// document.domain = 'moxiecode.com';
|
||||||
|
|
||||||
var tinymce=null,tinyMCEPopup,tinyMCE;tinyMCEPopup={init:function(){var b=this,a,c;a=b.getWin();tinymce=a.tinymce;tinyMCE=a.tinyMCE;b.editor=tinymce.EditorManager.activeEditor;b.params=b.editor.windowManager.params;b.features=b.editor.windowManager.features;b.dom=b.editor.windowManager.createInstance("tinymce.dom.DOMUtils",document,{ownEvents:true,proxy:tinyMCEPopup._eventProxy});b.dom.bind(window,"ready",b._onDOMLoaded,b);if(b.features.popup_css!==false){b.dom.loadCSS(b.features.popup_css||b.editor.settings.popup_css)}b.listeners=[];b.onInit={add:function(e,d){b.listeners.push({func:e,scope:d})}};b.isWindow=!b.getWindowArg("mce_inline");b.id=b.getWindowArg("mce_window_id");b.editor.windowManager.onOpen.dispatch(b.editor.windowManager,window)},getWin:function(){return(!window.frameElement&&window.dialogArguments)||opener||parent||top},getWindowArg:function(c,b){var a=this.params[c];return tinymce.is(a)?a:b},getParam:function(b,a){return this.editor.getParam(b,a)},getLang:function(b,a){return this.editor.getLang(b,a)},execCommand:function(d,c,e,b){b=b||{};b.skip_focus=1;this.restoreSelection();return this.editor.execCommand(d,c,e,b)},resizeToInnerSize:function(){var a=this;setTimeout(function(){var b=a.dom.getViewPort(window);a.editor.windowManager.resizeBy(a.getWindowArg("mce_width")-b.w,a.getWindowArg("mce_height")-b.h,a.id||window)},10)},executeOnLoad:function(s){this.onInit.add(function(){eval(s)})},storeSelection:function(){this.editor.windowManager.bookmark=tinyMCEPopup.editor.selection.getBookmark(1)},restoreSelection:function(){var a=tinyMCEPopup;if(!a.isWindow&&tinymce.isIE){a.editor.selection.moveToBookmark(a.editor.windowManager.bookmark)}},requireLangPack:function(){var b=this,a=b.getWindowArg("plugin_url")||b.getWindowArg("theme_url");if(a&&b.editor.settings.language&&b.features.translate_i18n!==false&&b.editor.settings.language_load!==false){a+="/langs/"+b.editor.settings.language+"_dlg.js";if(!tinymce.ScriptLoader.isDone(a)){document.write('<script type="text/javascript" src="'+tinymce._addVer(a)+'"><\/script>');tinymce.ScriptLoader.markDone(a)}}},pickColor:function(b,a){this.execCommand("mceColorPicker",true,{color:document.getElementById(a).value,func:function(e){document.getElementById(a).value=e;try{document.getElementById(a).onchange()}catch(d){}}})},openBrowser:function(a,c,b){tinyMCEPopup.restoreSelection();this.editor.execCallback("file_browser_callback",a,document.getElementById(a).value,c,window)},confirm:function(b,a,c){this.editor.windowManager.confirm(b,a,c,window)},alert:function(b,a,c){this.editor.windowManager.alert(b,a,c,window)},close:function(){var a=this;function b(){a.editor.windowManager.close(window);tinymce=tinyMCE=a.editor=a.params=a.dom=a.dom.doc=null}if(tinymce.isOpera){a.getWin().setTimeout(b,0)}else{b()}},_restoreSelection:function(){var a=window.event.srcElement;if(a.nodeName=="INPUT"&&(a.type=="submit"||a.type=="button")){tinyMCEPopup.restoreSelection()}},_onDOMLoaded:function(){var b=tinyMCEPopup,d=document.title,e,c,a;if(b.features.translate_i18n!==false){c=document.body.innerHTML;if(tinymce.isIE){c=c.replace(/ (value|title|alt)=([^"][^\s>]+)/gi,' $1="$2"')}document.dir=b.editor.getParam("directionality","");if((a=b.editor.translate(c))&&a!=c){document.body.innerHTML=a}if((a=b.editor.translate(d))&&a!=d){document.title=d=a}}if(!b.editor.getParam("browser_preferred_colors",false)||!b.isWindow){b.dom.addClass(document.body,"forceColors")}document.body.style.display="";if(tinymce.isIE){document.attachEvent("onmouseup",tinyMCEPopup._restoreSelection);b.dom.add(b.dom.select("head")[0],"base",{target:"_self"})}b.restoreSelection();b.resizeToInnerSize();if(!b.isWindow){b.editor.windowManager.setTitle(window,d)}else{window.focus()}if(!tinymce.isIE&&!b.isWindow){b.dom.bind(document,"focus",function(){b.editor.windowManager.focus(b.id)})}tinymce.each(b.dom.select("select"),function(f){f.onkeydown=tinyMCEPopup._accessHandler});tinymce.each(b.listeners,function(f){f.func.call(f.scope,b.editor)});if(b.getWindowArg("mce_auto_focus",true)){window.focus();tinymce.each(document.forms,function(g){tinymce.each(g.elements,function(f){if(b.dom.hasClass(f,"mceFocus")&&!f.disabled){f.focus();return false}})})}document.onkeyup=tinyMCEPopup._closeWinKeyHandler},_accessHandler:function(a){a=a||window.event;if(a.keyCode==13||a.keyCode==32){a=a.target||a.srcElement;if(a.onchange){a.onchange()}return tinymce.dom.Event.cancel(a)}},_closeWinKeyHandler:function(a){a=a||window.event;if(a.keyCode==27){tinyMCEPopup.close()}},_eventProxy:function(a){return function(b){tinyMCEPopup.dom.events.callNativeHandler(a,b)}}};tinyMCEPopup.init();
|
var tinymce=null,tinyMCEPopup,tinyMCE;tinyMCEPopup={init:function(){var b=this,a,c;a=b.getWin();tinymce=a.tinymce;tinyMCE=a.tinyMCE;b.editor=tinymce.EditorManager.activeEditor;b.params=b.editor.windowManager.params;b.features=b.editor.windowManager.features;b.dom=b.editor.windowManager.createInstance("tinymce.dom.DOMUtils",document,{ownEvents:true,proxy:tinyMCEPopup._eventProxy});b.dom.bind(window,"ready",b._onDOMLoaded,b);if(b.features.popup_css!==false){b.dom.loadCSS(b.features.popup_css||b.editor.settings.popup_css)}b.listeners=[];b.onInit={add:function(e,d){b.listeners.push({func:e,scope:d})}};b.isWindow=!b.getWindowArg("mce_inline");b.id=b.getWindowArg("mce_window_id");b.editor.windowManager.onOpen.dispatch(b.editor.windowManager,window)},getWin:function(){return(!window.frameElement&&window.dialogArguments)||opener||parent||top},getWindowArg:function(c,b){var a=this.params[c];return tinymce.is(a)?a:b},getParam:function(b,a){return this.editor.getParam(b,a)},getLang:function(b,a){return this.editor.getLang(b,a)},execCommand:function(d,c,e,b){b=b||{};b.skip_focus=1;this.restoreSelection();return this.editor.execCommand(d,c,e,b)},resizeToInnerSize:function(){var a=this;setTimeout(function(){var b=a.dom.getViewPort(window);a.editor.windowManager.resizeBy(a.getWindowArg("mce_width")-b.w,a.getWindowArg("mce_height")-b.h,a.id||window)},10)},executeOnLoad:function(s){this.onInit.add(function(){eval(s)})},storeSelection:function(){this.editor.windowManager.bookmark=tinyMCEPopup.editor.selection.getBookmark(1)},restoreSelection:function(){var a=tinyMCEPopup;if(!a.isWindow&&tinymce.isIE){a.editor.selection.moveToBookmark(a.editor.windowManager.bookmark)}},requireLangPack:function(){var b=this,a=b.getWindowArg("plugin_url")||b.getWindowArg("theme_url");if(a&&b.editor.settings.language&&b.features.translate_i18n!==false&&b.editor.settings.language_load!==false){a+="/langs/"+b.editor.settings.language+"_dlg.js";if(!tinymce.ScriptLoader.isDone(a)){document.write('<script type="text/javascript" src="'+tinymce._addVer(a)+'"><\/script>');tinymce.ScriptLoader.markDone(a)}}},pickColor:function(b,a){this.execCommand("mceColorPicker",true,{color:document.getElementById(a).value,func:function(e){document.getElementById(a).value=e;try{document.getElementById(a).onchange()}catch(d){}}})},openBrowser:function(a,c,b){tinyMCEPopup.restoreSelection();this.editor.execCallback("file_browser_callback",a,document.getElementById(a).value,c,window)},confirm:function(b,a,c){this.editor.windowManager.confirm(b,a,c,window)},alert:function(b,a,c){this.editor.windowManager.alert(b,a,c,window)},close:function(){var a=this;function b(){a.editor.windowManager.close(window);tinymce=tinyMCE=a.editor=a.params=a.dom=a.dom.doc=null}if(tinymce.isOpera){a.getWin().setTimeout(b,0)}else{b()}},_restoreSelection:function(){var a=window.event.srcElement;if(a.nodeName=="INPUT"&&(a.type=="submit"||a.type=="button")){tinyMCEPopup.restoreSelection()}},_onDOMLoaded:function(){var b=tinyMCEPopup,d=document.title,e,c,a;if(b.features.translate_i18n!==false){c=document.body.innerHTML;if(tinymce.isIE){c=c.replace(/ (value|title|alt)=([^"][^\s>]+)/gi,' $1="$2"')}document.dir=b.editor.getParam("directionality","");if((a=b.editor.translate(c))&&a!=c){document.body.innerHTML=a}if((a=b.editor.translate(d))&&a!=d){document.title=d=a}}if(!b.editor.getParam("browser_preferred_colors",false)||!b.isWindow){b.dom.addClass(document.body,"forceColors")}document.body.style.display="";if(tinymce.isIE){document.attachEvent("onmouseup",tinyMCEPopup._restoreSelection);b.dom.add(b.dom.select("head")[0],"base",{target:"_self"})}b.restoreSelection();b.resizeToInnerSize();if(!b.isWindow){b.editor.windowManager.setTitle(window,d)}else{window.focus()}if(!tinymce.isIE&&!b.isWindow){b.dom.bind(document,"focus",function(){b.editor.windowManager.focus(b.id)})}tinymce.each(b.dom.select("select"),function(f){f.onkeydown=tinyMCEPopup._accessHandler});tinymce.each(b.listeners,function(f){f.func.call(f.scope,b.editor)});if(b.getWindowArg("mce_auto_focus",true)){window.focus();tinymce.each(document.forms,function(g){tinymce.each(g.elements,function(f){if(b.dom.hasClass(f,"mceFocus")&&!f.disabled){f.focus();return false}})})}document.onkeyup=tinyMCEPopup._closeWinKeyHandler},_accessHandler:function(a){a=a||window.event;if(a.keyCode==13||a.keyCode==32){var b=a.target||a.srcElement;if(b.onchange){b.onchange()}return tinymce.dom.Event.cancel(a)}},_closeWinKeyHandler:function(a){a=a||window.event;if(a.keyCode==27){tinyMCEPopup.close()}},_eventProxy:function(a){return function(b){tinyMCEPopup.dom.events.callNativeHandler(a,b)}}};tinyMCEPopup.init();
|
1475
library/tinymce/jscripts/tiny_mce/tiny_mce_src.js
vendored
1475
library/tinymce/jscripts/tiny_mce/tiny_mce_src.js
vendored
File diff suppressed because it is too large
Load diff
|
@ -17,9 +17,9 @@ tinyMCE.init({
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
content_css: "$baseurl/view/custom_tinymce.css"
|
content_css: "$baseurl/view/custom_tinymce.css"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -94,9 +94,9 @@
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
content_css: "$baseurl/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
setup : function(ed) {
|
setup : function(ed) {
|
||||||
|
|
|
@ -38,9 +38,9 @@ function initEditor(cb){
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
content_css: "$baseurl/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
|
@ -21,9 +21,9 @@ if(plaintext != 'none') {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
content_css: "$baseurl/view/custom_tinymce.css",
|
||||||
//Character count
|
//Character count
|
||||||
|
|
|
@ -20,9 +20,9 @@ tinyMCE.init({
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
content_css: "$baseurl/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
setup : function(ed) {
|
setup : function(ed) {
|
||||||
|
|
|
@ -22,9 +22,9 @@ tinyMCE.init({
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css"
|
content_css: "{{$baseurl}}/view/custom_tinymce.css"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -99,9 +99,9 @@
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
setup : function(ed) {
|
setup : function(ed) {
|
||||||
|
|
|
@ -43,9 +43,9 @@ function initEditor(cb){
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
|
@ -26,9 +26,9 @@ if(plaintext != 'none') {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
//Character count
|
//Character count
|
||||||
|
|
|
@ -25,9 +25,9 @@ tinyMCE.init({
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
setup : function(ed) {
|
setup : function(ed) {
|
||||||
|
|
|
@ -26,9 +26,9 @@ if(plaintext != 'none') {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
//Character count
|
//Character count
|
||||||
|
|
|
@ -36,9 +36,9 @@ function initEditor(cb) {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
content_css: "$baseurl/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
|
@ -41,9 +41,9 @@ function initEditor(cb) {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
|
@ -690,9 +690,9 @@ function setupFieldRichtext(){
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: baseurl+"/view/custom_tinymce.css",
|
content_css: baseurl+"/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
2
view/theme/frost-mobile/js/main.min.js
vendored
2
view/theme/frost-mobile/js/main.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -330,9 +330,9 @@ function initEditor(cb){
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
content_css: "$baseurl/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
@ -432,9 +432,9 @@ function wallInitEditor() {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: baseurl + "/view/custom_tinymce.css",
|
content_css: baseurl + "/view/custom_tinymce.css",
|
||||||
//Character count
|
//Character count
|
||||||
|
|
2
view/theme/frost-mobile/js/theme.min.js
vendored
2
view/theme/frost-mobile/js/theme.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -682,9 +682,9 @@ function setupFieldRichtext(){
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: baseurl+"/view/custom_tinymce.css",
|
content_css: baseurl+"/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
2
view/theme/frost/js/main.min.js
vendored
2
view/theme/frost/js/main.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -647,9 +647,9 @@ function initEditor(cb){
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: window.baseURL + "/view/custom_tinymce.css",
|
content_css: window.baseURL + "/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
@ -742,9 +742,9 @@ function msgInitEditor() {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: baseurl + "/view/custom_tinymce.css",
|
content_css: baseurl + "/view/custom_tinymce.css",
|
||||||
//Character count
|
//Character count
|
||||||
|
@ -783,9 +783,9 @@ function profInitEditor() {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
content_css: baseurl + "/view/custom_tinymce.css",
|
content_css: baseurl + "/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
setup : function(ed) {
|
setup : function(ed) {
|
||||||
|
@ -813,9 +813,9 @@ function eventInitEditor() {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
content_css: baseurl + "/view/custom_tinymce.css",
|
content_css: baseurl + "/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
setup : function(ed) {
|
setup : function(ed) {
|
||||||
|
@ -843,9 +843,9 @@ function contactInitEditor () {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
content_css: baseurl + "/view/custom_tinymce.css"
|
content_css: baseurl + "/view/custom_tinymce.css"
|
||||||
|
|
||||||
|
|
||||||
|
@ -872,9 +872,9 @@ function wallInitEditor() {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: baseurl + "/view/custom_tinymce.css",
|
content_css: baseurl + "/view/custom_tinymce.css",
|
||||||
//Character count
|
//Character count
|
||||||
|
|
2
view/theme/frost/js/theme.min.js
vendored
2
view/theme/frost/js/theme.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -53,9 +53,9 @@ function initEditor(cb){
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
content_css: "$baseurl/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
|
@ -58,9 +58,9 @@ function initEditor(cb){
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
|
@ -53,9 +53,9 @@ function initEditor(cb) {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
content_css: "$baseurl/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
|
@ -58,9 +58,9 @@ function initEditor(cb) {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
|
|
@ -21,9 +21,9 @@ if(plaintext != 'none') {
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
force_p_newlines : false,
|
//force_p_newlines : false,
|
||||||
force_br_newlines : true,
|
//force_br_newlines : true,
|
||||||
forced_root_block : '',
|
forced_root_block : 'div',
|
||||||
convert_urls: false,
|
convert_urls: false,
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
content_css: "$baseurl/view/custom_tinymce.css",
|
||||||
//Character count
|
//Character count
|
||||||
|
|
Loading…
Reference in a new issue