├── .gitignore ├── LICENSE.md ├── README.md ├── harfbuzz ├── aots2hbtest.xsl ├── hb-aots-tester.cpp └── makefile ├── jars ├── jing.jar ├── jing_notice.html ├── saxon.notices │ ├── CERN.txt │ ├── JAMESCLARK.txt │ ├── LICENSE.txt │ ├── THAI.txt │ └── UNICODE.txt ├── saxon9he.jar ├── trang.jar └── trang_notice.txt ├── makefile ├── src ├── base.otf ├── cff.xml ├── images │ ├── attach.gif │ ├── ball.gif │ ├── fig1a.gif │ ├── fig1b.gif │ ├── fig1c.gif │ ├── fig1d.gif │ ├── fig1e.gif │ ├── fig1f.gif │ ├── fig1g.gif │ ├── fig1h.gif │ ├── fig1i.gif │ ├── fig2a.gif │ ├── fig2b.gif │ ├── fig2c.gif │ ├── fig2d.gif │ ├── fig3a.gif │ ├── fig3b.gif │ ├── fig3c.gif │ ├── fig3d.gif │ ├── fig3e.gif │ ├── fig3f.gif │ ├── fig3g.gif │ ├── fig4a.gif │ ├── fig4b.gif │ ├── fig4c.gif │ ├── fig4d.gif │ ├── fig4e.gif │ ├── fig4f.gif │ ├── fig5a.gif │ ├── fig5b.gif │ ├── fig5c.gif │ ├── fig5d.gif │ ├── fig6a.gif │ ├── fig6b.gif │ ├── fig6c.gif │ ├── fig7a.gif │ ├── fig7b.gif │ ├── fig7c.gif │ ├── img00283.gif │ ├── img00284.gif │ ├── img00285.gif │ ├── img00287.gif │ ├── img00288.gif │ ├── img00290.gif │ ├── img00291.gif │ ├── img00292.gif │ ├── img00293.gif │ ├── img00294.gif │ ├── img00295.gif │ ├── img00296.gif │ ├── img00297.gif │ ├── img00298.gif │ ├── img00299.gif │ ├── img00300.gif │ ├── img00302b.gif │ ├── img00304.gif │ ├── img00305.gif │ ├── img00306.gif │ ├── img00307.gif │ ├── img00308.gif │ ├── img00309.gif │ ├── img00310.gif │ ├── img00311.gif │ ├── img00312.gif │ ├── img00313.gif │ ├── neweuro.gif │ ├── nlc1.gif │ ├── nlc2.gif │ ├── notdef.gif │ ├── pcapprop.gif │ ├── unicprop.gif │ ├── w0.gif │ ├── w1.gif │ ├── w2.gif │ ├── w3.gif │ ├── w4.gif │ ├── w5.gif │ ├── w6.gif │ ├── w7.gif │ └── w8.gif ├── opentype.xml └── type2.xml └── xsl ├── aots2docbook.xsl ├── aots2testcase.xsl ├── aots2testfont.xsl ├── docbook2html.xsl └── lp.xsl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/README.md -------------------------------------------------------------------------------- /harfbuzz/aots2hbtest.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/harfbuzz/aots2hbtest.xsl -------------------------------------------------------------------------------- /harfbuzz/hb-aots-tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/harfbuzz/hb-aots-tester.cpp -------------------------------------------------------------------------------- /harfbuzz/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/harfbuzz/makefile -------------------------------------------------------------------------------- /jars/jing.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/jing.jar -------------------------------------------------------------------------------- /jars/jing_notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/jing_notice.html -------------------------------------------------------------------------------- /jars/saxon.notices/CERN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/saxon.notices/CERN.txt -------------------------------------------------------------------------------- /jars/saxon.notices/JAMESCLARK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/saxon.notices/JAMESCLARK.txt -------------------------------------------------------------------------------- /jars/saxon.notices/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/saxon.notices/LICENSE.txt -------------------------------------------------------------------------------- /jars/saxon.notices/THAI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/saxon.notices/THAI.txt -------------------------------------------------------------------------------- /jars/saxon.notices/UNICODE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/saxon.notices/UNICODE.txt -------------------------------------------------------------------------------- /jars/saxon9he.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/saxon9he.jar -------------------------------------------------------------------------------- /jars/trang.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/trang.jar -------------------------------------------------------------------------------- /jars/trang_notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/jars/trang_notice.txt -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/makefile -------------------------------------------------------------------------------- /src/base.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/base.otf -------------------------------------------------------------------------------- /src/cff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/cff.xml -------------------------------------------------------------------------------- /src/images/attach.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/attach.gif -------------------------------------------------------------------------------- /src/images/ball.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/ball.gif -------------------------------------------------------------------------------- /src/images/fig1a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig1a.gif -------------------------------------------------------------------------------- /src/images/fig1b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig1b.gif -------------------------------------------------------------------------------- /src/images/fig1c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig1c.gif -------------------------------------------------------------------------------- /src/images/fig1d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig1d.gif -------------------------------------------------------------------------------- /src/images/fig1e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig1e.gif -------------------------------------------------------------------------------- /src/images/fig1f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig1f.gif -------------------------------------------------------------------------------- /src/images/fig1g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig1g.gif -------------------------------------------------------------------------------- /src/images/fig1h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig1h.gif -------------------------------------------------------------------------------- /src/images/fig1i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig1i.gif -------------------------------------------------------------------------------- /src/images/fig2a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig2a.gif -------------------------------------------------------------------------------- /src/images/fig2b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig2b.gif -------------------------------------------------------------------------------- /src/images/fig2c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig2c.gif -------------------------------------------------------------------------------- /src/images/fig2d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig2d.gif -------------------------------------------------------------------------------- /src/images/fig3a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig3a.gif -------------------------------------------------------------------------------- /src/images/fig3b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig3b.gif -------------------------------------------------------------------------------- /src/images/fig3c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig3c.gif -------------------------------------------------------------------------------- /src/images/fig3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig3d.gif -------------------------------------------------------------------------------- /src/images/fig3e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig3e.gif -------------------------------------------------------------------------------- /src/images/fig3f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig3f.gif -------------------------------------------------------------------------------- /src/images/fig3g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig3g.gif -------------------------------------------------------------------------------- /src/images/fig4a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig4a.gif -------------------------------------------------------------------------------- /src/images/fig4b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig4b.gif -------------------------------------------------------------------------------- /src/images/fig4c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig4c.gif -------------------------------------------------------------------------------- /src/images/fig4d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig4d.gif -------------------------------------------------------------------------------- /src/images/fig4e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig4e.gif -------------------------------------------------------------------------------- /src/images/fig4f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig4f.gif -------------------------------------------------------------------------------- /src/images/fig5a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig5a.gif -------------------------------------------------------------------------------- /src/images/fig5b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig5b.gif -------------------------------------------------------------------------------- /src/images/fig5c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig5c.gif -------------------------------------------------------------------------------- /src/images/fig5d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig5d.gif -------------------------------------------------------------------------------- /src/images/fig6a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig6a.gif -------------------------------------------------------------------------------- /src/images/fig6b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig6b.gif -------------------------------------------------------------------------------- /src/images/fig6c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig6c.gif -------------------------------------------------------------------------------- /src/images/fig7a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig7a.gif -------------------------------------------------------------------------------- /src/images/fig7b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig7b.gif -------------------------------------------------------------------------------- /src/images/fig7c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/fig7c.gif -------------------------------------------------------------------------------- /src/images/img00283.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00283.gif -------------------------------------------------------------------------------- /src/images/img00284.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00284.gif -------------------------------------------------------------------------------- /src/images/img00285.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00285.gif -------------------------------------------------------------------------------- /src/images/img00287.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00287.gif -------------------------------------------------------------------------------- /src/images/img00288.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00288.gif -------------------------------------------------------------------------------- /src/images/img00290.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00290.gif -------------------------------------------------------------------------------- /src/images/img00291.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00291.gif -------------------------------------------------------------------------------- /src/images/img00292.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00292.gif -------------------------------------------------------------------------------- /src/images/img00293.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00293.gif -------------------------------------------------------------------------------- /src/images/img00294.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00294.gif -------------------------------------------------------------------------------- /src/images/img00295.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00295.gif -------------------------------------------------------------------------------- /src/images/img00296.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00296.gif -------------------------------------------------------------------------------- /src/images/img00297.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00297.gif -------------------------------------------------------------------------------- /src/images/img00298.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00298.gif -------------------------------------------------------------------------------- /src/images/img00299.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00299.gif -------------------------------------------------------------------------------- /src/images/img00300.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00300.gif -------------------------------------------------------------------------------- /src/images/img00302b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00302b.gif -------------------------------------------------------------------------------- /src/images/img00304.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00304.gif -------------------------------------------------------------------------------- /src/images/img00305.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00305.gif -------------------------------------------------------------------------------- /src/images/img00306.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00306.gif -------------------------------------------------------------------------------- /src/images/img00307.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00307.gif -------------------------------------------------------------------------------- /src/images/img00308.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00308.gif -------------------------------------------------------------------------------- /src/images/img00309.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00309.gif -------------------------------------------------------------------------------- /src/images/img00310.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00310.gif -------------------------------------------------------------------------------- /src/images/img00311.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00311.gif -------------------------------------------------------------------------------- /src/images/img00312.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00312.gif -------------------------------------------------------------------------------- /src/images/img00313.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/img00313.gif -------------------------------------------------------------------------------- /src/images/neweuro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/neweuro.gif -------------------------------------------------------------------------------- /src/images/nlc1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/nlc1.gif -------------------------------------------------------------------------------- /src/images/nlc2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/nlc2.gif -------------------------------------------------------------------------------- /src/images/notdef.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/notdef.gif -------------------------------------------------------------------------------- /src/images/pcapprop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/pcapprop.gif -------------------------------------------------------------------------------- /src/images/unicprop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/unicprop.gif -------------------------------------------------------------------------------- /src/images/w0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/w0.gif -------------------------------------------------------------------------------- /src/images/w1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/w1.gif -------------------------------------------------------------------------------- /src/images/w2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/w2.gif -------------------------------------------------------------------------------- /src/images/w3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/w3.gif -------------------------------------------------------------------------------- /src/images/w4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/w4.gif -------------------------------------------------------------------------------- /src/images/w5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/w5.gif -------------------------------------------------------------------------------- /src/images/w6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/w6.gif -------------------------------------------------------------------------------- /src/images/w7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/w7.gif -------------------------------------------------------------------------------- /src/images/w8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/images/w8.gif -------------------------------------------------------------------------------- /src/opentype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/opentype.xml -------------------------------------------------------------------------------- /src/type2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/src/type2.xml -------------------------------------------------------------------------------- /xsl/aots2docbook.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/xsl/aots2docbook.xsl -------------------------------------------------------------------------------- /xsl/aots2testcase.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/xsl/aots2testcase.xsl -------------------------------------------------------------------------------- /xsl/aots2testfont.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/xsl/aots2testfont.xsl -------------------------------------------------------------------------------- /xsl/docbook2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/xsl/docbook2html.xsl -------------------------------------------------------------------------------- /xsl/lp.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/aots/HEAD/xsl/lp.xsl --------------------------------------------------------------------------------