2007-07-19 12:40:05 +02:00
|
|
|
function nullConverter(url) {
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TinyMCE initialisation template.
|
|
|
|
* $ variables are replaced by string search & replace. It's pretty crude.
|
|
|
|
*/
|
2007-09-16 04:28:40 +02:00
|
|
|
// Prevents "Error: 'tinyMCE' is undefined" error in IE7 on Newsletter Recipient import.
|
|
|
|
if((typeof tinyMCE != 'undefined')) {
|
|
|
|
tinyMCE.init({
|
2008-10-24 07:03:33 +02:00
|
|
|
mode : "none",
|
2007-10-08 01:48:05 +02:00
|
|
|
language: "$Lang",
|
2008-10-24 07:03:33 +02:00
|
|
|
width: "100%",
|
2008-11-12 05:31:53 +01:00
|
|
|
auto_resize : false,
|
2007-09-16 04:28:40 +02:00
|
|
|
theme : "advanced",
|
2009-02-03 04:46:15 +01:00
|
|
|
content_css : "cms/css/editor.css, $ContentCSS",
|
2008-11-18 02:48:50 +01:00
|
|
|
body_class : 'typography',
|
2007-09-16 04:28:40 +02:00
|
|
|
document_base_url: "$BaseURL",
|
|
|
|
urlconverter_callback : "nullConverter",
|
|
|
|
|
|
|
|
setupcontent_callback : "sapphiremce_setupcontent",
|
|
|
|
cleanup_callback : "sapphiremce_cleanup",
|
|
|
|
|
2008-10-24 07:03:33 +02:00
|
|
|
theme_advanced_layout_manager: "SimpleLayout",
|
|
|
|
theme_advanced_toolbar_location : "top",
|
2007-09-16 04:28:40 +02:00
|
|
|
theme_advanced_toolbar_align : "left",
|
|
|
|
theme_advanced_toolbar_parent : "right",
|
2009-04-29 03:44:28 +02:00
|
|
|
plugins : "media,contextmenu,table,emotions,paste,../../tinymce_ssbuttons,../../tinymce_advcode,spellchecker,fullscreen",
|
2008-12-04 23:38:58 +01:00
|
|
|
blockquote_clear_tag : "p",
|
2007-09-16 04:28:40 +02:00
|
|
|
table_inline_editing : true,
|
2008-12-04 23:38:58 +01:00
|
|
|
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,separator,bullist,numlist,outdent,indent,blockquote,hr,charmap",
|
2009-04-29 03:44:28 +02:00
|
|
|
theme_advanced_buttons2 : "undo,redo,separator,cut,copy,paste,pastetext,pasteword,spellchecker,separator,ssimage,ssflash,sslink,unlink,anchor,separator,advcode,fullscreen,separator,search,replace,selectall,visualaid",
|
|
|
|
theme_advanced_buttons3 : "tablecontrols",
|
2008-11-10 02:47:13 +01:00
|
|
|
spellchecker_languages : "$SpellcheckLangs",
|
2008-11-04 03:13:58 +01:00
|
|
|
|
|
|
|
template_templates : [
|
|
|
|
{ title : "Three column", src : "assets/snippet.html", description : "A simple 3 column layout"},
|
|
|
|
],
|
2008-10-24 07:03:33 +02:00
|
|
|
|
2007-09-16 04:28:40 +02:00
|
|
|
safari_warning : false,
|
|
|
|
relative_urls : true,
|
2009-01-10 12:36:30 +01:00
|
|
|
verify_html : true,
|
2009-03-10 23:26:22 +01:00
|
|
|
use_native_selects : true, // fancy selects are bug as of SS 2.3.0
|
2009-04-29 03:44:28 +02:00
|
|
|
valid_elements : "+a[id|rel|rev|dir|tabindex|accesskey|type|name|href|target|title|class],-strong/-b[class],-em/-i[class],-strike[class],-u[class],#p[id|dir|class|align],-ol[class],-ul[class],-li[class],br,img[id|dir|longdesc|usemap|class|src|border|alt=|title|width|height|align],-sub[class],-sup[class],-blockquote[dir|class],-table[border=0|cellspacing|cellpadding|width|height|class|align|summary|dir|id|style],-tr[id|dir|class|rowspan|width|height|align|valign|bgcolor|background|bordercolor|style],tbody[id|class|style],thead[id|class|style],tfoot[id|class|style],-td[id|dir|class|colspan|rowspan|width|height|align|valign|scope|style],-th[id|dir|class|colspan|rowspan|width|height|align|valign|scope|style],caption[id|dir|class],-div[id|dir|class|align|style],-span[class|align],-pre[class|align],address[class|align],-h1[id|dir|class|align],-h2[id|dir|class|align],-h3[id|dir|class|align],-h4[id|dir|class|align],-h5[id|dir|class|align],-h6[id|dir|class|align],hr[class],dd[id|class|title|dir],dl[id|class|title|dir],dt[id|class|title|dir]",
|
2009-03-10 23:26:22 +01:00
|
|
|
extended_valid_elements : "img[class|src|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],iframe[src|name|width|height|align|frameborder|marginwidth|marginheight|scrolling]"
|
2007-09-16 04:28:40 +02:00
|
|
|
});
|
2008-02-25 03:10:37 +01:00
|
|
|
}
|
2008-10-24 07:03:33 +02:00
|
|
|
|
|
|
|
Behaviour.register({
|
|
|
|
'textarea.htmleditor' : {
|
|
|
|
initialize : function() {
|
|
|
|
tinyMCE.execCommand("mceAddControl", true, this.id);
|
2008-11-13 03:41:01 +01:00
|
|
|
this.isChanged = function() {
|
|
|
|
return tinyMCE.getInstanceById(this.id).isDirty();
|
|
|
|
}
|
2009-01-08 00:01:47 +01:00
|
|
|
this.resetChanged = function() {
|
|
|
|
inst = tinyMCE.getInstanceById(this.id);
|
|
|
|
inst.startContent = tinymce.trim(inst.getContent({format : 'raw', no_events : 1}));
|
|
|
|
}
|
2008-10-24 07:03:33 +02:00
|
|
|
}
|
|
|
|
}
|
2008-12-04 23:38:58 +01:00
|
|
|
})
|