tree checksum vpatch file split hunks

all signers: hanbot billymg

antecedents: mp-wp_remove-tinymce-and-other-crud

press order:

mp-wp_genesishanbot
mp-wp_add-footnotes-and-textselectionjsbillymg hanbot
mp-wp_update-image-references-to-svgbillymg hanbot
mp-wp_html-comments-regrindhanbot
mp-wp_remove-tinymce-and-other-crudbillymg
mp-wp_apply-htmlspecialchars-to-post-edit-contentbillymg

patch:

- ACF6B4C38D37946380913EEA64E19B5B8D8A497E6721D8969F6DDA318111B93D0699141210CC0298BE41AF8B65B332A2268560B7E726F290FADADCB4DBDAFCB9
+ 6D47BBC24996DBF2A24BF6D91ABF6AB3DE3B2AEF33884BF3E583A784BB3BC5D16F6D9C2F1C308C576C319A0A520B62A4432AB13F858C5DAE9AC253BA7628B2D3
mp-wp/manifest
(3 . 3)(3 . 4)
5 558370 mp-wp_update-image-references-to-svg billymg Update all internal image references to use .svg extensions
6 568792 mp-wp_html-comments-regrind hanbot Anonymous function in kses.php given variables to allow for html and other desired tags in comments compatible with PHP versions 5 and above. Also, trilema-specific database parameter for spam cleanup converted to (reground: correct) variable table name for compatibility. Spurious trilema-specific commented-out code deleted.
7 569483 mp-wp_remove-tinymce-and-other-crud billymg Remove tinymce, most of the importers, the self-update feature, and the google gears and press-this plugins
8 602064 mp-wp_apply-htmlspecialchars-to-post-edit-content billymg Run post content through htmlspecialchars() before loading into the post edit UI
- 96C9B9B0B8DA6F255E10FD47FD4053958417127524A5B8BE961E126CCE7FDE0476BD5C2B20C4580517A75B01E9751636C8DC0C6F250AB8F94DBBE8097057CF67
+ 8F357ED8C80C0CA11D8F4C97243F23AE535672FD5D9C83E43DDFE14B6D1BA191B920801ED8C9AC0168E61F6E626634D0041985DE3AFC69FFE6AF6AE2FBDED7C7
mp-wp/wp-includes/formatting.php
(775 . 17)(775 . 16)
13 /**^M
14 * Acts on text which is about to be edited.^M
15 *^M
16 * Holder for the 'format_to_edit'^M
17 * filter.^M
18 * Holder for the 'format_to_edit' filter.^M
19 *^M
20 * @since 0.71^M
21 *^M
22 * @param string $content The text about to be edited.^M
23 * @return string The text after the filter (and possibly htmlspecialchars()) has been run.^M
24 * @return string The text after the filter and htmlspecialchars() has been run.^M
25 */^M
26 function format_to_edit($content) {^M
27 $content = apply_filters('format_to_edit', $content);^M
28 return $content;^M
29 return htmlspecialchars($content);^M
30 }^M
31 ^M
32 /**^M