diff --git a/wp-includes/js/tinymce/plugins/wordpress/images/help.gif b/wp-includes/js/tinymce/plugins/wordpress/images/help.gif deleted file mode 100644 index 51a1ee4207..0000000000 Binary files a/wp-includes/js/tinymce/plugins/wordpress/images/help.gif and /dev/null differ diff --git a/wp-includes/js/tinymce/plugins/wordpress/images/more.gif b/wp-includes/js/tinymce/plugins/wordpress/images/more.gif deleted file mode 100644 index 4ff564d589..0000000000 Binary files a/wp-includes/js/tinymce/plugins/wordpress/images/more.gif and /dev/null differ diff --git a/wp-includes/js/tinymce/plugins/wordpress/images/more_bug.gif b/wp-includes/js/tinymce/plugins/wordpress/images/more_bug.gif deleted file mode 100644 index 4589cb4dc6..0000000000 Binary files a/wp-includes/js/tinymce/plugins/wordpress/images/more_bug.gif and /dev/null differ diff --git a/wp-includes/js/tinymce/plugins/wordpress/images/page.gif b/wp-includes/js/tinymce/plugins/wordpress/images/page.gif deleted file mode 100644 index 1cea78ac2b..0000000000 Binary files a/wp-includes/js/tinymce/plugins/wordpress/images/page.gif and /dev/null differ diff --git a/wp-includes/js/tinymce/plugins/wordpress/images/page_bug.gif b/wp-includes/js/tinymce/plugins/wordpress/images/page_bug.gif deleted file mode 100644 index 9ea3565692..0000000000 Binary files a/wp-includes/js/tinymce/plugins/wordpress/images/page_bug.gif and /dev/null differ diff --git a/wp-includes/js/tinymce/plugins/wordpress/images/toolbars.gif b/wp-includes/js/tinymce/plugins/wordpress/images/toolbars.gif deleted file mode 100644 index dcb70665f8..0000000000 Binary files a/wp-includes/js/tinymce/plugins/wordpress/images/toolbars.gif and /dev/null differ diff --git a/wp-includes/js/tinymce/plugins/wordpress/wordpress.css b/wp-includes/js/tinymce/plugins/wordpress/wordpress.css deleted file mode 100644 index a611ed0176..0000000000 --- a/wp-includes/js/tinymce/plugins/wordpress/wordpress.css +++ /dev/null @@ -1,81 +0,0 @@ -.mce_plugin_wordpress_more { - border: 0px; - border-top: 1px dotted #cccccc; - display:block; - background-color: #ffffff; - margin-top:15px; - background-image: url(images/more_bug.gif); - background-repeat: no-repeat; - background-position: right top; -} - -.mce_plugin_wordpress_page { - border: 0px; - border-top: 1px dotted #cccccc; - display:block; - background-color: #ffffff; - margin-top:15px; - background-image: url(images/page_bug.gif); - background-repeat: no-repeat; - background-position: right top; -} - -/* This file contains the CSS data for the editable area(iframe) of TinyMCE */ -/* You can extend this CSS by adding your own CSS file with the the content_css option */ - -body { - background: #fff; - font: 1em/1.3em Georgia, "Times New Roman", Times, serif; - padding: .5em; -} - -td { - font-size: 10px; -} - -pre { - font-family: "Courier New", fixed; - font-size: 11px; - line-height: 13px; -} - -.mceVisualAid { - border: 1px dashed #BBBBBB !important; -} - -.mceItemAnchor { - width: 12px; - line-height: 6px; - overflow: hidden; - padding-left: 12px; - background-position: bottom; - background-repeat: no-repeat; -} - -/* Important is needed in Gecko browsers inorder to style links */ -/* -a { - color: green !important; -} -*/ - -/* Style selection range colors in Gecko browsers */ -/* -::-moz-selection { - background-color: red; - color: green; -} -*/ - -/* MSIE specific */ - -* html body { - scrollbar-3dlight-color: #F0F0EE; - scrollbar-arrow-color: #676662; - scrollbar-base-color: #F0F0EE; - scrollbar-darkshadow-color: #DDDDDD; - scrollbar-face-color: #E0E0DD; - scrollbar-highlight-color: #F0F0EE; - scrollbar-shadow-color: #F0F0EE; - scrollbar-track-color: #F5F5F5; -} \ No newline at end of file diff --git a/wp-includes/js/tinymce/plugins/wphelp/editor_plugin.js b/wp-includes/js/tinymce/plugins/wphelp/editor_plugin.js deleted file mode 100644 index 9eac78d2a4..0000000000 --- a/wp-includes/js/tinymce/plugins/wphelp/editor_plugin.js +++ /dev/null @@ -1,50 +0,0 @@ -/* WordPress Help plugin for TinyMCE 3.x */ - -(function() { - -// tinymce.PluginManager.requireLangPack('wphelp'); - - tinymce.create('tinymce.plugins.WP_Help', { - - init : function(ed, url) { - // Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('mceExample'); - ed.addCommand('wpHelp', function() { - ed.windowManager.open({ - file : tinymce.baseURL + '/wp-mce-help.php', - width : 450, - height : 420, - inline : 1 - }, { - plugin_url : url, // Plugin absolute URL - resizable : 'yes', - scrollbars : 'yes' - }); - }); - - // Register example button - ed.addButton('wphelp', { - title : ed.getLang('advanced.help_desc'), - cmd : 'wpHelp', - image : url + '/images/help.gif' - }); - - // Add a node change handler, selects the button in the UI when a image is selected - ed.onNodeChange.add(function(ed, cm, n) { - cm.setActive('wphelp', n.nodeName == 'IMG'); - }); - }, - - getInfo : function() { - return { - longname : 'WordPress Help plugin', - author : 'WordPress', - authorurl : 'http://wordpress.org', - infourl : 'http://wordpress.org', - version : "3.0" - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('wphelp', tinymce.plugins.WP_Help); -})(); diff --git a/wp-includes/js/tinymce/plugins/wphelp/images/help.gif b/wp-includes/js/tinymce/plugins/wphelp/images/help.gif deleted file mode 100644 index 51a1ee4207..0000000000 Binary files a/wp-includes/js/tinymce/plugins/wphelp/images/help.gif and /dev/null differ