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

Remove OldUnicodeMap #978

Merged
merged 35 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
c48a170
Eggsperiment
eggrobin Nov 14, 2024
a66f92e
Merge remote-tracking branch 'la-vache/main' into generate-old-monkeys
eggrobin Nov 16, 2024
bf59f08
meow
eggrobin Nov 19, 2024
50a3157
Use remap rules for word and sentence too
eggrobin Nov 19, 2024
0205cab
No CM1 or ZWJ_O
eggrobin Nov 19, 2024
523cd0a
Regenerate UCD
eggrobin Nov 19, 2024
1e3d34f
Merge branch 'more-remapping-less-renaming' into generate-old-monkeys
eggrobin Nov 19, 2024
3a61d91
meow
eggrobin Nov 25, 2024
4433cc2
Some segmenter changes
eggrobin Nov 25, 2024
dc33cd0
Merge remote-tracking branch 'la-vache/main' into more-remapping-less…
eggrobin Nov 25, 2024
52e9dbd
^ rather than a variable called Not, UnicodeSet unions rather than |
eggrobin Nov 25, 2024
d6f96c4
Regenerate UCD
eggrobin Nov 25, 2024
cce6869
Merge branch 'more-remapping-less-renaming' into generate-old-monkeys
eggrobin Nov 25, 2024
5f254b9
Not bad but I should do something about QUmPi_Pf
eggrobin Nov 25, 2024
f6597bb
Better.
eggrobin Nov 26, 2024
533377d
Document the thing
eggrobin Nov 26, 2024
52a89cd
Regenerate UCD
eggrobin Nov 26, 2024
6fa6120
spotless
eggrobin Nov 26, 2024
94fb39a
Spotless and remove commented-out code.
eggrobin Nov 26, 2024
c46754f
Dead code elimination
eggrobin Nov 26, 2024
d8e4c4b
Pick the sample cleverly
eggrobin Nov 26, 2024
d22dfbe
Single assignment
eggrobin Nov 26, 2024
0ab3a58
spots
eggrobin Nov 26, 2024
6bcd20f
orig
eggrobin Nov 26, 2024
4ed94be
aaaaa
eggrobin Nov 26, 2024
dc77ece
Lex separately from name resolution…
eggrobin Nov 27, 2024
e213674
Unused variable, name gcb=XX, and a comment.
eggrobin Nov 27, 2024
9d2ddb8
No codepoint left behind
eggrobin Nov 27, 2024
ab96b84
Throw on undefined variables
eggrobin Nov 27, 2024
1bcb433
Suignardian pair table in LineBreakTest.html
eggrobin Nov 27, 2024
a901062
Merge remote-tracking branch 'la-vache/main' into generate-old-monkeys
eggrobin Nov 27, 2024
29fe201
Make it compile
eggrobin Nov 27, 2024
8307b33
Merge remote-tracking branch 'la-vache/main' into generate-old-monkeys
eggrobin Nov 28, 2024
f010247
Remove OldUnicodeMap.java
eggrobin Nov 28, 2024
f0f4bbf
Drive-by typo fix in LineBreakTest.html
eggrobin Nov 28, 2024
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
4 changes: 2 additions & 2 deletions unicodetools/data/ucd/dev/auxiliary/LineBreakTest.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<body bgcolor='#FFFFFF'>
<h2>Line_Break Chart</h2>
<p><b>Unicode Version:</b> 17.0.0</p>
<p><b>Date:</b> 2024-11-27, 17:44:25 GMT</p>
<p>This page illustrates the application of the Line_Break specification. The material here is informative, not normative.</p> <p>The first chart shows where breaks would appear between different sample characters or strings. The sample characters are chosen mechanically to represent the different properties used by the specification.</p><p>Each cell shows the break-status for the position between the character(s) in its row header and the character(s) in its column header. The symbol × indicates a prohibited break, even with intervening spaces; the ÷ symbol indicates a (direct) break; the symbol ∻ indicates a break only in the presence of an intervening space (an indirect break).The cells with × or are also shaded to make it easier to scan the table. For example, in the cell at the intersection of the row headed by “CR” and the column headed by “LF”, there is a × symbol, indicating that there is no break between CR and LF.</p>
<p><b>Date:</b> 2024-11-28, 01:27:49 GMT</p>
<p>This page illustrates the application of the Line_Break specification. The material here is informative, not normative.</p> <p>The first chart shows where breaks would appear between different sample characters or strings. The sample characters are chosen mechanically to represent the different properties used by the specification.</p><p>Each cell shows the break-status for the position between the character(s) in its row header and the character(s) in its column header. The symbol × indicates a prohibited break, even with intervening spaces; the ÷ symbol indicates a (direct) break; the symbol ∻ indicates a break only in the presence of an intervening space (an indirect break).The cells with × or are also shaded to make it easier to scan the table. For example, in the cell at the intersection of the row headed by “CR” and the column headed by “LF”, there is a × symbol, indicating that there is no break between CR and LF.</p>
<p></p><p>In the row and column headers of the <a href='#table'>Table</a>, in the <a href='#rules'>Rules</a>, when hovering over characters in the <a href='#samples'>Samples</a>, and in the comments in the associated list of test cases <a href='LineBreakTest.txt'>LineBreakTest.txt</a>:</p>
<ol><li>The following sets are used:<ul>
<li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public void run() throws IOException {
+ " break only in the presence of an intervening space (an indirect break)."
: "The × symbol indicates no break, while the ÷ symbol indicates a break. ")
+ "The cells with ×"
+ (fileName.equals("Line") ? " or " : "")
+ (fileName.equals("Line") ? " or " : "")
+ " are also shaded to make it easier to scan the table. "
+ "For example, in the cell at the intersection of the row headed by “CR” and the column headed by “LF”, there is a × symbol, "
+ "indicating that there is no break between CR and LF.</p>");
Expand Down
111 changes: 0 additions & 111 deletions unicodetools/src/main/java/org/unicode/text/UCD/OldUnicodeMap.java

This file was deleted.

Loading