-
-
Notifications
You must be signed in to change notification settings - Fork 61
Feature/updates #1555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/updates #1555
Conversation
|
Added TinyMCE 7 |
Waouuuu ! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR removes multiple TinyMCE 5 editor plugins entirely from the codebase. The changes involve complete deletion of both the plugin implementation files and their module loader index files across multiple editor plugins.
- Removes 14 TinyMCE plugins including searchreplace, save, quickbars, print, preview, paste, pagebreak, noneditable, nonbreaking, and media
- Deletes both plugin.js (implementation) and index.js (module loader) files for each plugin
- Eliminates thousands of lines of plugin functionality code
Reviewed Changes
Copilot reviewed 89 out of 507 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/searchreplace/index.js | Removes module loader for searchreplace plugin |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/save/plugin.js | Removes save plugin implementation (119 lines) |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/save/index.js | Removes module loader for save plugin |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/quickbars/plugin.js | Removes quickbars plugin implementation (489 lines) |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/quickbars/index.js | Removes module loader for quickbars plugin |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/print/plugin.js | Removes print plugin implementation (53 lines) |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/print/index.js | Removes module loader for print plugin |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/preview/plugin.js | Removes preview plugin implementation (127 lines) |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/preview/index.js | Removes module loader for preview plugin |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/paste/plugin.js | Removes paste plugin implementation (1764 lines) |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/paste/index.js | Removes module loader for paste plugin |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/pagebreak/plugin.js | Removes pagebreak plugin implementation (105 lines) |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/pagebreak/index.js | Removes module loader for pagebreak plugin |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/noneditable/plugin.js | Removes noneditable plugin implementation (117 lines) |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/noneditable/index.js | Removes module loader for noneditable plugin |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/nonbreaking/plugin.js | Removes nonbreaking plugin implementation (101 lines) |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/nonbreaking/index.js | Removes module loader for nonbreaking plugin |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/media/plugin.js | Removes media plugin implementation (1382 lines) |
| htdocs/class/xoopseditor/tinymce5/tinymce5/jscripts/tiny_mce/plugins/media/index.js | Removes module loader for media plugin |
No description provided.