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-03-04 04:35:29 +01:00
|
|
|
plugins : "media,contextmenu,table,emotions,paste,../../tinymce_ssbuttons,../../tinymce_advcode,spellchecker",
|
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-01-08 00:01:47 +01:00
|
|
|
theme_advanced_buttons2 : "undo,redo,separator,cut,copy,paste,pastetext,pasteword,spellchecker,separator,ssimage,ssflash,sslink,unlink,anchor,separator,advcode,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,
|
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
|
|
|
|
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
|
|
|
})
|