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

CLDR-16122 v43 BRS codes #2798

Merged
merged 1 commit into from
Mar 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions common/validity/subdivision.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE supplementalData SYSTEM '../../common/dtd/ldmlSupplemental.dtd'>
<!--
Copyright © 1991-2022 Unicode, Inc.
Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
Expand Down Expand Up @@ -236,10 +236,10 @@
zagt zanl
</id>
<!-- Unknown/Undetermined subdivision codes (ZZZZ) are defined for all regular region codes. -->
<id type='subdivision' idStatus='unknown'> <!-- 256 items -->
<id type='subdivision' idStatus='unknown'> <!-- 257 items -->
aczzzz adzzzz aezzzz afzzzz agzzzz aizzzz alzzzz amzzzz aozzzz aqzzzz arzzzz aszzzz atzzzz auzzzz awzzzz axzzzz azzzzz
bazzzz bbzzzz bdzzzz bezzzz bfzzzz bgzzzz bhzzzz bizzzz bjzzzz blzzzz bmzzzz bnzzzz bozzzz bqzzzz brzzzz bszzzz btzzzz bvzzzz bwzzzz byzzzz bzzzzz
cazzzz cczzzz cdzzzz cfzzzz cgzzzz chzzzz cizzzz ckzzzz clzzzz cmzzzz cnzzzz cozzzz cpzzzz crzzzz cuzzzz cvzzzz cwzzzz cxzzzz cyzzzz czzzzz
cazzzz cczzzz cdzzzz cfzzzz cgzzzz chzzzz cizzzz ckzzzz clzzzz cmzzzz cnzzzz cozzzz cpzzzz cqzzzz crzzzz cuzzzz cvzzzz cwzzzz cxzzzz cyzzzz czzzzz
dezzzz dgzzzz djzzzz dkzzzz dmzzzz dozzzz dzzzzz
eazzzz eczzzz eezzzz egzzzz ehzzzz erzzzz eszzzz etzzzz
fizzzz fjzzzz fkzzzz fmzzzz fozzzz frzzzz
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public static void main(String[] args) throws IOException {
String type = entry.getKey();
final Info info = entry.getValue();
Multimap<Status, String> subtypeMap = info.getStatusMap();
try (TempPrintWriter output = TempPrintWriter.openUTF8Writer(CLDRPaths.COMMON_DIRECTORY, "validity/" + type + ".xml")) {
try (TempPrintWriter output = TempPrintWriter.openUTF8Writer(CLDRPaths.COMMON_DIRECTORY, "validity/" + type + ".xml").skipCopyright(true)) {
adder.target = output;
output.append(DtdType.supplementalData.header(MethodHandles.lookup().lookupClass())
+ "\t<version number=\"$Revision" + "$\"/>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ private static String getLineWithoutFluff(BufferedReader br1, boolean first, boo
if (line1.startsWith("# Date")) {
continue;
}
if (skipCopyright && (line1.startsWith("# Copyright") || (line1.trim().startsWith("<!--") && line1.contains("Copyright")))) {
if (skipCopyright && (line1.startsWith("# Copyright") || line1.contains("Copyright ©"))) {
continue;
}
if (line1.startsWith("<p><b>Date:</b>")) {
Expand Down