liblouis-rb 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (517) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +520 -0
  3. data/README.md +100 -0
  4. data/Rakefile +80 -0
  5. data/ext/liblouis/braille_character.c +200 -0
  6. data/ext/liblouis/braille_table.c +198 -0
  7. data/ext/liblouis/braille_text.c +223 -0
  8. data/ext/liblouis/extconf.rb +73 -0
  9. data/ext/liblouis/liblouis.c +168 -0
  10. data/ext/liblouis/liblouis_ext.h +49 -0
  11. data/ext/liblouis/table_source.c +161 -0
  12. data/ext/liblouis/translation.c +443 -0
  13. data/liblouis-rb.gemspec +49 -0
  14. data/spec/liblouis_spec.rb +62 -0
  15. data/test/integration/packaging_test.rb +82 -0
  16. data/test/table_source_cases.rb +9 -0
  17. data/test/test_braille_character.rb +62 -0
  18. data/test/test_braille_table.rb +379 -0
  19. data/test/test_braille_text.rb +30 -0
  20. data/test/test_helper.rb +7 -0
  21. data/test/translation_cases.rb +33 -0
  22. data/vendor/liblouis/COPYING +674 -0
  23. data/vendor/liblouis/COPYING.LESSER +502 -0
  24. data/vendor/liblouis/configure.ac +290 -0
  25. data/vendor/liblouis/liblouis/commonTranslationFunctions.c +95 -0
  26. data/vendor/liblouis/liblouis/compileTranslationTable.c +5515 -0
  27. data/vendor/liblouis/liblouis/internal.h +781 -0
  28. data/vendor/liblouis/liblouis/liblouis.h.in +514 -0
  29. data/vendor/liblouis/liblouis/logging.c +233 -0
  30. data/vendor/liblouis/liblouis/lou_backTranslateString.c +1855 -0
  31. data/vendor/liblouis/liblouis/lou_translateString.c +4177 -0
  32. data/vendor/liblouis/liblouis/maketable.c +463 -0
  33. data/vendor/liblouis/liblouis/metadata.c +1258 -0
  34. data/vendor/liblouis/liblouis/pattern.c +1632 -0
  35. data/vendor/liblouis/liblouis/utils.c +448 -0
  36. data/vendor/liblouis/tables/Es-Es-G0.utb +248 -0
  37. data/vendor/liblouis/tables/IPA-unicode-range.uti +200 -0
  38. data/vendor/liblouis/tables/IPA.utb +164 -0
  39. data/vendor/liblouis/tables/Lv-Lv-g1.utb +509 -0
  40. data/vendor/liblouis/tables/Makefile.am +503 -0
  41. data/vendor/liblouis/tables/Pl-Pl-g1.utb +312 -0
  42. data/vendor/liblouis/tables/README +6 -0
  43. data/vendor/liblouis/tables/afr-za-g1.ctb +63 -0
  44. data/vendor/liblouis/tables/afr-za-g2.ctb +1050 -0
  45. data/vendor/liblouis/tables/akk-borger.utb +997 -0
  46. data/vendor/liblouis/tables/akk.utb +1002 -0
  47. data/vendor/liblouis/tables/ancient-languages-borger.utb +114 -0
  48. data/vendor/liblouis/tables/ancient-languages-us.utb +114 -0
  49. data/vendor/liblouis/tables/ar-ar-comp8.utb +293 -0
  50. data/vendor/liblouis/tables/ar-ar-g1-core.uti +291 -0
  51. data/vendor/liblouis/tables/ar-ar-g1.utb +26 -0
  52. data/vendor/liblouis/tables/ar-ar-g2.ctb +447 -0
  53. data/vendor/liblouis/tables/ar-ar-math.uti +501 -0
  54. data/vendor/liblouis/tables/ar.tbl +17 -0
  55. data/vendor/liblouis/tables/as-in-g1.utb +27 -0
  56. data/vendor/liblouis/tables/as.tbl +18 -0
  57. data/vendor/liblouis/tables/aw-in-g1.utb +27 -0
  58. data/vendor/liblouis/tables/awa.tbl +18 -0
  59. data/vendor/liblouis/tables/ba.utb +64 -0
  60. data/vendor/liblouis/tables/be-in-g1.utb +27 -0
  61. data/vendor/liblouis/tables/bel-comp.utb +42 -0
  62. data/vendor/liblouis/tables/bel-detailed.utb +32 -0
  63. data/vendor/liblouis/tables/bel.utb +61 -0
  64. data/vendor/liblouis/tables/bengali.cti +238 -0
  65. data/vendor/liblouis/tables/bg.ctb +215 -0
  66. data/vendor/liblouis/tables/bg.dis +84 -0
  67. data/vendor/liblouis/tables/bg.tbl +21 -0
  68. data/vendor/liblouis/tables/bg.utb +454 -0
  69. data/vendor/liblouis/tables/bh.ctb +24 -0
  70. data/vendor/liblouis/tables/bh.tbl +17 -0
  71. data/vendor/liblouis/tables/bn.tbl +18 -0
  72. data/vendor/liblouis/tables/bo.ctb +184 -0
  73. data/vendor/liblouis/tables/bo.tbl +21 -0
  74. data/vendor/liblouis/tables/boxes.ctb +162 -0
  75. data/vendor/liblouis/tables/br-in-g1.utb +27 -0
  76. data/vendor/liblouis/tables/bra.tbl +18 -0
  77. data/vendor/liblouis/tables/braille-patterns.cti +287 -0
  78. data/vendor/liblouis/tables/ca-chardefs.cti +225 -0
  79. data/vendor/liblouis/tables/ca-g1.ctb +46 -0
  80. data/vendor/liblouis/tables/ca.tbl +18 -0
  81. data/vendor/liblouis/tables/chr-us-g1.ctb +180 -0
  82. data/vendor/liblouis/tables/ckb-chardefs.cti +219 -0
  83. data/vendor/liblouis/tables/ckb-g1.ctb +31 -0
  84. data/vendor/liblouis/tables/ckb-translation.cti +131 -0
  85. data/vendor/liblouis/tables/ckb.tbl +18 -0
  86. data/vendor/liblouis/tables/compress.cti +44 -0
  87. data/vendor/liblouis/tables/controlchars.cti +27 -0
  88. data/vendor/liblouis/tables/cop-eg-comp8.utb +255 -0
  89. data/vendor/liblouis/tables/cop.utb +231 -0
  90. data/vendor/liblouis/tables/corrections.cti +47 -0
  91. data/vendor/liblouis/tables/countries.cti +263 -0
  92. data/vendor/liblouis/tables/critical-apparatus.uti +54 -0
  93. data/vendor/liblouis/tables/cs-chardefs.cti +385 -0
  94. data/vendor/liblouis/tables/cs-comp8.utb +405 -0
  95. data/vendor/liblouis/tables/cs-g1.ctb +37 -0
  96. data/vendor/liblouis/tables/cs-translation.cti +63 -0
  97. data/vendor/liblouis/tables/cs.tbl +20 -0
  98. data/vendor/liblouis/tables/cuneiform-transliterated-compact.utb +432 -0
  99. data/vendor/liblouis/tables/cuneiform-transliterated.utb +160 -0
  100. data/vendor/liblouis/tables/cy-cy-g1.utb +487 -0
  101. data/vendor/liblouis/tables/cy-cy-g2.ctb +199 -0
  102. data/vendor/liblouis/tables/cy.tbl +19 -0
  103. data/vendor/liblouis/tables/da-dk-6miscChars.cti +385 -0
  104. data/vendor/liblouis/tables/da-dk-6miscChars_1993.cti +412 -0
  105. data/vendor/liblouis/tables/da-dk-8miscChars.cti +90 -0
  106. data/vendor/liblouis/tables/da-dk-8miscChars_1993.cti +102 -0
  107. data/vendor/liblouis/tables/da-dk-g08.ctb +290 -0
  108. data/vendor/liblouis/tables/da-dk-g08_1993.ctb +331 -0
  109. data/vendor/liblouis/tables/da-dk-g16-lit_1993.ctb +294 -0
  110. data/vendor/liblouis/tables/da-dk-g16.ctb +289 -0
  111. data/vendor/liblouis/tables/da-dk-g16_1993.ctb +305 -0
  112. data/vendor/liblouis/tables/da-dk-g18.ctb +545 -0
  113. data/vendor/liblouis/tables/da-dk-g18_1993.ctb +563 -0
  114. data/vendor/liblouis/tables/da-dk-g2.dic +7439 -0
  115. data/vendor/liblouis/tables/da-dk-g26-lit_1993.ctb +898 -0
  116. data/vendor/liblouis/tables/da-dk-g26.ctb +1345 -0
  117. data/vendor/liblouis/tables/da-dk-g26_1993.ctb +1127 -0
  118. data/vendor/liblouis/tables/da-dk-g26l-lit_1993.ctb +588 -0
  119. data/vendor/liblouis/tables/da-dk-g26l_1993.ctb +604 -0
  120. data/vendor/liblouis/tables/da-dk-g28.ctb +2426 -0
  121. data/vendor/liblouis/tables/da-dk-g28_1993.ctb +2063 -0
  122. data/vendor/liblouis/tables/da-dk-g28l_1993.ctb +1594 -0
  123. data/vendor/liblouis/tables/da-dk-octobraille.dis +316 -0
  124. data/vendor/liblouis/tables/da-dk-octobraille_1993.dis +313 -0
  125. data/vendor/liblouis/tables/de-accents-detailed.cti +214 -0
  126. data/vendor/liblouis/tables/de-accents.cti +214 -0
  127. data/vendor/liblouis/tables/de-chardefs6.cti +289 -0
  128. data/vendor/liblouis/tables/de-chardefs8.cti +278 -0
  129. data/vendor/liblouis/tables/de-chess.ctb +37 -0
  130. data/vendor/liblouis/tables/de-comp6.utb +226 -0
  131. data/vendor/liblouis/tables/de-de-comp8.ctb +492 -0
  132. data/vendor/liblouis/tables/de-de.dis +331 -0
  133. data/vendor/liblouis/tables/de-eurobrl6.dis +101 -0
  134. data/vendor/liblouis/tables/de-eurobrl6u.dis +96 -0
  135. data/vendor/liblouis/tables/de-g0-core.uti +732 -0
  136. data/vendor/liblouis/tables/de-g0-detailed.utb +84 -0
  137. data/vendor/liblouis/tables/de-g0.utb +57 -0
  138. data/vendor/liblouis/tables/de-g1-core-patterns.dic +4863 -0
  139. data/vendor/liblouis/tables/de-g1-core.cti +67 -0
  140. data/vendor/liblouis/tables/de-g1-detailed.ctb +79 -0
  141. data/vendor/liblouis/tables/de-g1.ctb +54 -0
  142. data/vendor/liblouis/tables/de-g2-core-patterns.dic +26711 -0
  143. data/vendor/liblouis/tables/de-g2-core.cti +607 -0
  144. data/vendor/liblouis/tables/de-g2-detailed.ctb +60 -0
  145. data/vendor/liblouis/tables/de-g2.ctb +57 -0
  146. data/vendor/liblouis/tables/devanagari.cti +325 -0
  147. data/vendor/liblouis/tables/digits6Dots.uti +30 -0
  148. data/vendor/liblouis/tables/digits6DotsPlusDot6.uti +30 -0
  149. data/vendor/liblouis/tables/digits8Dots.uti +30 -0
  150. data/vendor/liblouis/tables/dra.ctb +23 -0
  151. data/vendor/liblouis/tables/dra.tbl +21 -0
  152. data/vendor/liblouis/tables/el.ctb +775 -0
  153. data/vendor/liblouis/tables/en-GB-g2.ctb +829 -0
  154. data/vendor/liblouis/tables/en-chardefs.cti +193 -0
  155. data/vendor/liblouis/tables/en-chess.ctb +37 -0
  156. data/vendor/liblouis/tables/en-g3-patterns.dic +11194 -0
  157. data/vendor/liblouis/tables/en-g3.ctb +2261 -0
  158. data/vendor/liblouis/tables/en-gb-comp8.ctb +282 -0
  159. data/vendor/liblouis/tables/en-gb-g1.utb +527 -0
  160. data/vendor/liblouis/tables/en-in-g1.ctb +162 -0
  161. data/vendor/liblouis/tables/en-nabcc.utb +166 -0
  162. data/vendor/liblouis/tables/en-nz-g1.utb +65 -0
  163. data/vendor/liblouis/tables/en-nz-g2.ctb +46 -0
  164. data/vendor/liblouis/tables/en-ueb-chardefs.uti +938 -0
  165. data/vendor/liblouis/tables/en-ueb-g1.ctb +167 -0
  166. data/vendor/liblouis/tables/en-ueb-g2.ctb +3925 -0
  167. data/vendor/liblouis/tables/en-ueb-math.ctb +71 -0
  168. data/vendor/liblouis/tables/en-us-brf.dis +102 -0
  169. data/vendor/liblouis/tables/en-us-comp6.ctb +149 -0
  170. data/vendor/liblouis/tables/en-us-comp8-ext.utb +626 -0
  171. data/vendor/liblouis/tables/en-us-comp8.ctb +62 -0
  172. data/vendor/liblouis/tables/en-us-compbrl.uti +69 -0
  173. data/vendor/liblouis/tables/en-us-emphasis.uti +45 -0
  174. data/vendor/liblouis/tables/en-us-g1.ctb +199 -0
  175. data/vendor/liblouis/tables/en-us-g2.ctb +1081 -0
  176. data/vendor/liblouis/tables/en-us-interline.ctb +1126 -0
  177. data/vendor/liblouis/tables/en-us-mathtext.ctb +880 -0
  178. data/vendor/liblouis/tables/en_CA.ctb +195 -0
  179. data/vendor/liblouis/tables/en_CA.tbl +21 -0
  180. data/vendor/liblouis/tables/en_GB.tbl +26 -0
  181. data/vendor/liblouis/tables/en_US-comp8-ext.tbl +15 -0
  182. data/vendor/liblouis/tables/en_US.tbl +26 -0
  183. data/vendor/liblouis/tables/eo-g1-x-system.ctb +85 -0
  184. data/vendor/liblouis/tables/eo-g1.ctb +165 -0
  185. data/vendor/liblouis/tables/eo.tbl +14 -0
  186. data/vendor/liblouis/tables/es-chardefs.cti +206 -0
  187. data/vendor/liblouis/tables/es-g1.ctb +36 -0
  188. data/vendor/liblouis/tables/es-g2.ctb +955 -0
  189. data/vendor/liblouis/tables/es-new.dis +284 -0
  190. data/vendor/liblouis/tables/es-no.utb +79 -0
  191. data/vendor/liblouis/tables/es-old.dis +284 -0
  192. data/vendor/liblouis/tables/es.tbl +19 -0
  193. data/vendor/liblouis/tables/et-6dot.utb +269 -0
  194. data/vendor/liblouis/tables/et-g0.utb +139 -0
  195. data/vendor/liblouis/tables/ethio-g1.ctb +335 -0
  196. data/vendor/liblouis/tables/eurodefs.cti +107 -0
  197. data/vendor/liblouis/tables/fa-ir-comp8.ctb +250 -0
  198. data/vendor/liblouis/tables/fa-ir-g1.utb +311 -0
  199. data/vendor/liblouis/tables/fi-fi-8dot.ctb +278 -0
  200. data/vendor/liblouis/tables/fi.utb +354 -0
  201. data/vendor/liblouis/tables/fil-g2.ctb +491 -0
  202. data/vendor/liblouis/tables/fr-bfu-comp6-puncs-math.uti +351 -0
  203. data/vendor/liblouis/tables/fr-bfu-comp6.utb +238 -0
  204. data/vendor/liblouis/tables/fr-bfu-comp68.cti +251 -0
  205. data/vendor/liblouis/tables/fr-bfu-comp8.utb +323 -0
  206. data/vendor/liblouis/tables/fr-bfu-g2.ctb +4644 -0
  207. data/vendor/liblouis/tables/ga-g1.utb +95 -0
  208. data/vendor/liblouis/tables/ga-g2.ctb +231 -0
  209. data/vendor/liblouis/tables/gd.ctb +123 -0
  210. data/vendor/liblouis/tables/gd.tbl +21 -0
  211. data/vendor/liblouis/tables/gez.tbl +21 -0
  212. data/vendor/liblouis/tables/gon.ctb +25 -0
  213. data/vendor/liblouis/tables/gon.tbl +17 -0
  214. data/vendor/liblouis/tables/gr-pl-comp8.uti +256 -0
  215. data/vendor/liblouis/tables/grc-international-common.uti +104 -0
  216. data/vendor/liblouis/tables/grc-international-composed.uti +268 -0
  217. data/vendor/liblouis/tables/grc-international-decomposed.uti +268 -0
  218. data/vendor/liblouis/tables/grc-international-en-composed.utb +54 -0
  219. data/vendor/liblouis/tables/grc-international-en.utb +206 -0
  220. data/vendor/liblouis/tables/grc-international-es.utb +228 -0
  221. data/vendor/liblouis/tables/gu-in-g1.utb +27 -0
  222. data/vendor/liblouis/tables/gu.tbl +18 -0
  223. data/vendor/liblouis/tables/gujarati.cti +221 -0
  224. data/vendor/liblouis/tables/gurumuki.cti +393 -0
  225. data/vendor/liblouis/tables/haw-us-g1.ctb +54 -0
  226. data/vendor/liblouis/tables/hbo-cantillated-rules.uti +71 -0
  227. data/vendor/liblouis/tables/hbo-cantillated.utb +109 -0
  228. data/vendor/liblouis/tables/hbo-common-rules.uti +152 -0
  229. data/vendor/liblouis/tables/hbo-ihbc-rules.uti +58 -0
  230. data/vendor/liblouis/tables/hbo-slim-rules.uti +68 -0
  231. data/vendor/liblouis/tables/hbo-slim.utb +100 -0
  232. data/vendor/liblouis/tables/hbo.utb +107 -0
  233. data/vendor/liblouis/tables/he-IL-comp8.utb +464 -0
  234. data/vendor/liblouis/tables/he-IL.utb +406 -0
  235. data/vendor/liblouis/tables/he-common-consonants.uti +102 -0
  236. data/vendor/liblouis/tables/he-common-vowels-ihbc.uti +161 -0
  237. data/vendor/liblouis/tables/hi-in-g1.utb +27 -0
  238. data/vendor/liblouis/tables/hi.tbl +18 -0
  239. data/vendor/liblouis/tables/hr-chardefs.cti +278 -0
  240. data/vendor/liblouis/tables/hr-comp8.tbl +21 -0
  241. data/vendor/liblouis/tables/hr-comp8.utb +239 -0
  242. data/vendor/liblouis/tables/hr-digits.uti +40 -0
  243. data/vendor/liblouis/tables/hr-g1.ctb +36 -0
  244. data/vendor/liblouis/tables/hr-g1.tbl +9 -0
  245. data/vendor/liblouis/tables/hr-translation.cti +364 -0
  246. data/vendor/liblouis/tables/ht-frenchcompatibility.uti +61 -0
  247. data/vendor/liblouis/tables/ht-g1.utb +114 -0
  248. data/vendor/liblouis/tables/hu-backtranslate-correction.dis +38 -0
  249. data/vendor/liblouis/tables/hu-backtranslate-word-corrections.cti +4293 -0
  250. data/vendor/liblouis/tables/hu-chardefs.cti +298 -0
  251. data/vendor/liblouis/tables/hu-exceptionwords.cti +3204 -0
  252. data/vendor/liblouis/tables/hu-hu-comp8.ctb +183 -0
  253. data/vendor/liblouis/tables/hu-hu-g1.ctb +129 -0
  254. data/vendor/liblouis/tables/hu-hu-g1_braille_input.cti +486 -0
  255. data/vendor/liblouis/tables/hu-hu-g2.ctb +270 -0
  256. data/vendor/liblouis/tables/hu-hu-g2_exceptions.cti +1164 -0
  257. data/vendor/liblouis/tables/hy.ctb +121 -0
  258. data/vendor/liblouis/tables/hy.tbl +21 -0
  259. data/vendor/liblouis/tables/hyph_cs_CZ.dic +3637 -0
  260. data/vendor/liblouis/tables/hyph_da_DK.dic +8896 -0
  261. data/vendor/liblouis/tables/hyph_de_DE.dic +5799 -0
  262. data/vendor/liblouis/tables/hyph_en_US.dic +5537 -0
  263. data/vendor/liblouis/tables/hyph_eo.dic +1024 -0
  264. data/vendor/liblouis/tables/hyph_es_ES.dic +877 -0
  265. data/vendor/liblouis/tables/hyph_fr_FR.dic +1067 -0
  266. data/vendor/liblouis/tables/hyph_hu_HU.dic +98519 -0
  267. data/vendor/liblouis/tables/hyph_it_IT.dic +410 -0
  268. data/vendor/liblouis/tables/hyph_nb_NO.dic +27142 -0
  269. data/vendor/liblouis/tables/hyph_nl_NL.dic +12725 -0
  270. data/vendor/liblouis/tables/hyph_nn_NO.dic +27142 -0
  271. data/vendor/liblouis/tables/hyph_pl_PL.dic +4074 -0
  272. data/vendor/liblouis/tables/hyph_pt_PT.dic +308 -0
  273. data/vendor/liblouis/tables/hyph_ru.dic +6480 -0
  274. data/vendor/liblouis/tables/hyph_sv_SE.dic +4697 -0
  275. data/vendor/liblouis/tables/is-chardefs6.cti +170 -0
  276. data/vendor/liblouis/tables/is-chardefs8.cti +293 -0
  277. data/vendor/liblouis/tables/is.ctb +157 -0
  278. data/vendor/liblouis/tables/is.tbl +18 -0
  279. data/vendor/liblouis/tables/it-it-comp6.utb +404 -0
  280. data/vendor/liblouis/tables/it-it-comp8.utb +663 -0
  281. data/vendor/liblouis/tables/iu-ca-g1.ctb +236 -0
  282. data/vendor/liblouis/tables/ja-kantenji-ucs2.utb +11448 -0
  283. data/vendor/liblouis/tables/ja-kantenji.utb +53 -0
  284. data/vendor/liblouis/tables/ja-rokutenkanji.utb +8710 -0
  285. data/vendor/liblouis/tables/ka-in-g1.utb +27 -0
  286. data/vendor/liblouis/tables/ka.utb +128 -0
  287. data/vendor/liblouis/tables/kannada.cti +282 -0
  288. data/vendor/liblouis/tables/kh-in-g1.utb +26 -0
  289. data/vendor/liblouis/tables/kha.tbl +18 -0
  290. data/vendor/liblouis/tables/kk.utb +77 -0
  291. data/vendor/liblouis/tables/km-g1.utb +412 -0
  292. data/vendor/liblouis/tables/kmr.tbl +108 -0
  293. data/vendor/liblouis/tables/kn.tbl +18 -0
  294. data/vendor/liblouis/tables/ko-2006-g1.ctb +49 -0
  295. data/vendor/liblouis/tables/ko-2006-g2.ctb +53 -0
  296. data/vendor/liblouis/tables/ko-2006.cti +190 -0
  297. data/vendor/liblouis/tables/ko-chars.cti +15140 -0
  298. data/vendor/liblouis/tables/ko-g1-rules.cti +634 -0
  299. data/vendor/liblouis/tables/ko-g1.ctb +48 -0
  300. data/vendor/liblouis/tables/ko-g2-rules.cti +9263 -0
  301. data/vendor/liblouis/tables/ko-g2.ctb +52 -0
  302. data/vendor/liblouis/tables/ko.cti +223 -0
  303. data/vendor/liblouis/tables/kok.ctb +24 -0
  304. data/vendor/liblouis/tables/kok.tbl +17 -0
  305. data/vendor/liblouis/tables/kru.ctb +24 -0
  306. data/vendor/liblouis/tables/kru.tbl +17 -0
  307. data/vendor/liblouis/tables/ks-in-g1.utb +27 -0
  308. data/vendor/liblouis/tables/latinLetterDef6Dots.uti +78 -0
  309. data/vendor/liblouis/tables/latinLetterDef8Dots.uti +75 -0
  310. data/vendor/liblouis/tables/latinLowercase.uti +389 -0
  311. data/vendor/liblouis/tables/latinUppercaseComp6.uti +78 -0
  312. data/vendor/liblouis/tables/lg-ug-g1.utb +60 -0
  313. data/vendor/liblouis/tables/litdigits6Dots.uti +30 -0
  314. data/vendor/liblouis/tables/litdigits6DotsPlusDot6.uti +30 -0
  315. data/vendor/liblouis/tables/lo-g1.utb +3127 -0
  316. data/vendor/liblouis/tables/loweredDigits6Dots.uti +30 -0
  317. data/vendor/liblouis/tables/loweredDigits8Dots.uti +30 -0
  318. data/vendor/liblouis/tables/lt-6dot.utb +308 -0
  319. data/vendor/liblouis/tables/lt-8dot.utb +281 -0
  320. data/vendor/liblouis/tables/lt.ctb +313 -0
  321. data/vendor/liblouis/tables/lv.tbl +22 -0
  322. data/vendor/liblouis/tables/maketablelist.sh +52 -0
  323. data/vendor/liblouis/tables/malayalam.cti +674 -0
  324. data/vendor/liblouis/tables/mao-nz-g1.ctb +65 -0
  325. data/vendor/liblouis/tables/marburg_single_cell_defs.cti +66 -0
  326. data/vendor/liblouis/tables/marburg_unicode_defs.cti +297 -0
  327. data/vendor/liblouis/tables/mk-g1.utb +240 -0
  328. data/vendor/liblouis/tables/ml-in-g1.utb +27 -0
  329. data/vendor/liblouis/tables/ml.tbl +21 -0
  330. data/vendor/liblouis/tables/mn-MN-common.cti +110 -0
  331. data/vendor/liblouis/tables/mn-MN-g1.utb +52 -0
  332. data/vendor/liblouis/tables/mn-MN-g2.ctb +50 -0
  333. data/vendor/liblouis/tables/mn-in-g1.utb +27 -0
  334. data/vendor/liblouis/tables/mni.tbl +18 -0
  335. data/vendor/liblouis/tables/mr-in-g1.utb +27 -0
  336. data/vendor/liblouis/tables/mr.tbl +18 -0
  337. data/vendor/liblouis/tables/ms-my-g2.ctb +4897 -0
  338. data/vendor/liblouis/tables/mt.ctb +114 -0
  339. data/vendor/liblouis/tables/mt.tbl +21 -0
  340. data/vendor/liblouis/tables/mun.ctb +24 -0
  341. data/vendor/liblouis/tables/mun.tbl +17 -0
  342. data/vendor/liblouis/tables/mwr.ctb +24 -0
  343. data/vendor/liblouis/tables/mwr.tbl +17 -0
  344. data/vendor/liblouis/tables/my-g1.utb +771 -0
  345. data/vendor/liblouis/tables/my-g2.ctb +3805 -0
  346. data/vendor/liblouis/tables/ne.ctb +22 -0
  347. data/vendor/liblouis/tables/ne.tbl +18 -0
  348. data/vendor/liblouis/tables/nemethdefs.cti +382 -0
  349. data/vendor/liblouis/tables/nl-BE.dis +532 -0
  350. data/vendor/liblouis/tables/nl-NL-g0.utb.in +646 -0
  351. data/vendor/liblouis/tables/nl-chardefs.uti.in +455 -0
  352. data/vendor/liblouis/tables/nl-comp8.utb +411 -0
  353. data/vendor/liblouis/tables/nl-print.dis +551 -0
  354. data/vendor/liblouis/tables/nl-unicode.dis +540 -0
  355. data/vendor/liblouis/tables/no-no-8dot-fallback-6dot-g0.utb +59 -0
  356. data/vendor/liblouis/tables/no-no-8dot.utb +629 -0
  357. data/vendor/liblouis/tables/no-no-braillo-047-01.dis +247 -0
  358. data/vendor/liblouis/tables/no-no-chardefs6.uti +305 -0
  359. data/vendor/liblouis/tables/no-no-comp8.ctb +323 -0
  360. data/vendor/liblouis/tables/no-no-cyrillic6dot.uti +95 -0
  361. data/vendor/liblouis/tables/no-no-g0.utb +320 -0
  362. data/vendor/liblouis/tables/no-no-g1.ctb +272 -0
  363. data/vendor/liblouis/tables/no-no-g2.ctb +737 -0
  364. data/vendor/liblouis/tables/no-no-g3.ctb +3597 -0
  365. data/vendor/liblouis/tables/no-no-generic.ctb +295 -0
  366. data/vendor/liblouis/tables/no-no-generic.dis +295 -0
  367. data/vendor/liblouis/tables/no-no-latinLetterDef6Dots_diacritics.uti +852 -0
  368. data/vendor/liblouis/tables/no-no.dis +291 -0
  369. data/vendor/liblouis/tables/np-in-g1.utb +27 -0
  370. data/vendor/liblouis/tables/nso-za-g1.utb +38 -0
  371. data/vendor/liblouis/tables/nso-za-g2.ctb +38 -0
  372. data/vendor/liblouis/tables/ny-mw.utb +70 -0
  373. data/vendor/liblouis/tables/or-in-g1.utb +27 -0
  374. data/vendor/liblouis/tables/or.tbl +18 -0
  375. data/vendor/liblouis/tables/oriya.cti +238 -0
  376. data/vendor/liblouis/tables/ovd-6g0.utb +64 -0
  377. data/vendor/liblouis/tables/ovd-8g0.utb +81 -0
  378. data/vendor/liblouis/tables/pa.tbl +18 -0
  379. data/vendor/liblouis/tables/pi.ctb +24 -0
  380. data/vendor/liblouis/tables/pi.tbl +17 -0
  381. data/vendor/liblouis/tables/pl-pl-comp8.ctb +658 -0
  382. data/vendor/liblouis/tables/pl.tbl +12 -0
  383. data/vendor/liblouis/tables/printables.cti +70 -0
  384. data/vendor/liblouis/tables/pt-comp6.utb +299 -0
  385. data/vendor/liblouis/tables/pt-pt-comp8.ctb +395 -0
  386. data/vendor/liblouis/tables/pt-pt-g1.utb +1312 -0
  387. data/vendor/liblouis/tables/pt-pt-g2.ctb +874 -0
  388. data/vendor/liblouis/tables/pt.tbl +20 -0
  389. data/vendor/liblouis/tables/pu-in-g1.utb +42 -0
  390. data/vendor/liblouis/tables/quotation-marks.uti +30 -0
  391. data/vendor/liblouis/tables/ro-g0.utb +85 -0
  392. data/vendor/liblouis/tables/ro.ctb +126 -0
  393. data/vendor/liblouis/tables/ro.tbl +21 -0
  394. data/vendor/liblouis/tables/ru-brf.dis +116 -0
  395. data/vendor/liblouis/tables/ru-comp6.utb +258 -0
  396. data/vendor/liblouis/tables/ru-comp8.utb +740 -0
  397. data/vendor/liblouis/tables/ru-letters.dis +145 -0
  398. data/vendor/liblouis/tables/ru-litbrl-detailed.utb +77 -0
  399. data/vendor/liblouis/tables/ru-litbrl.ctb +857 -0
  400. data/vendor/liblouis/tables/ru-math.uti +395 -0
  401. data/vendor/liblouis/tables/ru-ru-g1.ctb +804 -0
  402. data/vendor/liblouis/tables/ru-unicode.dis +121 -0
  403. data/vendor/liblouis/tables/rw-rw-g1.utb +133 -0
  404. data/vendor/liblouis/tables/sa-in-g1.utb +27 -0
  405. data/vendor/liblouis/tables/sa.tbl +18 -0
  406. data/vendor/liblouis/tables/sah.utb +72 -0
  407. data/vendor/liblouis/tables/sd.tbl +18 -0
  408. data/vendor/liblouis/tables/se-se.ctb +246 -0
  409. data/vendor/liblouis/tables/se-se.dis +334 -0
  410. data/vendor/liblouis/tables/si-in-g1.utb +27 -0
  411. data/vendor/liblouis/tables/sin.cti +213 -0
  412. data/vendor/liblouis/tables/sin.utb +35 -0
  413. data/vendor/liblouis/tables/sk-g1.ctb +1019 -0
  414. data/vendor/liblouis/tables/sk-sk-g1.utb +206 -0
  415. data/vendor/liblouis/tables/sk-sk.utb +112 -0
  416. data/vendor/liblouis/tables/sl-si-comp8.ctb +204 -0
  417. data/vendor/liblouis/tables/sl-si-g1.utb +471 -0
  418. data/vendor/liblouis/tables/sl.tbl +20 -0
  419. data/vendor/liblouis/tables/smi-6g0.utb +64 -0
  420. data/vendor/liblouis/tables/smi-8g0.utb +61 -0
  421. data/vendor/liblouis/tables/sot-za-g1.ctb +72 -0
  422. data/vendor/liblouis/tables/sot-za-g2.ctb +244 -0
  423. data/vendor/liblouis/tables/spaces.uti +62 -0
  424. data/vendor/liblouis/tables/sr-Cyrl.ctb +59 -0
  425. data/vendor/liblouis/tables/sr-common.cti +161 -0
  426. data/vendor/liblouis/tables/sr-cyrletters.cti +92 -0
  427. data/vendor/liblouis/tables/sr-g1.ctb +57 -0
  428. data/vendor/liblouis/tables/sr-latletters.cti +45 -0
  429. data/vendor/liblouis/tables/sv-1989.ctb +241 -0
  430. data/vendor/liblouis/tables/sv-1996.ctb +180 -0
  431. data/vendor/liblouis/tables/sv-6common.uti +1199 -0
  432. data/vendor/liblouis/tables/sv-6g0d.utb +508 -0
  433. data/vendor/liblouis/tables/sv-6g0p.utb +61 -0
  434. data/vendor/liblouis/tables/sv-6g1.uti +106 -0
  435. data/vendor/liblouis/tables/sv-6g1d.ctb +57 -0
  436. data/vendor/liblouis/tables/sv-6g2.uti +254 -0
  437. data/vendor/liblouis/tables/sv-6g2d.ctb +57 -0
  438. data/vendor/liblouis/tables/sv-8g0d.utb +495 -0
  439. data/vendor/liblouis/tables/sv-8g0n.utb +1236 -0
  440. data/vendor/liblouis/tables/sv-8g1.uti +199 -0
  441. data/vendor/liblouis/tables/sv-8g1d.ctb +73 -0
  442. data/vendor/liblouis/tables/sv-8g1n.ctb +73 -0
  443. data/vendor/liblouis/tables/sv-8g2.uti +486 -0
  444. data/vendor/liblouis/tables/sv-8g2d.ctb +73 -0
  445. data/vendor/liblouis/tables/sv-8g2n.ctb +73 -0
  446. data/vendor/liblouis/tables/sv-g0.utb +65 -0
  447. data/vendor/liblouis/tables/sv-g1.ctb +57 -0
  448. data/vendor/liblouis/tables/sv-g2.ctb +57 -0
  449. data/vendor/liblouis/tables/sv-phon.uti +241 -0
  450. data/vendor/liblouis/tables/sw-ke-g1-2.ctb +90 -0
  451. data/vendor/liblouis/tables/sw-ke-g1-3.ctb +109 -0
  452. data/vendor/liblouis/tables/sw-ke-g1-4.ctb +107 -0
  453. data/vendor/liblouis/tables/sw-ke-g1-5.ctb +73 -0
  454. data/vendor/liblouis/tables/sw-ke-g1.utb +278 -0
  455. data/vendor/liblouis/tables/sw-ke-g2.ctb +276 -0
  456. data/vendor/liblouis/tables/syc.utb +195 -0
  457. data/vendor/liblouis/tables/ta-ta-g1.ctb +167 -0
  458. data/vendor/liblouis/tables/ta.ctb +24 -0
  459. data/vendor/liblouis/tables/ta.tbl +21 -0
  460. data/vendor/liblouis/tables/tamil.cti +86 -0
  461. data/vendor/liblouis/tables/te-in-g1.utb +27 -0
  462. data/vendor/liblouis/tables/te.tbl +18 -0
  463. data/vendor/liblouis/tables/telugu.cti +239 -0
  464. data/vendor/liblouis/tables/text_nabcc.dis +426 -0
  465. data/vendor/liblouis/tables/th-comp8-backward.utb +226 -0
  466. data/vendor/liblouis/tables/th-g0.utb +177 -0
  467. data/vendor/liblouis/tables/th-g1.utb +89 -0
  468. data/vendor/liblouis/tables/th-g1.uti +315 -0
  469. data/vendor/liblouis/tables/th-g2.ctb +616 -0
  470. data/vendor/liblouis/tables/tr-g1.ctb +254 -0
  471. data/vendor/liblouis/tables/tr-g2.ctb +863 -0
  472. data/vendor/liblouis/tables/tr-g2.tbl +20 -0
  473. data/vendor/liblouis/tables/tr.ctb +324 -0
  474. data/vendor/liblouis/tables/tr.tbl +21 -0
  475. data/vendor/liblouis/tables/tsn-za-g1.ctb +33 -0
  476. data/vendor/liblouis/tables/tsn-za-g2.ctb +33 -0
  477. data/vendor/liblouis/tables/tt.utb +74 -0
  478. data/vendor/liblouis/tables/uga.utb +86 -0
  479. data/vendor/liblouis/tables/uk-comp.utb +53 -0
  480. data/vendor/liblouis/tables/uk-detailed.utb +32 -0
  481. data/vendor/liblouis/tables/uk.utb +101 -0
  482. data/vendor/liblouis/tables/ukchardefs.cti +106 -0
  483. data/vendor/liblouis/tables/ukmaths_single_cell_defs.cti +65 -0
  484. data/vendor/liblouis/tables/ukmaths_unicode_defs.cti +298 -0
  485. data/vendor/liblouis/tables/uni-text.dis +330 -0
  486. data/vendor/liblouis/tables/unicode-braille.utb +291 -0
  487. data/vendor/liblouis/tables/unicode-without-blank.dis +24 -0
  488. data/vendor/liblouis/tables/unicode.dis +278 -0
  489. data/vendor/liblouis/tables/ur-pk-g1.utb +248 -0
  490. data/vendor/liblouis/tables/ur-pk-g2.ctb +641 -0
  491. data/vendor/liblouis/tables/us-table.dis +67 -0
  492. data/vendor/liblouis/tables/uz-g1.utb +117 -0
  493. data/vendor/liblouis/tables/ve-za-g1.utb +69 -0
  494. data/vendor/liblouis/tables/ve-za-g2.ctb +208 -0
  495. data/vendor/liblouis/tables/vi-cb8.utb +49 -0
  496. data/vendor/liblouis/tables/vi-charsdef.uti +36 -0
  497. data/vendor/liblouis/tables/vi-lettersdef.uti +401 -0
  498. data/vendor/liblouis/tables/vi-puncsdef.uti +446 -0
  499. data/vendor/liblouis/tables/vi-saigon-g1.ctb +530 -0
  500. data/vendor/liblouis/tables/vi-vn-g0.utb +135 -0
  501. data/vendor/liblouis/tables/vi-vn-g1.ctb +574 -0
  502. data/vendor/liblouis/tables/vi-vn-g2.ctb +743 -0
  503. data/vendor/liblouis/tables/wiskunde-chardefs.cti +261 -0
  504. data/vendor/liblouis/tables/wordcx.dis +91 -0
  505. data/vendor/liblouis/tables/xh-za-g1.utb +61 -0
  506. data/vendor/liblouis/tables/xh-za-g2.ctb +386 -0
  507. data/vendor/liblouis/tables/yi.utb +236 -0
  508. data/vendor/liblouis/tables/zh-chn.ctb +45011 -0
  509. data/vendor/liblouis/tables/zh-hk.ctb +10461 -0
  510. data/vendor/liblouis/tables/zh-tw.ctb +53810 -0
  511. data/vendor/liblouis/tables/zh_CHN.tbl +23 -0
  512. data/vendor/liblouis/tables/zhcn-cbs.ctb +31523 -0
  513. data/vendor/liblouis/tables/zhcn-g1.ctb +26523 -0
  514. data/vendor/liblouis/tables/zhcn-g2.ctb +26519 -0
  515. data/vendor/liblouis/tables/zu-za-g1.utb +33 -0
  516. data/vendor/liblouis/tables/zu-za-g2.ctb +33 -0
  517. metadata +558 -0
@@ -0,0 +1,626 @@
1
+ # Copyright (C) 2017 by Davy Kager <mail@davykager.nl>
2
+ #
3
+ # This file is part of liblouis.
4
+ #
5
+ # liblouis is free software: you can redistribute it and/or modify it
6
+ # under the terms of the GNU Lesser General Public License as
7
+ # published by the Free Software Foundation, either version 2.1 of the
8
+ # License, or (at your option) any later version.
9
+ #
10
+ # liblouis is distributed in the hope that it will be useful, but
11
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
+ # Lesser General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU Lesser General Public
16
+ # License along with liblouis. If not, see
17
+ # <http://www.gnu.org/licenses/>.
18
+ #
19
+ # --------------------------------------------------------------------------
20
+ #
21
+ # U.S. English 8-dot computer braille for Windows
22
+ #
23
+ # Based on:
24
+ # * BRLTTY
25
+ # 1) en-nabcc.ttb
26
+ # 2) en_US.ttb
27
+ # * liblouis (en-us-comp8.ctb)
28
+ # * JAWS (US_Unicode.jtb)
29
+ # * Window-Eyes (US8.BWE)
30
+ # * SuperNova (usa.utb)
31
+ #
32
+ # Goals:
33
+ # * Complete coverage of the characters in Windows-1252.
34
+ # * Definitions for other common symbols.
35
+ # * Unambiguous backtranslation.
36
+ # * Easy to adopt by users of Windows screen readers.
37
+ #
38
+ # References:
39
+ # * North American Braille Computer Code:
40
+ # <http://brltty.com/doc/Manual-BRLTTY/English/BRLTTY-14.html>
41
+ # * Computer Braille Code, BANA, 2000:
42
+ # <http://brailleauthority.org/cbc/cbc2000.pdf>
43
+
44
+ # --------------------------------------------------------------------------
45
+ # Standard includes
46
+ # * ASCII letters (41-5A, 61-7A)
47
+ # * ASCII digits (30-39)
48
+ # * Braille patterns (2800-28FF)
49
+
50
+ include latinLetterDef8Dots.uti
51
+ include loweredDigits6Dots.uti
52
+ include braille-patterns.cti
53
+
54
+ # --------------------------------------------------------------------------
55
+ # ASCII symbols (20-7F)
56
+ # All products have the same definitions.
57
+ #
58
+ # Exceptions:
59
+ # * LOW LINE, DELETE (5F, 7F)
60
+ # JAWS, Window-Eyes and SuperNova use dots 4567 for 5F.
61
+ # BRLTTY and liblouis use dots 456 for 5F.
62
+ # Literary codes tend to also use dots 456 for 5F.
63
+ # Use the definitions from BRLTTY and liblouis for this table.
64
+
65
+ space \x0020 0 SPACE
66
+ punctuation ! 2346 EXCLAMATION MARK
67
+ punctuation " 5 QUOTATION MARK
68
+ sign \x0023 3456 NUMBER SIGN
69
+ sign $ 1246 DOLLAR SIGN
70
+ sign % 146 PERCENT SIGN
71
+ sign & 12346 AMPERSAND
72
+ punctuation ' 3 APOSTROPHE
73
+ punctuation ( 12356 LEFT PARENTHESIS
74
+ punctuation ) 23456 RIGHT PARENTHESIS
75
+ sign * 16 ASTERISK
76
+ sign + 346 PLUS SIGN
77
+ punctuation , 6 COMMA
78
+ sign - 36 HYPHEN-MINUS
79
+ punctuation . 46 FULL STOP
80
+ sign / 34 SOLIDUS
81
+ # ... DIGIT ZERO-NINE (30-39)
82
+ punctuation : 156 COLON
83
+ punctuation ; 56 SEMICOLON
84
+ sign < 126 LESS-THAN SIGN
85
+ sign = 123456 EQUALS SIGN
86
+ sign > 345 GREATER-THAN SIGN
87
+ punctuation ? 1456 QUESTION MARK
88
+ sign @ 47 COMMERCIAL AT
89
+ # ... LATIN CAPITAL LETTER A-Z (41-5A)
90
+ sign [ 2467 LEFT SQUARE BRACKET
91
+ sign \\ 12567 REVERSE SOLIDUS
92
+ sign ] 124567 RIGHT SQUARE BRACKET
93
+ sign ^ 457 CIRCUMFLEX ACCENT
94
+ sign _ 456 LOW LINE
95
+ sign ` 4 GRAVE ACCENT
96
+ # ... LATIN SMALL LETTER A-Z (61-7A)
97
+ sign { 246 LEFT CURLY BRACKET
98
+ sign | 1256 VERTICAL LINE
99
+ sign } 12456 RIGHT CURLY BRACKET
100
+ sign ~ 45 TILDE
101
+ letter \x007F 4567 DELETE
102
+
103
+ # --------------------------------------------------------------------------
104
+ # ASCII control characters (00-1F)
105
+ # BRLTTY, JAWS and Window-Eyes use letters and symbols with dots 78.
106
+ # SuperNova uses abbreviations, e.g. FF is Form Feed.
107
+ # liblouis does not have all definitions.
108
+ #
109
+ # Use the definitions from BRLTTY, JAWS and Window-Eyes for this table,
110
+ # but not for backtranslation.
111
+ # Exceptions:
112
+ # * CHARACTER TABULATION, LINE FEED (LF), CARRIAGE RETURN (CR)
113
+ # (09, 0A, 0D)
114
+ # BRLTTY, JAWS and Window-Eyes use letters with dots 78.
115
+ # liblouis uses no dots, dots 78 and no dots, respectively,
116
+ # which improves readability.
117
+ # Use the definitions from liblouis for this table.
118
+
119
+ noback letter \x0000 478 NULL
120
+ noback letter \x0001 178 START OF HEADING
121
+ noback letter \x0002 1278 START OF TEXT
122
+ noback letter \x0003 1478 END OF TEXT
123
+ noback letter \x0004 14578 END OF TRANSMISSION
124
+ noback letter \x0005 1578 ENQUIRY
125
+ noback letter \x0006 12478 ACKNOWLEDGE
126
+ noback letter \x0007 124578 BELL
127
+ noback letter \x0008 12578 BACKSPACE
128
+ noback space \x0009 0 CHARACTER TABULATION
129
+ noback space \x000A 78 LINE FEED (LF)
130
+ noback space \x000B 1378 LINE TABULATION
131
+ noback space \x000C 12378 FORM FEED (FF)
132
+ noback space \x000D 0 CARRIAGE RETURN (CR)
133
+ noback letter \x000E 134578 SHIFT OUT
134
+ noback letter \x000F 13578 SHIFT IN
135
+ noback letter \x0010 123478 DATA LINK ESCAPE
136
+ noback letter \x0011 1234578 DEVICE CONTROL ONE
137
+ noback letter \x0012 123578 DEVICE CONTROL TWO
138
+ noback letter \x0013 23478 DEVICE CONTROL THREE
139
+ noback letter \x0014 234578 DEVICE CONTROL FOUR
140
+ noback letter \x0015 13678 NEGATIVE ACKNOWLEDGE
141
+ noback letter \x0016 123678 SYNCHRONOUS IDLE
142
+ noback letter \x0017 245678 END OF TRANSMISSION BLOCK
143
+ noback letter \x0018 134678 CANCEL
144
+ noback letter \x0019 1345678 END OF MEDIUM
145
+ noback letter \x001A 135678 SUBSTITUTE
146
+ noback letter \x001B 24678 ESCAPE
147
+ noback letter \x001C 125678 INFORMATION SEPARATOR FOUR
148
+ noback letter \x001D 1245678 INFORMATION SEPARATOR THREE
149
+ noback letter \x001E 4578 INFORMATION SEPARATOR TWO
150
+ noback letter \x001F 45678 INFORMATION SEPARATOR ONE
151
+
152
+ # --------------------------------------------------------------------------
153
+ # Extended control characters (80-9F)
154
+ # BRLTTY[1] uses letters and symbols with dot 8.
155
+ # BRLTTY[2] has different definitions.
156
+ # JAWS does not have all definitions.
157
+ # liblouis, Window-Eyes and SuperNova do not have any definitions.
158
+ #
159
+ # JAWS, Window-Eyes and SuperNova use some of the BRLTTY[1] definitions
160
+ # for accented letters and symbols.
161
+ #
162
+ # Use the definitions from BRLTTY[1] for this table,
163
+ # but not for backtranslation.
164
+
165
+ noback letter \x0080 48 <control>
166
+ noback letter \x0081 18 <control>
167
+ noback letter \x0082 128 BREAK PERMITTED HERE
168
+ noback letter \x0083 148 NO BREAK HERE
169
+ noback letter \x0084 1458 <control>
170
+ noback letter \x0085 158 NEXT LINE
171
+ noback letter \x0086 1248 START OF SELECTED AREA
172
+ noback letter \x0087 12458 END OF SELECTED AREA
173
+ noback letter \x0088 1258 CHARACTER TABULATION SET
174
+ noback letter \x0089 248 CHARACTER TABULATION WITH JUSTIFICATION
175
+ noback letter \x008A 2458 LINE TABULATION SET
176
+ noback letter \x008B 138 PARTIAL LINE FORWARD
177
+ noback letter \x008C 1238 PARTIAL LINE BACKWARD
178
+ noback letter \x008D 1348 REVERSE LINE FEED
179
+ noback letter \x008E 13458 SINGLE SHIFT TWO
180
+ noback letter \x008F 1358 SINGLE SHIFT THREE
181
+ noback letter \x0090 12348 DEVICE CONTROL STRING
182
+ noback letter \x0091 123458 PRIVATE USE ONE
183
+ noback letter \x0092 12358 PRIVATE USE TWO
184
+ noback letter \x0093 2348 SET TRANSMIT STATE
185
+ noback letter \x0094 23458 CANCEL CHARACTER
186
+ noback letter \x0095 1368 MESSAGE WAITING
187
+ noback letter \x0096 12368 START OF GUARDED AREA
188
+ noback letter \x0097 24568 END OF GUARDED AREA
189
+ noback letter \x0098 13468 START OF STRING
190
+ noback letter \x0099 134568 <control>
191
+ noback letter \x009A 13568 SINGLE CHARACTER INTRODUCER
192
+ noback letter \x009B 2468 CONTROL SEQUENCE INTRODUCER
193
+ noback letter \x009C 12568 STRING TERMINATOR
194
+ noback letter \x009D 124568 OPERATING SYSTEM COMMAND
195
+ noback letter \x009E 458 PRIVACY MESSAGE
196
+ noback letter \x009F 4568 APPLICATION PROGRAM COMMAND
197
+
198
+ # --------------------------------------------------------------------------
199
+ # Symbols (A0-BF)
200
+ # JAWS and SuperNova have similar definitions.
201
+ # BRLTTY[2] has many different definitions.
202
+ # BRLTTY[1] has different definitions that are well explained.
203
+ # Window-Eyes (based on descriptions) does not have all definitions.
204
+ # liblouis does not have any definitions.
205
+ #
206
+ # JAWS and SuperNova have the same definitions, except for A0, A1.
207
+ # BRLTTY[2] has the same definitions,
208
+ # except for A4, A6-A9, AD-AF, B3-B4, B6, B8, B9, BE.
209
+ #
210
+ # A number of conventions can be extracted:
211
+ # * Inverted punctuation marks use the lowered literary form.
212
+ # * Currency symbols use dots 46 with combinations of dots 78.
213
+ # * Symbols resembling letters often use that letter,
214
+ # either lowered or with dot 8.
215
+ # * Accents use combinations of dots 456 with dot 8.
216
+ # * Ordinal indicators use mirrored dots for the letters hj with dot 8.
217
+ # * Quotation marks use dots for a more or less visual representation.
218
+ # * Superscript digits use the letters abc with dot 8.
219
+ # * Fractions use the letters uvx with dot 8.
220
+ #
221
+ # Use the definitions from JAWS and SuperNova for this table.
222
+ # Exceptions:
223
+ # * NO-BREAK SPACE (A0)
224
+ # JAWS uses no dots.
225
+ # SuperNova uses dot 7.
226
+ # Use the definition from JAWS for this table.
227
+ # * INVERTED EXCLAMATION MARK (A1)
228
+ # JAWS uses dots 235, a literary exclamation mark,
229
+ # which is also used for DIGIT SIX (36).
230
+ # SuperNova uses dots 367, a lowered literary exclamation mark,
231
+ # which is in line with INVERTED QUESTION MARK (BF).
232
+ # Use the definition from SuperNova for this table.
233
+ # * BROKEN BAR (A6)
234
+ # JAWS and SuperNova use dots 158.
235
+ # This is a good definition for EURO SIGN (20AC).
236
+ # Instead, use dots 1578.
237
+ # * NOT SIGN (AC)
238
+ # JAWS and SuperNova use dots 25678.
239
+ # This is a good definition for LATIN CAPITAL LETTER Y WITH DIAERESIS
240
+ # (0178).
241
+ # Instead, use dots 125678, the backslash with dot 8.
242
+ # This leads to an exception for LATIN CAPITAL LETTER Y WITH DIAERESIS
243
+ # (0178).
244
+
245
+ space \x00A0 0 NO-BREAK SPACE
246
+ punctuation \x00A1 367 INVERTED EXCLAMATION MARK
247
+ sign \x00A2 58 CENT SIGN
248
+ sign \x00A3 467 POUND SIGN
249
+ sign \x00A4 4678 CURRENCY SIGN
250
+ sign \x00A5 468 YEN SIGN
251
+ sign \x00A6 1578 BROKEN BAR
252
+ sign \x00A7 357 SECTION SIGN
253
+ sign \x00A8 48 DIAERESIS
254
+ sign \x00A9 123468 COPYRIGHT SIGN
255
+ sign \x00AA 1258 FEMININE ORDINAL INDICATOR
256
+ punctuation \x00AB 1235678 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
257
+ sign \x00AC 125678 NOT SIGN
258
+ sign \x00AD 368 SOFT HYPHEN
259
+ sign \x00AE 12358 REGISTERED SIGN
260
+ sign \x00AF 458 MACRON
261
+ sign \x00B0 4568 DEGREE SIGN
262
+ math \x00B1 23578 PLUS-MINUS SIGN
263
+ digit \x00B2 128 SUPERSCRIPT TWO
264
+ digit \x00B3 148 SUPERSCRIPT THREE
265
+ sign \x00B4 568 ACUTE ACCENT
266
+ sign \x00B5 1348 MICRO SIGN
267
+ sign \x00B6 1458 PILCROW SIGN
268
+ punctuation \x00B7 37 MIDDLE DOT
269
+ sign \x00B8 68 CEDILLA
270
+ digit \x00B9 18 SUPERSCRIPT ONE
271
+ sign \x00BA 2458 MASCULINE ORDINAL INDICATOR
272
+ punctuation \x00BB 2345678 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
273
+ math \x00BC 1368 VULGAR FRACTION ONE QUARTER
274
+ math \x00BD 12368 VULGAR FRACTION ONE HALF
275
+ math \x00BE 13468 VULGAR FRACTION THREE QUARTERS
276
+ punctuation \x00BF 38 INVERTED QUESTION MARK
277
+
278
+ # --------------------------------------------------------------------------
279
+ # Accented letters and symbols (C0-FF)
280
+ # BRLTTY[2], JAWS, Window-Eyes and SuperNova have similar definitions.
281
+ # BRLTTY[1] has different definitions that is well explained.
282
+ # liblouis does not have any definitions.
283
+ #
284
+ # JAWS and SuperNova have the same definitions,
285
+ # except for C1, CD, D3, D8, DA, DD, F2, FD.
286
+ # Window-Eyes (based on descriptions) has the same definitions
287
+ # for E0-FF, except for E6, F4, F6,
288
+ # has no definitions for E3, EC, F0, F5, F8, FC, FD,
289
+ # and has many missing definitions for C0-DF.
290
+ # BRLTTY[2] has the same definitions for E0-FF,
291
+ # except for E3, F0, F2, F5, F8, FD-FF,
292
+ # and has many different definitions for C0-DF.
293
+ #
294
+ # Two number of conventions can be extracted for small letters:
295
+ # 1) Letters with acute, diaeresis, grave or tilde, and eth and thorn
296
+ # use dot 8 but not dot 7.
297
+ # To transform from small to capital, lower the entire cell,
298
+ # discarding dot 8.
299
+ # 2) Letters with cedilla, circumflex, ring above or stroke, and ae
300
+ # use dots 78.
301
+ # To transform from small to capital, remove dot 8.
302
+ #
303
+ # Use the definitions from JAWS, Window-Eyes and SuperNova for this table.
304
+ # If they differ, follow the appropriate convention as described above.
305
+ # Exceptions:
306
+ # * LATIN CAPITAL LETTER A WITH TILDE, LATIN SMALL LETTER A WITH TILDE
307
+ # (C3, E3)
308
+ # JAWS and SuperNova follow convention (2) instead of (1).
309
+ # This is most likely because using dots 18 (a with dot 8 for tilde)
310
+ # and lowering the cell yields dot 2, which is DIGIT ONE (31).
311
+ # * LATIN CAPITAL LETTER Y WITH ACUTE, LATIN SMALL LETTER Y WITH ACUTE
312
+ # (DD, FD)
313
+ # JAWS uses dots 1245678 for FD. This does not follow convention (1),
314
+ # and can thus not be transformed into uppercase.
315
+ # Following convention (2) also does not work,
316
+ # because transforming yields RIGHT SQUARE BRACKET (5D).
317
+ # On the other hand, this definition somewhat resembles the y (13456).
318
+ # SuperNova uses dots 24568 for FD. This follows convention (1),
319
+ # and can be transformed into uppercase.
320
+ # Use the definitions from SuperNova for this table.
321
+
322
+ uppercase \x00C0 23678 LATIN LETTER A WITH GRAVE
323
+ uppercase \x00C1 28 LATIN LETTER A WITH ACUTE
324
+ uppercase \x00C2 167 LATIN LETTER A WITH CIRCUMFLEX
325
+ uppercase \x00C3 3467 LATIN LETTER A WITH TILDE
326
+ uppercase \x00C4 567 LATIN LETTER A WITH DIAERESIS
327
+ uppercase \x00C5 34567 LATIN LETTER A WITH RING ABOVE
328
+ uppercase \x00C6 3457 LATIN LETTER AE
329
+ uppercase \x00C7 123467 LATIN LETTER C WITH CEDILLA
330
+ uppercase \x00C8 3578 LATIN LETTER E WITH GRAVE
331
+ uppercase \x00C9 238 LATIN LETTER E WITH ACUTE
332
+ uppercase \x00CA 1267 LATIN LETTER E WITH CIRCUMFLEX
333
+ uppercase \x00CB 2358 LATIN LETTER E WITH DIAERESIS
334
+ uppercase \x00CC 57 LATIN LETTER I WITH GRAVE
335
+ uppercase \x00CD 258 LATIN LETTER I WITH ACUTE
336
+ uppercase \x00CE 1467 LATIN LETTER I WITH CIRCUMFLEX
337
+ uppercase \x00CF 23568 LATIN LETTER I WITH DIAERESIS
338
+ uppercase \x00D0 3567 LATIN LETTER ETH
339
+ uppercase \x00D1 2567 LATIN LETTER N WITH TILDE
340
+ uppercase \x00D2 578 LATIN LETTER O WITH GRAVE
341
+ uppercase \x00D3 2568 LATIN LETTER O WITH ACUTE
342
+ uppercase \x00D4 14567 LATIN LETTER O WITH CIRCUMFLEX
343
+ uppercase \x00D5 267 LATIN LETTER O WITH TILDE
344
+ uppercase \x00D6 358 LATIN LETTER O WITH DIAERESIS
345
+ math \x00D7 2348 MULTIPLICATION SIGN
346
+ uppercase \x00D8 2467 LATIN LETTER O WITH STROKE
347
+ uppercase \x00D9 35678 LATIN LETTER U WITH GRAVE
348
+ uppercase \x00DA 268 LATIN LETTER U WITH ACUTE
349
+ uppercase \x00DB 1567 LATIN LETTER U WITH CIRCUMFLEX
350
+ uppercase \x00DC 2368 LATIN LETTER U WITH DIAERESIS
351
+ uppercase \x00DD 3568 LATIN LETTER Y WITH ACUTE
352
+ uppercase \x00DE 2357 LATIN LETTER THORN
353
+ lowercase \x00DF 34568 LATIN SMALL LETTER SHARP S
354
+ lowercase \x00E0 123568 LATIN LETTER A WITH GRAVE
355
+ lowercase \x00E1 168 LATIN LETTER A WITH ACUTE
356
+ lowercase \x00E2 1678 LATIN LETTER A WITH CIRCUMFLEX
357
+ lowercase \x00E3 34678 LATIN LETTER A WITH TILDE
358
+ lowercase \x00E4 3458 LATIN LETTER A WITH DIAERESIS
359
+ lowercase \x00E5 345678 LATIN LETTER A WITH RING ABOVE
360
+ lowercase \x00E6 34578 LATIN LETTER AE
361
+ lowercase \x00E7 1234678 LATIN LETTER C WITH CEDILLA
362
+ lowercase \x00E8 23468 LATIN LETTER E WITH GRAVE
363
+ lowercase \x00E9 1268 LATIN LETTER E WITH ACUTE
364
+ lowercase \x00EA 12678 LATIN LETTER E WITH CIRCUMFLEX
365
+ lowercase \x00EB 12468 LATIN LETTER E WITH DIAERESIS
366
+ lowercase \x00EC 348 LATIN LETTER I WITH GRAVE
367
+ lowercase \x00ED 1468 LATIN LETTER I WITH ACUTE
368
+ lowercase \x00EE 14678 LATIN LETTER I WITH CIRCUMFLEX
369
+ lowercase \x00EF 124568 LATIN LETTER I WITH DIAERESIS
370
+ lowercase \x00F0 23458 LATIN LETTER ETH
371
+ lowercase \x00F1 13458 LATIN LETTER N WITH TILDE
372
+ lowercase \x00F2 3468 LATIN LETTER O WITH GRAVE
373
+ lowercase \x00F3 14568 LATIN LETTER O WITH ACUTE
374
+ lowercase \x00F4 145678 LATIN LETTER O WITH CIRCUMFLEX
375
+ lowercase \x00F5 1358 LATIN LETTER O WITH TILDE
376
+ lowercase \x00F6 2468 LATIN LETTER O WITH DIAERESIS
377
+ math \x00F7 3478 DIVISION SIGN
378
+ lowercase \x00F8 24678 LATIN LETTER O WITH STROKE
379
+ lowercase \x00F9 234568 LATIN LETTER U WITH GRAVE
380
+ lowercase \x00FA 1568 LATIN LETTER U WITH ACUTE
381
+ lowercase \x00FB 15678 LATIN LETTER U WITH CIRCUMFLEX
382
+ lowercase \x00FC 12568 LATIN LETTER U WITH DIAERESIS
383
+ lowercase \x00FD 24568 LATIN LETTER Y WITH ACUTE
384
+ lowercase \x00FE 12348 LATIN LETTER THORN
385
+ lowercase \x00FF 134568 LATIN SMALL LETTER Y WITH DIAERESIS
386
+
387
+ # --------------------------------------------------------------------------
388
+ # Windows-1252 symbols
389
+ # JAWS and Window-Eyes have similar definitions.
390
+ # SuperNova has many different definitions.
391
+ # BRLTTY and liblouis do not have any definitions.
392
+ #
393
+ # JAWS duplicates definitions from 00-FF,
394
+ # except for 0152, 0160, 0178, 0192, 2013, 2022.
395
+ # JAWS and Window-Eyes (based on codepoints) have the same definitions,
396
+ # except for 0152, 0160, 0161, 0178, 017D, 017E, 0192,
397
+ # 2013, 2014, 2018, 201C, 2022.
398
+ # SuperNova does not have definitions for 017D, 017E.
399
+ #
400
+ # A number of conventions can be extracted:
401
+ # * Symbols resembling letters use that letter,
402
+ # either lowered or with dot 8. SuperNova uses this.
403
+ # * Quotation marks use dots for a more or less visual representation.
404
+ # SuperNova uses this.
405
+ # * Pretty/Smart symbols are flattened to their plain form.
406
+ # JAWS and Window-Eyes use this.
407
+ # * Bullets use the notation from UEB. JAWS uses this.
408
+ #
409
+ # The definitions from SuperNova have a number of advantages:
410
+ # * Left-pointing and right-pointing symbols are easy to identify.
411
+ # * Symbols resembling letters are intuitive,
412
+ # because the definitions include the letter.
413
+ # * The definitions are unambiguous and thus allow backtranslation.
414
+ #
415
+ # Use the definitions from SuperNova for this table.
416
+ # Exceptions:
417
+ # * LATIN CAPITAL LIGATURE OE, LATIN SMALL LIGATURE OE (0152, 0153)
418
+ # SuperNova uses dots 13568 for 0153, the z with dot 8,
419
+ # and uses convention (1) for accented letters to transform to capital.
420
+ # Instead, use dots 234678 for 0153, the mirrored z with dots 78,
421
+ # and use convention (2) to transform to capital.
422
+ # * LATIN CAPITAL LETTER Y WITH DIAERESIS (0178)
423
+ # SuperNova uses dots 125678.
424
+ # Instead, use dots 25678, LATIN SMALL LETTER Y WITH DIAERESIS (FF)
425
+ # transformed to capital using convention (1) for accented letters.
426
+ # This leads to an exception for NOT SIGN (AC).
427
+ # * LATIN CAPITAL LETTER Z WITH CARON, LATIN SMALL LETTER Z WITH CARON
428
+ # (017D, 017E)
429
+ # SuperNova has no definitions.
430
+ # Use dots 13568 for 017E, the z with dot 8,
431
+ # and use convention (1) to transform to capital.
432
+ # * EURO SIGN (20AC)
433
+ # JAWS and Window-Eyes use dots 123467.
434
+ # SuperNova uses dots 158, the e with dot 8.
435
+ # This leads to an exception for BROKEN BAR (A6).
436
+
437
+ uppercase \x0152 23467 LATIN LIGATURE OE
438
+ lowercase \x0153 234678 LATIN LIGATURE OE
439
+ uppercase \x0160 23567 LATIN LETTER S WITH CARON
440
+ lowercase \x0161 123458 LATIN LETTER S WITH CARON
441
+ uppercase \x0178 25678 LATIN CAPITAL LETTER Y WITH DIAERESIS
442
+ uppercase \x017D 2678 LATIN LETTER Z WITH CARON
443
+ lowercase \x017E 13568 LATIN LETTER Z WITH CARON
444
+ lowercase \x0192 1248 LATIN SMALL LETTER F WITH HOOK
445
+ sign \x02C6 4578 MODIFIER LETTER CIRCUMFLEX ACCENT
446
+ sign \x02DC 478 SMALL TILDE
447
+ punctuation \x2013 3678 EN DASH
448
+ punctuation \x2014 2578 EM DASH
449
+ punctuation \x2018 378 LEFT SINGLE QUOTATION MARK
450
+ punctuation \x2019 678 RIGHT SINGLE QUOTATION MARK
451
+ punctuation \x201A 12467 SINGLE LOW-9 QUOTATION MARK
452
+ punctuation \x201C 2378 LEFT DOUBLE QUOTATION MARK
453
+ punctuation \x201D 5678 RIGHT DOUBLE QUOTATION MARK
454
+ punctuation \x201E 124678 DOUBLE LOW-9 QUOTATION MARK
455
+ sign \x2020 237 DAGGER
456
+ sign \x2021 1238 DOUBLE DAGGER
457
+ sign \x2022 235678 BULLET
458
+ sign \x2026 27 HORIZONTAL ELLIPSIS
459
+ sign \x2030 347 PER MILLE SIGN
460
+ punctuation \x2039 1234567 SINGLE LEFT-POINTING ANGLE QUOTATION MARK
461
+ punctuation \x203A 1234568 SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
462
+ sign \x20AC 158 EURO SIGN
463
+ sign \x2122 2367 TRADE MARK SIGN
464
+
465
+ # --------------------------------------------------------------------------
466
+ # Greek letters
467
+ # JAWS uses letters and symbols with dot 8.
468
+ # BRLTTY, liblouis, Window-Eyes and SuperNova have no definitions.
469
+ #
470
+ # Use the definitions from JAWS for this table,
471
+ # but not for backtranslation.
472
+
473
+ noback uppercase \x0391 178 GREEK LETTER ALPHA
474
+ noback uppercase \x0392 1278 GREEK LETTER BETA
475
+ noback uppercase \x0393 124578 GREEK LETTER GAMMA
476
+ noback uppercase \x0394 14578 GREEK LETTER DELTA
477
+ noback uppercase \x0395 1578 GREEK LETTER EPSILON
478
+ noback uppercase \x0396 135678 GREEK LETTER ZETA
479
+ noback uppercase \x0397 15678 GREEK LETTER ETA
480
+ noback uppercase \x0398 145678 GREEK LETTER THETA
481
+ noback uppercase \x0399 2478 GREEK LETTER IOTA
482
+ noback uppercase \x039A 1378 GREEK LETTER KAPPA
483
+ noback uppercase \x039B 12378 GREEK LETTER LAMDA
484
+ noback uppercase \x039C 13478 GREEK LETTER MU
485
+ noback uppercase \x039D 134578 GREEK LETTER NU
486
+ noback uppercase \x039E 134678 GREEK LETTER XI
487
+ noback uppercase \x039F 13578 GREEK LETTER OMICRON
488
+ noback uppercase \x03A0 123478 GREEK LETTER PI
489
+ noback uppercase \x03A1 123578 GREEK LETTER RHO
490
+ noback uppercase \x03A3 23478 GREEK LETTER SIGMA
491
+ noback uppercase \x03A4 234578 GREEK LETTER TAU
492
+ noback uppercase \x03A5 13678 GREEK LETTER UPSILON
493
+ noback uppercase \x03A6 12478 GREEK LETTER PHI
494
+ noback uppercase \x03A7 1234678 GREEK LETTER CHI
495
+ noback uppercase \x03A8 1345678 GREEK LETTER PSI
496
+ noback uppercase \x03A9 245678 GREEK LETTER OMEGA
497
+ noback lowercase \x03B1 18 GREEK LETTER ALPHA
498
+ noback lowercase \x03B2 128 GREEK LETTER BETA
499
+ noback lowercase \x03B3 12458 GREEK LETTER GAMMA
500
+ noback lowercase \x03B4 1458 GREEK LETTER DELTA
501
+ noback lowercase \x03B5 158 GREEK LETTER EPSILON
502
+ noback lowercase \x03B6 13568 GREEK LETTER ZETA
503
+ noback lowercase \x03B7 1568 GREEK LETTER ETA
504
+ noback lowercase \x03B8 14568 GREEK LETTER THETA
505
+ noback lowercase \x03B9 248 GREEK LETTER IOTA
506
+ noback lowercase \x03BA 138 GREEK LETTER KAPPA
507
+ noback lowercase \x03BB 1238 GREEK LETTER LAMDA
508
+ noback lowercase \x03BC 1348 GREEK LETTER MU
509
+ noback lowercase \x03BD 13458 GREEK LETTER NU
510
+ noback lowercase \x03BE 13468 GREEK LETTER XI
511
+ noback lowercase \x03BF 1358 GREEK LETTER OMICRON
512
+ noback lowercase \x03C0 12348 GREEK LETTER PI
513
+ noback lowercase \x03C1 12358 GREEK LETTER RHO
514
+ noback lowercase \x03C2 2348 GREEK SMALL LETTER FINAL SIGMA
515
+ noback lowercase \x03C3 2348 GREEK LETTER SIGMA
516
+ noback lowercase \x03C4 23458 GREEK LETTER TAU
517
+ noback lowercase \x03C5 1368 GREEK LETTER UPSILON
518
+ noback lowercase \x03C6 1248 GREEK LETTER PHI
519
+ noback lowercase \x03C7 123468 GREEK LETTER CHI
520
+ noback lowercase \x03C8 134568 GREEK LETTER PSI
521
+ noback lowercase \x03C9 24568 GREEK LETTER OMEGA
522
+
523
+ # --------------------------------------------------------------------------
524
+ # Whitespace characters
525
+ # Not based on any definitions from a screen reader.
526
+
527
+ space \x2000 0 EN QUAD
528
+ space \x2001 0 EM QUAD
529
+ space \x2002 0 EN SPACE
530
+ space \x2003 0 EM SPACE
531
+ space \x2004 0 THREE-PER-EM SPACE
532
+ space \x2005 0 FOUR-PER-EM SPACE
533
+ space \x2006 0 SIX-PER-EM SPACE
534
+ space \x2007 0 FIGURE SPACE
535
+ space \x2008 0 PUNCTUATION SPACE
536
+ space \x2009 0 THIN SPACE
537
+ space \x200A 0 HAIR SPACE
538
+ space \x2028 0 LINE SEPARATOR
539
+ space \x2029 0 PARAGRAPH SEPARATOR
540
+ space \x202F 0 NARROW NO-BREAK SPACE
541
+ space \x205F 0 MEDIUM MATHEMATICAL SPACE
542
+
543
+ # --------------------------------------------------------------------------
544
+ # Miscellaneous symbols
545
+ # Not based on any definitions from a screen reader.
546
+
547
+ noback sign \x2010 36 HYPHEN
548
+ noback sign \x2011 36 NON-BREAKING HYPHEN
549
+ noback sign \x2012 36 FIGURE DASH
550
+ noback sign \x2015 36 HORIZONTAL BAR
551
+ noback math \x2016 1256-1256 DOUBLE VERTICAL LINE
552
+ noback sign \x2027 36 HYPHENATION POINT
553
+ noback punctuation \x203C 2346-2346 DOUBLE EXCLAMATION MARK
554
+ noback math \x2044 34 FRACTION SLASH
555
+ noback punctuation \x2047 1456-1456 DOUBLE QUESTION MARK
556
+ noback punctuation \x2048 1456-2346 QUESTION EXCLAMATION MARK
557
+ noback punctuation \x2049 2346-1456 EXCLAMATION QUESTION MARK
558
+ noback sign \x204E 28 LOW ASTERISK
559
+ noback math \x2212 36 MINUS SIGN
560
+ noback math \x2215 34 DIVISION SLASH
561
+ noback math \x2217 16 ASTERISK OPERATOR
562
+ noback sign \x25CF 16 BLACK CIRCLE
563
+
564
+ # --------------------------------------------------------------------------
565
+ # Bullets
566
+ # This provides definitions for the Unicode equivalents
567
+ # of common bullet shapes from the Symbol and Wingdings fonts.
568
+ # As such, the definitions do not match the actual symbol descriptions.
569
+ # Not based on any definitions from a screen reader.
570
+
571
+ noback sign \x2043 36 HYPHEN BULLET
572
+ noback sign \x21D2 235678 RIGHTWARDS DOUBLE ARROW
573
+ noback sign \x21E8 235678 RIGHTWARDS WHITE ARROW
574
+ noback sign \x25A0 235678 BLACK SQUARE
575
+ noback sign \x25E6 235678 WHITE BULLET
576
+ noback sign \x25FE 235678 BLACK MEDIUM SMALL SQUARE
577
+ noback sign \x2663 235678 BLACK CLUB SUIT
578
+ noback sign \x2666 235678 BLACK DIAMOND SUIT
579
+ noback sign \x2756 235678 BLACK DIAMOND MINUS WHITE X
580
+ noback sign \x2714 235678 HEAVY CHECK MARK
581
+ noback sign \x27A2 235678 THREE-D TOP-LIGHTED RIGHTWARDS ARROWHEAD
582
+
583
+ # --------------------------------------------------------------------------
584
+ # Ligatures
585
+ # Not based on any definitions from a screen reader.
586
+
587
+ noback letter \xFB00 124-124 LATIN SMALL LIGATURE FF
588
+ noback letter \xFB01 124-24 LATIN SMALL LIGATURE FI
589
+ noback letter \xFB02 124-123 LATIN SMALL LIGATURE FL
590
+ noback letter \xFB03 124-124-24 LATIN SMALL LIGATURE FFI
591
+ noback letter \xFB04 124-124-123 LATIN SMALL LIGATURE FFL
592
+ noback letter \xFB06 234-2345 LATIN SMALL LIGATURE ST
593
+
594
+ # --------------------------------------------------------------------------
595
+ # Formatting characters
596
+ # Not based on any definitions from a screen reader.
597
+
598
+ replace \x200B # ZERO WIDTH SPACE
599
+ replace \x200C # ZERO WIDTH NON-JOINER
600
+ replace \x200D # ZERO WIDTH JOINER
601
+ replace \x200E # LEFT-TO-RIGHT MARK
602
+ replace \x200F # RIGHT-TO-LEFT MARK
603
+ replace \x202A # LEFT-TO-RIGHT EMBEDDING
604
+ replace \x202B # RIGHT-TO-LEFT EMBEDDING
605
+ replace \x202C # POP DIRECTIONAL FORMATTING
606
+ replace \x202D # LEFT-TO-RIGHT OVERRIDE
607
+ replace \x202E # RIGHT-TO-LEFT OVERRIDE
608
+ replace \x2060 # WORD JOINER
609
+ replace \x2061 # FUNCTION APPLICATION
610
+ replace \x2062 # INVISIBLE TIMES
611
+ replace \x2063 # INVISIBLE SEPARATOR
612
+ replace \x2064 # INVISIBLE PLUS
613
+ replace \x2066 # LEFT-TO-RIGHT ISOLATE
614
+ replace \x2067 # RIGHT-TO-LEFT ISOLATE
615
+ replace \x2068 # FIRST STRONG ISOLATE
616
+ replace \x2069 # POP DIRECTIONAL ISOLATE
617
+ replace \x206A # INHIBIT SYMMETRIC SWAPPING
618
+ replace \x206B # ACTIVATE SYMMETRIC SWAPPING
619
+ replace \x206C # INHIBIT ARABIC FORM SHAPING
620
+ replace \x206D # ACTIVATE ARABIC FORM SHAPING
621
+ replace \x206E # NATIONAL DIGIT SHAPES
622
+ replace \x206F # NOMINAL DIGIT SHAPES
623
+ replace \xFEFF # ZERO WIDTH NO-BREAK SPACE
624
+ replace \xFFF9 # INTERLINEAR ANNOTATION ANCHOR
625
+ replace \xFFFA # INTERLINEAR ANNOTATION SEPARATOR
626
+ replace \xFFFB # INTERLINEAR ANNOTATION TERMINATOR
@@ -0,0 +1,62 @@
1
+ # liblouis: U.S. English 8 dot Computer braille table
2
+ #
3
+ # Copyright (C) 2004-2008 ViewPlus Technologies, Inc. www.viewplus.com
4
+ # Copyright (C) 2004-2006 JJB Software, Inc. www.jjb-software.com
5
+ # Copyright (C) 2012 Mesar Hameed <mesar.hameed@gmail.com>
6
+ #
7
+ # This file is part of liblouis.
8
+ #
9
+ # liblouis is free software: you can redistribute it and/or modify it
10
+ # under the terms of the GNU Lesser General Public License as
11
+ # published by the Free Software Foundation, either version 2.1 of the
12
+ # License, or (at your option) any later version.
13
+ #
14
+ # liblouis is distributed in the hope that it will be useful, but
15
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ # Lesser General Public License for more details.
18
+ #
19
+ # You should have received a copy of the GNU Lesser General Public
20
+ # License along with liblouis. If not, see
21
+ # <http://www.gnu.org/licenses/>.
22
+
23
+ space \t 9 tab
24
+ space \s 0 blank
25
+ space \x00a0 a unbreakable space
26
+ sign \x000a 78 newline
27
+ space \x000d 0 carriage return
28
+ include loweredDigits6Dots.uti
29
+ include latinLetterDef8Dots.uti
30
+ punctuation , 6
31
+ punctuation ; 56
32
+ punctuation : 156
33
+ punctuation . 46
34
+ punctuation ! 2346
35
+ punctuation " 5
36
+ punctuation ' 3
37
+ punctuation ( 12356
38
+ punctuation ) 23456
39
+ punctuation - 36
40
+ sign _ 456
41
+ math < 126
42
+ math = 123456
43
+ math > 345
44
+ sign % 146
45
+ math + 346
46
+ math ~ 45
47
+ sign ` 4
48
+ sign & 12346
49
+ sign $ 1246
50
+ punctuation ? 1456
51
+ punctuation { 246
52
+ punctuation [ 2467
53
+ punctuation } 12456
54
+ punctuation ] 124567
55
+ sign ^ 457
56
+ sign @ 47
57
+ sign # 3456
58
+ sign \\ 12567
59
+ sign | 1256
60
+ math / 34
61
+ sign * 16
62
+ noback sign \x25CF 16 BLACK CIRCLE