-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
2215 lines (1401 loc) · 67.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Osage Script Resources</title>
<script class="remove" src="../../i18n-activity/templates/gap-analysis/prompts.js"></script>
<script class="remove" src="../../typography/index-data/shared_data.js"></script>
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove" defer></script>
<script class="remove">
var respecConfig = {
// specification status (e.g. WD, LCWD, WG-NOTE, etc.). If in doubt use ED.
specStatus: "ED",
//publishDate: "2024-07-30",
noRecTrack: true,
shortName: "osge-lreq",
copyrightStart: "2018",
edDraftURI: "https://w3c.github.io/amlreq/osge/",
editors: [
{ name: "Richard Ishida", mailto: "ishida@w3.org", company: "W3C", w3cid: 3439 }
],
group: "i18n",
github: "w3c/amlreq",
preProcess: [ () => { addPrompts() }, () => { addSharedData() }, ],
postProcess: [
async function importStyleSheet() {
const elems = document.querySelectorAll(`link[rel='stylesheet'][data-import]`)
await Promise.all(
[...elems].map(async link => {
const text = await fetch(link.href).then(r => r.text())
const style = document.createElement("style")
style.textContent = text
link.replaceWith(style)
})
)
}
],
};
</script>
<link rel="stylesheet" data-import href="https://w3c.github.io/i18n-drafts/style/respec_2022.css">
<!--<link rel="stylesheet" href="local.css">-->
</head>
<body>
<div id="abstract">
<p>This document points to resources for the layout and presentation of text in languages that use the Osage script. The target audience includes developers of Web standards and technologies, such as HTML, CSS, Mobile Web, Digital Publications, and Unicode, as well as implementers of web browsers, ebook readers, and other applications that need to render Osage text.</p>
</div>
<div id="sotd">
<p>This document points to resources for Osage script layout and text support on the Web and in eBooks. These requirements provide information for Web technologies such as CSS, HTML and digital publications about how to support languages written using the Osage script. The information here is developed in conjunction with a <a href="https://www.w3.org/TR/osge-osa-gap/">document that summarises gaps</a> where the Web fails to adequately support the Osage script.</p>
<p>The editor's draft of this document is being developed in the GitHub repository <a href="https://w3c.github.io/amlreq/">Americas Language Enablement (amlreq)</a>, with contributors from the <abbr title="World Wide Web Consortium">W3C</abbr> <a href="https://www.w3.org/International/i18n-activity/i18n-ig/">Internationalization Interest Group</a>. It is published by the <a href="https://www.w3.org/International/i18n-activity/i18n-wg/">Internationalization Working Group</a>. The end target for this document is a Working Group Note.</p>
<p>To make it easier to track comments, please raise separate issues or emails for each comment, and point to the section you are commenting on using a URL.</p>
</div>
<div id="linkWarning">
<p>Some links on this page point to repositories or pages to which information will be added over time. Initially, the link may produce no results, but as issues, tests, etc. are created they will show up.</p>
<p>Links that have a gray color led to no content the last time this document was updated. They are still live, however, since relevant content could be added at any time. When the document is updated, links that now point to results will have their live colour restored.</p>
</div>
<section id="h_introduction">
<h2>Introduction</h2>
<section id="h_acknowledgements">
<h3>Contributors</h3>
<p>This document was created by Richard Ishida.</p>
<!--<p>The following people contributed information that was used in preparing this document (in alphabetic order): XXXX.</p>
-->
<p data-lang="en">See also the <a href="https://github.com/w3c/amlreq/graphs/contributors">GitHub contributors list</a> for the Americas Language Enablement project, and the <a href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge">discussions related to the Osage script</a>.</p>
</section>
<section id="h_about_this_document">
<h3>About this document</h3>
<p>This document points to resources for Osage script layout and text support on the Web and in eBooks. These resources provide information for developers of Web technologies such as CSS, HTML and digital publications, and for application developers, about how to support languages written using the Osage script. They include requirements, tests, GitHub discussions, type samples, and more,</p>
<p>The document focuses on typographic layout issues. For a deeper understanding of the Osage script and how it works see <cite>Osage Orthography Notes</cite>, which includes topics such as:
<a href="https://r12a.github.io/scripts/osge/osa.html#phonology">Phonology</a>,
<a href="https://r12a.github.io/scripts/osge/osa.html#vowels">Vowels</a>,
<a href="https://r12a.github.io/scripts/osge/osa.html#consonants">Consonants</a>, <!--
<a href="https://r12a.github.io/scripts/osge/osa.html#encoding">Encoding choices</a>,--> and
<a href="https://r12a.github.io/scripts/osge/osa.html#numbers">Numbers</a>.
</p>
</section>
<section id="h_gap_analysis">
<h3>Gap analysis</h3>
<p>This document should be used alongside a separate document, <a href="https://www.w3.org/TR/osge-osa-gap/"><cite>Osage Gap Analysis</cite></a>, which describes gaps in language support for users of the Osage script, and prioritises and describes the impact of those gaps on the user.</p>
<p>Gap reports are brought to the attention of spec and browser implementers, and are tracked via the <a href="https://github.com/orgs/w3c/projects/95" target="_blank">Gap Analysis Pipeline</a>. (<a href="https://github.com/orgs/w3c/projects/95/views/1?filterQuery=label%3A%22s%3Aosge%22" target="_blank">Filter for Osage script items</a>)</p>
</section>
<section id="h_info_requests">
<h3>Related resources</h3>
<p>The document <a href="https://www.w3.org/TR/typography/"><cite>Language enablement index</cite></a> points to this document and others, and provides a central location for developers and implementers to find information related to various scripts.</p>
<p>The <abbr title="World Wide Web Consortium">W3C</abbr> also has a repository with discussion threads related to the Osage script, including requests from developers to the user community for information about how scripts/languages work, and a notification system that tracks issues in <abbr title="World Wide Web Consortium">W3C</abbr> working groups related to the Osage script. See a list of <a target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+is%3Aopen+label%3Aquestion+label%3As%3AOsage">unresolved questions</a> for Osage experts. Each section below points to related discussions. See also the <a href="https://w3c.github.io/amlreq/home">repository home page</a>.</p>
</section>
</section>
<section id="h_script_overview">
<h2>Osage Script Overview</h2>
<p>The Osage script is an <a class="termref" href="https://w3.org/TR/i18n-glossary/#dfn-alphabet">alphabet</a>, ie. a writing system in which both consonants and vowels are indicated.</p>
<p>Osage text runs left-to-right in horizontal lines. Words are separated by spaces. The script is <a class="termref" href="https://www.w3.org/TR/i18n-glossary/#dfn-bicameral">bicameral</a>. The shapes of the upper and lowercase forms are typically the same. </p>
<p>Osage pronunciation has a good deal of allophonic variation built into most sounds in its alphabet, influenced by surrounding sounds or by dialect.</p>
<p>Osage has 21 basic consonant letters. It also has letters to represent 5 pre-aspirated sounds but the language-learning curriculum of the Osage Nation doesn't use them, with aim of simplifying the learning experience. Another 3 ejective sounds are written using <span class="codepoint" translate="no"><bdi lang="osa">ʼ</bdi> <span class="uname">U+02BC MODIFIER LETTER APOSTROPHE</span></span>.</p>
<p>This orthography is an alphabet where vowels are written using 10 vowel letters (20 in total), including some diphthongs. Nasalisation is very common and is marked using <span class="codepoint" translate="no"><bdi lang="osa">◌͘</bdi><span class="uname">U+0358 COMBINING DOT ABOVE RIGHT</span></span>.</p>
<p>Three other combining marks can be used to indicate vowel length or accent, although they are not commonly used. None of the marks combine with their base characters to form precomposed shapes.</p>
<p>Numbers use ASCII digits.</p>
</section>
<section>
<h2>All topics</h2>
<aside class="status_prompt">Links reveal all results, regardless of topic, for issues, tests, and samples. </aside>
<dl class="reslinks">
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Aquestion+is%3Aopen">Open requests for information</a></li>
<li><a target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge">All Osage issues in the amlreq repo</a></li>
<li><a target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=is%3Aissue+label%3Ascript-osge">All Osage issues in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge">W3C type samples</a></li>
<li><a target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge">r12a type samples</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-writing_mode">
<li><a target="_blank" href="https://github.com/w3c/text_direction_tests/issues?q=is%3Aissue+label%3As%3Aosge">Text direction</a> •
<a target="_blank" href="https://github.com/w3c/glyph_character_tests/issues?q=is%3Aissue+label%3As%3Aosge">Glyphs & characters</a> •
<a target="_blank" href="https://github.com/w3c/character_phrase_tests/issues?q=is%3Aissue+label%3As%3Aosge">Punctuation & inline</a> •
<a target="_blank" href="https://github.com/w3c/line_paragraph_tests/issues?q=is%3Aissue+label%3As%3Aosge">Lines & paragraphs</a></li>
</ul>
</dd><dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/">Osage</a></li>
</ul>
</dd>
</dl>
</section>
<section id="h_direction">
<h2>Text direction</h2>
<section id="writing_mode">
<h3>Writing mode</h3>
<p id="prompt-writing_mode" class="status_prompt promptStub"></p>
<p>Osage text runs left to right in horizontal lines.</p>
<!--
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<li><cite>Orthography Notes</cite>: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#direction">Osage</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+is%3Aopen+label%3Aquestion+label%3Ai%3Avertical_text">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Avertical_text">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=+is%3Aissue+label%3Ascript-osge+label%3Ai%3Avertical_text">Osage issues in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Avertical_text">W3C type samples</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.direction">r12a type samples</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-writing_mode">
<li><a class="variable empty" target="_blank" href="https://www.w3.org/International/i18n-tests/results/int-vertical-text.html#osge">Exploratory/interactive test results</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/text_direction_tests/issues?q=is%3Aissue++label%3As%3Aosge+label%3Ai%3Avertical_text">Exploratory/interactive test repo</a></li>
</ul>
</dd>
<dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#vertical_text">Vertical text</a></li>
</ul>
</dd>
<dt>Specification links</dt>
<dd class="le_index">
<ul class="linkList" id="specs-writing_mode">
</ul>
</dd>
</dl>
-->
</section>
<section id="bidi_text">
<h3>Bidirectional text</h3>
<p id="prompt-bidi_text" class="status_prompt promptStub"></p>
<p>Not applicable.</p>
<!--
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<li><cite>Orthography Notes</cite>: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#direction">Osage</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+is%3Aopen+label%3Aquestion+label%3Ai%3Abidi_text">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Abidi_text">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=+is%3Aissue+label%3Ascript-osge+label%3Ai%3Abidi_text">Osage issues in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Abidi_text">W3C type samples</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.direction">r12a type samples</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-bidi_text">
<li><a class="variable empty" target="_blank" href="https://www.w3.org/International/i18n-tests/results/int-bidi-text.html#osge">Exploratory/interactive test results</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/text_direction_tests/issues?q=is%3Aissue++label%3As%3Aosge+label%3Ai%3Abidirectional_text">Exploratory/interactive test repo</a></li>
</ul>
</dd>
<dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#bidi_text">Bidirectional text</a></li>
</ul>
</dd>
<dt>Specification links</dt>
<dd class="le_index">
<ul class="linkList" id="specs-bidi_text">
</ul>
</dd>
</dl>
-->
</section>
</section>
<section id="h_shaping">
<h2>Glyph shaping & positioning</h2>
<section id="fonts">
<h3>Fonts & font styles</h3>
<p id="prompt-fonts" class="status_prompt promptStub"></p>
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<!--<li><cite>Orthography Notes</cite>: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#writing_styles">Osage</a></li>
<li style="color:red; font-size:150%; background-color: yellow;"><a target="_blank" href="https://github.com/w3c/i18n-discuss/wiki/Generic-font-families">Generic font families</a> (XXXX)</li>
-->
<li><a target="_blank" href="https://r12a.github.io/scripts/fontlist/index.html?script=osge">List of system fonts</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Aquestion+is%3Aopen+label%3Ai%3Afonts">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Afonts">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=+label%3Ascript-osge+label%3Ai%3Afonts">Osage issues in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Afonts">W3C type samples</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.writingstyles">r12a type samples</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-fonts">
<li><a class="variable empty" target="_blank" href="https://www.w3.org/International/i18n-tests/results/int-fonts.html#osge">Exploratory/interactive test results</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/glyph_character_tests/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Afonts">Exploratory/interactive test repo</a></li>
</ul>
<!--<dt>Tools</dt>
<dd style="color:red; font-size:150%; background-color: yellow;">
<ul>
<li><a href="https://r12a.github.io/scripts/apps/conjunct_generator/index.html?preset=taml" target="_blank">Conjunct generator</a> •
<a href="https://r12a.github.io/scripts/apps/vowel_signs/index.html?preset=taml" target="_blank">Consonant-vowel generator</a></li>
</ul>
</dd>
-->
</dd><dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#fonts">Fonts & font styles</a></li>
</ul>
</dd>
<dt>Specification links</dt>
<dd class="le_index">
<ul class="linkList" id="specs-fonts">
</ul>
</dd>
</dl>
</section>
<section id="glyphs">
<h3>Context-based shaping & positioning</h3>
<p id="prompt-glyphs" class="status_prompt promptStub"></p>
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<li><cite>Orthography Notes</cite>: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#context">Osage</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Aquestion+is%3Aopen+label%3Ai%3Aglyphs">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Aglyphs">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=+label%3Ascript-osge+label%3Ai%3Aglyphs">Osage issues on this topic in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Aglyphs">W3C type samples</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.context">r12a type samples</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-glyphs">
<li>Exploratory/interactive test results (tbc)</li>
<li>Exploratory/interactive test repo (tbc)</li>
</ul>
</dd>
<dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a class="variable" target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#glyphs">Context-based shaping & positioning</a></li>
</ul>
</dd>
<dt>Specification links</dt>
<dd class="le_index">
<ul class="linkList" id="specs-glyphs">
</ul>
</dd>
</dl>
</section>
<section id="cursive">
<h3>Cursive text</h3>
<p id="prompt-cursive" class="status_prompt promptStub"></p>
<p>Not applicable.</p>
<!--
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<li><cite>Orthography Notes</cite>: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#cursive">Osage</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Aquestion+is%3Aopen+label%3Ai%3Acursive">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Acursive">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=+label%3Ascript-osge+label%3Ai%3Acursive">Osage issues on this topic in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Acursive">W3C type samples</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.cursive">r12a type samples</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-cursive">
<li><a class="variable empty" target="_blank" href="https://www.w3.org/International/i18n-tests/results/int-cursive.html#osge">Exploratory/interactive test results</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/glyph_character_tests/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Acursive">Exploratory/interactive test repo</a></li>
</ul>
</dd><dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#cursive">Cursive text</a></li>
</ul>
</dd>
<dt>Specification links</dt>
<dd class="le_index">
<ul class="linkList" id="specs-cursive">
</ul>
</dd>
</dl>
-->
</section>
<section id="letterforms">
<h3>Letterform slopes, weights, & italics</h3>
<p id="prompt-letterforms" class="status_prompt promptStub"></p>
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<li><cite>Orthography Notes</cite>: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#fontstyle">Osage</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Aquestion+is%3Aopen+label%3Ai%3Aletterforms">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Aletterforms">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=label%3Ascript-osge+label%3Ai%3Aletterforms+">Osage issues on this topic in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Aletterforms">W3C type samples</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.letterforms">r12a type samples</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-letterforms">
<li><a class="variable empty" target="_blank" href="https://www.w3.org/International/i18n-tests/results/int-letterforms.html#osge">Exploratory/interactive test results</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/glyph_character_tests/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Aletterforms">Exploratory/interactive test repo</a></li>
</ul>
</dd><dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#letterforms">Letterform slopes, weights, & italics</a></li>
</ul>
</dd>
<dt>Specification links</dt>
<dd class="le_index">
<ul class="linkList" id="specs-letterforms">
</ul>
</dd>
</dl>
</section>
<section id="transforms">
<h3>Case & other character transforms</h3>
<p id="prompt-transforms" class="status_prompt promptStub"></p>
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<li><cite>Orthography Notes</cite>: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#transforms">Osage</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Aquestion+is%3Aopen+label%3Ai%3Atransforms">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Atransforms">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=label%3Ascript-osge+label%3Ai%3Atransforms">Osage issues on this topic in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Atransforms">W3C type samples</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.transforms">r12a type samples</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-transforms">
<li><a class="variable empty" target="_blank" href="https://www.w3.org/International/i18n-tests/results/int-transforms.html#osge">Exploratory/interactive test results</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/glyph_character_tests/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Atransforms">Exploratory/interactive test repo</a></li>
</ul>
</dd><dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#transforms">Case & other character transforms</a></li>
</ul>
</dd>
<dt>Specification links</dt>
<dd class="le_index">
<ul class="linkList" id="specs-transforms">
</ul>
</dd>
</dl>
</section>
</section>
<section class="h_segmentation">
<h2>Typographic units</h2>
<section id="encoding">
<h3>Characters & encoding</h3>
<p id="prompt-encoding" class="status_prompt promptStub"></p>
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<li><cite>Orthography Notes</cite>, Vowels: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#vowels">Osage</a></li>
<li><cite>Orthography Notes</cite>, Consonants: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#consonants">Osage</a></li>
<!--<li><cite>Orthography Notes</cite>, Encoding choices: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#encoding">Osage</a></li>
-->
<li>Character usage: <a target="_blank" href="https://r12a.github.io/app-charuse/index.html?script=osage">Osage</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Aquestion+is%3Aopen+label%3Ai%3Aencoding">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Aencoding">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=label%3Ascript-osge+label%3Ai%3Aencoding">Osage issues on this topic in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Aencoding">W3C type samples</a></li>
<li><cite>r12a type samples</cite>: <a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.consonants">consonants</a> •
<a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.vowels">vowels</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-encoding">
<li>Exploratory/interactive test results (tbc)</li>
<li>Exploratory/interactive test repo (tbc)</li>
</ul>
</dd>
<dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#encoding">Characters & encoding</a></li>
</ul>
</dd>
<dt>Specification links</dt>
<dd class="le_index">
<ul class="linkList" id="specs-encoding">
</ul>
</dd>
</dl>
</section>
<section id="segmentation">
<h3>Grapheme/word segmentation & selection</h3>
<p id="prompt-segmentation" class="status_prompt promptStub"></p>
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<li><cite>Orthography Notes</cite>, Word boundaries: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#word">Osage</a></li>
<li><cite>Orthography Notes</cite>, Graphemes: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#graphemes">Osage</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Aquestion+is%3Aopen+label%3Ai%3Asegmentation">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Asegmentation">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=label%3Ascript-osge+label%3Ai%3Asegmentation">Osage issues on this topic in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Asegmentation">W3C type samples</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.word">r12a type samples</a></li>
</ul>
</dd>
<dt>Tools</dt>
<dd>
<ul>
<li><a href="https://r12a.github.io/scripts/apps/graphemes/index.html" target="_blank">Grapheme segmenter</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-segmentation">
<li><a class="variable empty" target="_blank" href="https://www.w3.org/International/i18n-tests/results/int-grapheme-word-segmentation.html#osge">Exploratory/interactive test results</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/glyph_character_tests/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Asegmentation">Exploratory/interactive test repo</a></li>
</ul>
</dd><dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#segmentation">Grapheme/word segmentation & selection</a></li>
</ul>
</dd>
<dt>Specification links</dt>
<dd class="le_index">
<ul class="linkList" id="specs-segmentation">
</ul>
</dd>
</dl>
</section>
</section>
<section id="h_inline">
<h2>Punctuation & inline features</h2>
<section id="punctuation_etc">
<h3>Phrase & section boundaries</h3>
<p id="prompt-punctuation_etc" class="status_prompt promptStub"></p>
<dl class="reslinks">
<dt>Requirements</dt>
<dd>
<ul>
<li><cite>Orthography Notes</cite>: <a target="_blank" href="https://r12a.github.io/scripts/osge/osa#phrase">Osage</a></li>
</ul>
</dd>
<dt>GitHub discussions</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Aquestion+is%3Aopen+label%3Ai%3Apunctuation_etc">Open requests for information</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/amlreq/issues?q=is%3Aissue+label%3As%3Aosge+label%3Ai%3Apunctuation_etc">All Osage issues on this topic in the amlreq repo</a></li>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/i18n-activity/issues?q=label%3Ascript-osge+label%3Ai%3Apunctuation_etc">Osage issues on this topic in W3C specs</a></li>
</ul>
</dd>
<dt>Type samples</dt>
<dd>
<ul>
<li><a class="variable empty" target="_blank" href="https://github.com/w3c/type-samples/issues?q=is%3Aissue+is%3Aopen+label%3As%3Aosge+label%3Ai%3Apunctuation_etc">W3C type samples</a></li>
<li><cite>r12a type samples</cite>: <a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.phrase">phrases</a> •
<a class="variable empty" target="_blank" href="https://github.com/r12a/typesamples/issues?q=is%3Aopen+label%3As.osge+label%3Ah.bracketing">bracketing</a></li>
</ul>
</dd>
<dt>Tests</dt>
<dd>
<ul id="tests-punctuation_etc">
<li>Exploratory/interactive test results (tbc)</li>
<li>Exploratory/interactive test repo (tbc)</li>
</ul>
</dd><dt>Gap analysis</dt>
<dd>
<ul class="linkList">
<li><a target="_blank" href="https://www.w3.org/TR/osge-osa-gap/#punctuation_etc">Phrase & section boundaries</a></li>
</ul>
</dd>
<dt>Specification links</dt>