1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/**
* $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
*
* @author Moxiecode - based on work by Andrew Tetlaw
* @copyright Copyright 2004-2006, Moxiecode Systems AB, All rights reserved.
*/
/* Import plugin specific language pack */
tinyMCE.importPluginLanguagePack('xhtmlxtras');
var TinyMCE_XHTMLXtrasPlugin = {
getInfo : function() {
return {
longname : 'XHTML Xtras Plugin',
author : 'Moxiecode Systems AB',
authorurl : 'http://tinymce.moxiecode.com',
infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_xhtmlxtras.html',
version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
};
},
initInstance : function(inst) {
tinyMCE.importCSS(inst.getDoc(), tinyMCE.baseURL + "/plugins/xhtmlxtras/css/xhtmlxtras.css");
},
getControlHTML : function(cn) {
switch (cn) {
case "cite":
return tinyMCE.getButtonHTML(cn, 'lang_xhtmlxtras_cite_desc', '{$pluginurl}/images/cite.gif', 'mceCite', true);
case "acronym":
return tinyMCE.getButtonHTML(cn, 'lang_xhtmlxtras_acronym_desc', '{$pluginurl}/images/acronym.gif', 'mceAcronym', true);
case "abbr":
return tinyMCE.getButtonHTML(cn, 'lang_xhtmlxtras_abbr_desc', '{$pluginurl}/images/abbr.gif', 'mceAbbr', true);
case "del":
return tinyMCE.getButtonHTML(cn, 'lang_xhtmlxtras_del_desc', '{$pluginurl}/images/del.gif', 'mceDel', true);
case "ins":
return tinyMCE.getButtonHTML(cn, 'lang_xhtmlxtras_ins_desc', '{$pluginurl}/images/ins.gif', 'mceIns', true);
}
return "";
},
execCommand : function(editor_id, element, command, user_interface, value) {
var template;
switch (command) {
case "mceCite":
if (!this._anySel(editor_id))
return true;
template = new Array();
template['file'] = '../../plugins/xhtmlxtras/cite.htm';
template['width'] = 350;
template['height'] = 250;
tinyMCE.openWindow(template, {editor_id : editor_id});
return true;
case "mceAcronym":
if (!this._anySel(editor_id))
return true;
template = new Array();
template['file'] = '../../plugins/xhtmlxtras/acronym.htm';
template['width'] = 350;
template['height'] = 250;
tinyMCE.openWindow(template, {editor_id : editor_id});
return true;
case "mceAbbr":
if (!this._anySel(editor_id))
return true;
template = new Array();
template['file'] = '../../plugins/xhtmlxtras/abbr.htm';
template['width'] = 350;
template['height'] = 250;
tinyMCE.openWindow(template, {editor_id : editor_id});
return true;
case "mceIns":
if (!this._anySel(editor_id))
return true;
template = new Array();
template['file'] = '../../plugins/xhtmlxtras/ins.htm';
template['width'] = 350;
template['height'] = 310;
tinyMCE.openWindow(template, {editor_id : editor_id});
return true;
case "mceDel":
if (!this._anySel(editor_id))
return true;
template = new Array();
template['file'] = '../../plugins/xhtmlxtras/del.htm';
template['width'] = 350;
template['height'] = 310;
tinyMCE.openWindow(template, {editor_id : editor_id});
return true;
}
return false;
},
cleanup : function(type, content, inst) {
if (type == 'insert_to_editor' && tinyMCE.isIE && !tinyMCE.isOpera) {
content = content.replace(/<abbr([^>]+)>/gi, '<html:ABBR $1>');
content = content.replace(/<\/abbr>/gi, '</html:ABBR>');
}
return content;
},
handleNodeChange : function(editor_id, node, undo_index,undo_levels, visual_aid, any_selection) {
if (node == null)
return;
if (!any_selection) {
// Disable the buttons
tinyMCE.switchClass(editor_id + '_cite', 'mceButtonDisabled');
tinyMCE.switchClass(editor_id + '_acronym', 'mceButtonDisabled');
tinyMCE.switchClass(editor_id + '_abbr', 'mceButtonDisabled');
tinyMCE.switchClass(editor_id + '_del', 'mceButtonDisabled');
tinyMCE.switchClass(editor_id + '_ins', 'mceButtonDisabled');
} else {
// A selection means the buttons should be active.
tinyMCE.switchClass(editor_id + '_cite', 'mceButtonNormal');
tinyMCE.switchClass(editor_id + '_acronym', 'mceButtonNormal');
tinyMCE.switchClass(editor_id + '_abbr', 'mceButtonNormal');
tinyMCE.switchClass(editor_id + '_del', 'mceButtonNormal');
tinyMCE.switchClass(editor_id + '_ins', 'mceButtonNormal');
}
switch (node.nodeName) {
case "CITE":
tinyMCE.switchClass(editor_id + '_cite', 'mceButtonSelected');
return true;
case "ACRONYM":
tinyMCE.switchClass(editor_id + '_acronym', 'mceButtonSelected');
return true;
case "abbr": // IE
case "HTML:ABBR": // FF
case "ABBR":
tinyMCE.switchClass(editor_id + '_abbr', 'mceButtonSelected');
return true;
case "DEL":
tinyMCE.switchClass(editor_id + '_del', 'mceButtonSelected');
return true;
case "INS":
tinyMCE.switchClass(editor_id + '_ins', 'mceButtonSelected');
return true;
}
return true;
},
_anySel : function(editor_id) {
var inst = tinyMCE.getInstanceById(editor_id), t = inst.selection.getSelectedText(), pe;
pe = tinyMCE.getParentElement(inst.getFocusElement(), 'CITE,ACRONYM,ABBR,HTML:ABBR,DEL,INS');
return pe || inst.getFocusElement().nodeName == "IMG" || (t && t.length > 0);
}
};
tinyMCE.addPlugin("xhtmlxtras", TinyMCE_XHTMLXtrasPlugin);
|