Skip to content

Commit 881529b

Browse files
author
gitlost
committed
[ci skip] Fiddle with readme.
1 parent 39daac7 commit 881529b

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ For best performance [install](http://php.net/manual/en/intl.installation.php) (
2525
the [PHP Internationalization extension `Intl`](http://php.net/manual/en/intro.intl.php),
2626
which includes the PHP class `Normalizer`.
2727

28-
However the plugin works without the PHP Internationalization extension being installed, as it uses (a modified version of)
28+
However the plugin works without the PHP `Intl` extension being installed, as it uses (a modified version of)
2929
the [Symfony `Normalizer` polyfill](https://github.com/symfony/polyfill/tree/master/src/Intl/Normalizer).
3030

31-
Also text pasted into inputs is normalized immediately using the javascript [`normalize()` method](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/normalize).
31+
Also text pasted into (most) inputs is normalized immediately using the JavaScript [`normalize()` method](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/normalize).
3232
For browsers without normalization support, the [unorm polyfill](https://github.com/walling/unorm) is used.
3333

3434
### Background ###
3535

3636
For further info, see the WP Trac ticket [#30130 Normalize characters with combining marks to precomposed characters](https://coretrac.wordpress.org/ticket/30130)
3737
and this [Make WP Core comment](https://make.wordpress.org/core/2016/05/17/may-17-feature-projects-chat-and-prompt/#comment-30300).
3838

39-
The plugin also works around the Safari-specific issues raised by WP Trac ticket [#22363 Accents in attachment filenames should be sanitized](https://core.trac.wordpress.org/ticket/22363).
39+
The plugin also works around the Safari-specific issues raised by the WP Trac ticket [#22363 Accents in attachment filenames should be sanitized](https://core.trac.wordpress.org/ticket/22363).
4040

4141
### Scanner ###
4242

@@ -46,7 +46,7 @@ This is especially important if your database contains non-normalized serialized
4646
[Database Search and Replace Script in PHP](https://interconnectit.com/products/search-and-replace-for-wordpress-databases/) to deal with serialized
4747
data, and is fallible.
4848

49-
### Tailends ###
49+
### And ###
5050

5151
A google-cheating schoolboy French translation is supplied.
5252

@@ -80,6 +80,10 @@ global PHP variable `unfc_normalize`, but you should ensure that the `Normalizer
8080
}
8181
add_filter( 'myfilter', array( $unfc_normalize, 'normalize' ), 6 /* Or whatever priority you choose */ );
8282

83+
### Does it have a tool to normalize the filenames of files already uploaded using Chrome or Firefox on macOS (OS X) prior to its enabling?
84+
85+
No, it doesn't yet, alas. Such files would have to re-uploaded. However if (enough - or more like any) interest were expressed...
86+
###
8387
## Screenshots ##
8488

8589
### 1. Before and after: pasting non-normalized text into a post's title and content. ###

dist/unfc-normalize-1.0.5.zip

132 Bytes
Binary file not shown.

readme.txt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ For best performance [install](http://php.net/manual/en/intl.installation.php) (
2424
the [PHP Internationalization extension `Intl`](http://php.net/manual/en/intro.intl.php),
2525
which includes the PHP class `Normalizer`.
2626

27-
However the plugin works without the PHP Internationalization extension being installed, as it uses (a modified version of)
27+
However the plugin works without the PHP `Intl` extension being installed, as it uses (a modified version of)
2828
the [Symfony `Normalizer` polyfill](https://github.com/symfony/polyfill/tree/master/src/Intl/Normalizer).
2929

30-
Also text pasted into inputs is normalized immediately using the javascript [`normalize()` method](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/normalize).
30+
Also text pasted into (most) inputs is normalized immediately using the JavaScript [`normalize()` method](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/normalize).
3131
For browsers without normalization support, the [unorm polyfill](https://github.com/walling/unorm) is used.
3232

3333
= Background =
3434

3535
For further info, see the WP Trac ticket [#30130 Normalize characters with combining marks to precomposed characters](https://coretrac.wordpress.org/ticket/30130)
3636
and this [Make WP Core comment](https://make.wordpress.org/core/2016/05/17/may-17-feature-projects-chat-and-prompt/#comment-30300).
3737

38-
The plugin also works around the Safari-specific issues raised by WP Trac ticket [#22363 Accents in attachment filenames should be sanitized](https://core.trac.wordpress.org/ticket/22363).
38+
The plugin also works around the Safari-specific issues raised by the WP Trac ticket [#22363 Accents in attachment filenames should be sanitized](https://core.trac.wordpress.org/ticket/22363).
3939

4040
= Scanner =
4141

@@ -45,7 +45,7 @@ This is especially important if your database contains non-normalized serialized
4545
[Database Search and Replace Script in PHP](https://interconnectit.com/products/search-and-replace-for-wordpress-databases/) to deal with serialized
4646
data, and is fallible.
4747

48-
= Tailends =
48+
= And =
4949

5050
A google-cheating schoolboy French translation is supplied.
5151

@@ -79,6 +79,10 @@ global PHP variable `unfc_normalize`, but you should ensure that the `Normalizer
7979
}
8080
add_filter( 'myfilter', array( $unfc_normalize, 'normalize' ), 6 /* Or whatever priority you choose */ );
8181

82+
= Does it have a tool to normalize the filenames of files already uploaded using Chrome or Firefox on macOS (OS X) prior to its enabling?
83+
84+
No, it doesn't yet, alas. Such files would have to re-uploaded. However if (enough - or more like any) interest were expressed...
85+
8286
== Screenshots ==
8387

8488
1. Before and after: pasting non-normalized text into a post's title and content.

0 commit comments

Comments
 (0)