From 517bf3198bf2ec2e817e79e7c2102e49606553e0 Mon Sep 17 00:00:00 2001 From: Simon Welsh Date: Thu, 12 Apr 2012 20:43:43 +1200 Subject: [PATCH] API-CHANGE Move tinymce plugins in thirdparty --- .../tinymce_ssbuttons/editor_plugin_src.js | 52 ------------- javascript/tinymce_ssbuttons/img/flash.gif | Bin 241 -> 0 bytes javascript/tinymce_ssbuttons/langs/de.js | 5 -- javascript/tinymce_ssbuttons/langs/en.js | 5 -- .../tinymce_ssmacron/editor_plugin_src.js | 46 ------------ javascript/tinymce_ssmacron/img/macron.png | Bin 3260 -> 0 bytes javascript/tinymce_ssmacron/js/macron.js | 71 ------------------ javascript/tinymce_ssmacron/macron.htm | 31 -------- 8 files changed, 210 deletions(-) delete mode 100644 javascript/tinymce_ssbuttons/editor_plugin_src.js delete mode 100644 javascript/tinymce_ssbuttons/img/flash.gif delete mode 100644 javascript/tinymce_ssbuttons/langs/de.js delete mode 100644 javascript/tinymce_ssbuttons/langs/en.js delete mode 100644 javascript/tinymce_ssmacron/editor_plugin_src.js delete mode 100644 javascript/tinymce_ssmacron/img/macron.png delete mode 100644 javascript/tinymce_ssmacron/js/macron.js delete mode 100644 javascript/tinymce_ssmacron/macron.htm diff --git a/javascript/tinymce_ssbuttons/editor_plugin_src.js b/javascript/tinymce_ssbuttons/editor_plugin_src.js deleted file mode 100644 index 699f5f9e..00000000 --- a/javascript/tinymce_ssbuttons/editor_plugin_src.js +++ /dev/null @@ -1,52 +0,0 @@ -(function() { - - // TinyMCE will stop loading if it encounters non-existent external script file - // when included through tiny_mce_gzip.php. Only load the external lang package if it is available. - var availableLangs = ['en', 'de']; - if(jQuery.inArray(tinymce.settings.language, availableLangs) != -1) { - tinymce.PluginManager.requireLangPack("ssbuttons"); - } - - var each = tinymce.each; - - tinymce.create('tinymce.plugins.SSButtons', { - /** - * Returns information about the plugin as a name/value array. - * The current keys are longname, author, authorurl, infourl and version. - * - * @returns Name/value array containing information about the plugin. - * @type Array - */ - getInfo : function() { - return { - longname : 'Special buttons for SilverStripe CMS', - author : 'Sam Minnée', - authorurl : 'http://www.siverstripe.com/', - infourl : 'http://www.silverstripe.com/', - version : "1.0" - }; - }, - - init : function(ed, url) { - ed.addButton('sslink', {title : ed.getLang('tinymce_ssbuttons.insertlink'), cmd : 'sslink', 'class' : 'mce_link'}); - ed.addButton('ssimage', {title : ed.getLang('tinymce_ssbuttons.insertimage'), cmd : 'ssimage', 'class' : 'mce_image'}); - - ed.addCommand("sslink", function(ed) { - jQuery('#Form_EditorToolbarLinkForm').entwine('ss').open(); - }); - - ed.addCommand("ssimage", function(ed) { - jQuery('#Form_EditorToolbarMediaForm').entwine('ss').open(); - }); - - // Disable link button when no link is selected - ed.onNodeChange.add(function(ed, cm, n, co) { - cm.setDisabled('sslink', co && n.nodeName != 'A'); - cm.setActive('sslink', n.nodeName == 'A' && !n.name); - }); - } - }); - - // Adds the plugin class to the list of available TinyMCE plugins - tinymce.PluginManager.add("ssbuttons", tinymce.plugins.SSButtons); -})(); \ No newline at end of file diff --git a/javascript/tinymce_ssbuttons/img/flash.gif b/javascript/tinymce_ssbuttons/img/flash.gif deleted file mode 100644 index cb192e6ceda8d19ad8e7d08dd1cfde0aa72ead2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmVOzlLa+Za}7>m0&NpCfJ0FQc3~F7DE)S%o1)Qi1n@vxX46qnD4hRS-NE*Pw!4UvE=#^N( diff --git a/javascript/tinymce_ssbuttons/langs/de.js b/javascript/tinymce_ssbuttons/langs/de.js deleted file mode 100644 index 0948d6ff..00000000 --- a/javascript/tinymce_ssbuttons/langs/de.js +++ /dev/null @@ -1,5 +0,0 @@ -tinyMCE.addI18n('de.tinymce_ssbuttons',{ -insertlink: 'Link einfügen', -insertimage: 'Bild einfügen', -insertflash: 'Flash Objekt einfügen' -}); \ No newline at end of file diff --git a/javascript/tinymce_ssbuttons/langs/en.js b/javascript/tinymce_ssbuttons/langs/en.js deleted file mode 100644 index 91ed8fb0..00000000 --- a/javascript/tinymce_ssbuttons/langs/en.js +++ /dev/null @@ -1,5 +0,0 @@ -tinyMCE.addI18n('en.tinymce_ssbuttons', { -insertlink: 'Insert Link', -insertimage: 'Insert Image', -insertflash: 'Insert Flash Object' -}); \ No newline at end of file diff --git a/javascript/tinymce_ssmacron/editor_plugin_src.js b/javascript/tinymce_ssmacron/editor_plugin_src.js deleted file mode 100644 index f0657c2e..00000000 --- a/javascript/tinymce_ssmacron/editor_plugin_src.js +++ /dev/null @@ -1,46 +0,0 @@ -(function() { - var each = tinymce.each; - - /** - * Load via: - * HtmlEditorConfig::get('cms')->enablePlugins(array('ssmacron', '../../../../cms/javascript/tinymce_ssmacron')) - * HtmlEditorConfig::get('cms')->insertButtonsAfter ('advcode', 'ssmacron'); - */ - tinymce.create('tinymce.plugins.InsertMacron', { - getInfo : function() { - return { - longname : 'Button to insert macrons', - author : 'Hamish Friedlander. Heavily based on charmap that comes with TinyMCE', - authorurl : 'http://www.siverstripe.com/', - infourl : 'http://www.silverstripe.com/', - version : "1.0" - }; - }, - - - init : function(ed, url) { - // Register commands - ed.addCommand('mceInsertMacron', function() { - ed.windowManager.open({ - file : url + '/macron.htm', - width : 350 + parseInt(ed.getLang('advanced.charmap_delta_width', 0)), - height : 150 + parseInt(ed.getLang('advanced.charmap_delta_height', 0)), - inline : true - }, { - plugin_url : url - }); - }); - - // Register buttons - ed.addButton('ssmacron', { - title : 'Insert a Macron', - cmd : 'mceInsertMacron', - image : url + '/img/macron.png' - }); - - } - }); - - // Adds the plugin class to the list of available TinyMCE plugins - tinymce.PluginManager.add("ssmacron", tinymce.plugins.InsertMacron); -})(); diff --git a/javascript/tinymce_ssmacron/img/macron.png b/javascript/tinymce_ssmacron/img/macron.png deleted file mode 100644 index 80caf6dab1e5b64a1090f34c79faec373177839d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3260 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 ut*Yu{#+c~!df)BbVYyr;R'; - var cols=-1; - - for (i=0; i' - + '' - + charmap[i][1] - + ''; - if ((cols+1) % charsPerRow == 0) - html += ''; - } - } - - if (cols % charsPerRow > 0) { - var padd = charsPerRow - (cols % charsPerRow); - for (var i=0; i '; - } - - html += ''; - - return html; -} - -function insertChar(chr) { - tinyMCEPopup.execCommand('mceInsertContent', false, '&#' + chr + ';'); - - // Refocus in window - if (tinyMCEPopup.isWindow) - window.focus(); - - tinyMCEPopup.editor.focus(); - tinyMCEPopup.close(); -} - -function previewChar(codeA, codeB, codeN) { - var elmV = document.getElementById('codeV'); - var elmN = document.getElementById('codeN'); - - if (codeA=='#160;') { - elmV.innerHTML = '__'; - } else { - elmV.innerHTML = '&' + codeA; - } - - elmN.innerHTML = codeN; -} diff --git a/javascript/tinymce_ssmacron/macron.htm b/javascript/tinymce_ssmacron/macron.htm deleted file mode 100644 index 44346f3b..00000000 --- a/javascript/tinymce_ssmacron/macron.htm +++ /dev/null @@ -1,31 +0,0 @@ - - - - Insert a Macron - - - - - - - - - - - - -
Insert a Macron
- - - - - - - - - -
 
 
-
- - -