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",
|
|
|
|
content_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",
|
2008-12-04 23:38:58 +01:00
|
|
|
plugins : "blockquote,template,contextmenu,table,emotions,paste,../../tinymce_ssbuttons,../../tinymce_advcode,spellchecker",
|
|
|
|
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",
|
2008-11-18 02:48:50 +01:00
|
|
|
theme_advanced_buttons2 : "undo,redo,separator,cut,copy,paste,pastetext,pasteword,spellchecker,separator,ssimage,ssflash,sslink,unlink,anchor,separator,template,advcode,separator,search,replace,selectall,visualaid,separator,tablecontrols",
|
2007-09-16 04:28:40 +02:00
|
|
|
theme_advanced_buttons3 : "",
|
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,
|
2008-12-04 23:38:58 +01:00
|
|
|
verify_html : true
|
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();
|
|
|
|
}
|
2008-10-24 07:03:33 +02:00
|
|
|
}
|
|
|
|
}
|
2008-12-04 23:38:58 +01:00
|
|
|
})
|