Skip to content
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

Require Unicode full case folding and NFC normalization #1648

Merged
merged 3 commits into from Apr 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions epub33/core/index.html
Expand Up @@ -5809,12 +5809,11 @@ <h4>File Names</h4>
</ul>
</li>
<li>
<p id="ocf-fn-cn">All File Names within the same directory MUST be unique following case
normalization as described in section 3.13 of [[Unicode]].</p>
</li>
<li>
<p id="ocf-fn-an">All File Names within the same directory SHOULD be unique following NFC or
NFD normalization [[TR15]].</p>
<p id="ocf-fn-cn">All File Names within the same directory MUST be unique following full
case folding [[Unicode]] and NFC normalization [[TR15]]. (Refer to <a
href="https://www.w3.org/TR/charmod-norm/#CanonicalFoldNormalizationStep">Unicode
Canonical Case Fold Normalization Step</a> [[?CHARMOD-NORM]] for more
information.)</p>
</li>
</ul>

Expand Down Expand Up @@ -9378,9 +9377,10 @@ <h3>Substantive Changes since the <a href="https://www.w3.org/TR/2021/WD-epub-33
-->

<ul>

<li>22-Apr-2021: The usage of UTF-16 for CSS and XML has been changed, UTF-8 is the RECOMMENDED
encoding. See <a href="https://github.com/w3c/epub-specs/issues/1630">issue 1628</a>.</li>
<li>24-Apr-2021: Require Unicode full case folding and NFC normalization for file name uniqueness
comparisons. See <a href="https://github.com/w3c/epub-specs/issues/1631">issue 1631</a>.</li>
<li>22-Apr-2021: The usage of UTF-16 for CSS and XML has been changed, UTF-8 is the recommended
encoding. See <a href="https://github.com/w3c/epub-specs/issues/1628">issue 1628</a>.</li>
<li>19-Apr-2021: The use of custom attributes in EPUB Content Documents is no longer supported. See
<a href="https://github.com/w3c/epub-specs/issues/1602">issue 1602</a>.</li>
<li>13-Apr-2021: Require path names in OCF to also be UTF-8 encoded. See <a
Expand Down