├── .gitignore ├── LICENSE.md ├── README.md ├── goadbWriter.py ├── kernFeatureWriter.py ├── markFeatureWriter.py ├── setup.py ├── tests ├── goadb_full ├── goadb_full.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── 2cents.glif │ │ ├── 666.glif │ │ ├── 667.glif │ │ ├── 668.glif │ │ ├── 669.glif │ │ ├── A_.glif │ │ ├── A__B_.glif │ │ ├── B_.glif │ │ ├── C_.glif │ │ ├── Z_-glibber.glif │ │ ├── Z_acute.glif │ │ ├── Z_glibber.01.glif │ │ ├── Z_glibber.02.glif │ │ ├── Z_glibber.alt.glif │ │ ├── Z_glibber.glif │ │ ├── _illegal.glif │ │ ├── _notdef.glif │ │ ├── asd.glif │ │ ├── asdasd.glif │ │ ├── beyondF_F_F_F_.glif │ │ ├── contents.plist │ │ ├── eiurwoue.glif │ │ ├── f_f_i.glif │ │ ├── f_f_idieresistonos.glif │ │ ├── idieresistonos.alt.glif │ │ ├── idieresistonos.alt_idieresistonos.glif │ │ ├── idieresistonos.glif │ │ ├── layerinfo.plist │ │ ├── multitude.glif │ │ ├── u10000.glif │ │ ├── uni6666.glif │ │ ├── uni6667.glif │ │ ├── uni6669.glif │ │ ├── uniF_F_F_F_.glif │ │ ├── wät.glif │ │ ├── zero.glif │ │ ├── zero.sups.glif │ │ └── 🥳.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── goadb_no_glyphorder ├── goadb_no_glyphorder.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── B_.glif │ │ ├── C_.glif │ │ ├── D_.glif │ │ ├── E_.glif │ │ ├── F_.glif │ │ ├── G_.glif │ │ ├── H_.alt.glif │ │ ├── H_.glif │ │ ├── I_.alt.glif │ │ ├── I_.alt1.glif │ │ ├── I_.glif │ │ ├── J_.glif │ │ ├── K_.alt.glif │ │ ├── K_.alt1.glif │ │ ├── K_.glif │ │ ├── L_.glif │ │ ├── M_.glif │ │ ├── N_.glif │ │ ├── O_.glif │ │ ├── P_.alt.glif │ │ ├── P_.alt1.glif │ │ ├── P_.glif │ │ ├── Q_.alt.glif │ │ ├── Q_.glif │ │ ├── R_.glif │ │ ├── S_.glif │ │ ├── T_.glif │ │ ├── U_.glif │ │ ├── V_.glif │ │ ├── W_.glif │ │ ├── X_.glif │ │ ├── Y_.alt.glif │ │ ├── Y_.glif │ │ ├── Z_.glif │ │ ├── a.glif │ │ ├── ampersand.glif │ │ ├── any.glif │ │ ├── asciicircum.alt.glif │ │ ├── asciicircum.glif │ │ ├── asciitilde.alt.glif │ │ ├── asciitilde.glif │ │ ├── asterisk.alt.glif │ │ ├── asterisk.glif │ │ ├── at.glif │ │ ├── b.glif │ │ ├── backslash.glif │ │ ├── bar.glif │ │ ├── bold.glif │ │ ├── braceleft.glif │ │ ├── braceright.glif │ │ ├── bracketleft.glif │ │ ├── bracketright.glif │ │ ├── c.glif │ │ ├── clever.glif │ │ ├── colon.alt.glif │ │ ├── colon.alt1.glif │ │ ├── colon.glif │ │ ├── comma.alt.glif │ │ ├── comma.glif │ │ ├── contents.plist │ │ ├── d.glif │ │ ├── daring.glif │ │ ├── dollar.alt.glif │ │ ├── dollar.alt1.glif │ │ ├── dollar.glif │ │ ├── e.glif │ │ ├── eight.alt.glif │ │ ├── eight.glif │ │ ├── equal.glif │ │ ├── exclam.glif │ │ ├── explorer.glif │ │ ├── f.glif │ │ ├── faces.glif │ │ ├── five.alt.glif │ │ ├── five.glif │ │ ├── four.glif │ │ ├── g.glif │ │ ├── grave.alt.glif │ │ ├── grave.glif │ │ ├── great.glif │ │ ├── greater.glif │ │ ├── h.glif │ │ ├── hurdles.glif │ │ ├── hyphen.glif │ │ ├── i.alt.glif │ │ ├── i.alt1.glif │ │ ├── i.glif │ │ ├── j.alt.glif │ │ ├── j.glif │ │ ├── k.glif │ │ ├── l.glif │ │ ├── layerinfo.plist │ │ ├── less.glif │ │ ├── m.glif │ │ ├── n.glif │ │ ├── nine.glif │ │ ├── numbersign.glif │ │ ├── o.alt.glif │ │ ├── o.alt1.glif │ │ ├── o.glif │ │ ├── one.alt.glif │ │ ├── one.alt1.glif │ │ ├── one.glif │ │ ├── p.glif │ │ ├── parenleft.glif │ │ ├── parenright.glif │ │ ├── percent.glif │ │ ├── period.alt.glif │ │ ├── period.alt1.glif │ │ ├── period.glif │ │ ├── plus.glif │ │ ├── q.glif │ │ ├── question.alt.glif │ │ ├── question.alt1.glif │ │ ├── question.glif │ │ ├── quotedbl.glif │ │ ├── quotesingle.glif │ │ ├── r.alt.glif │ │ ├── r.glif │ │ ├── s.alt.glif │ │ ├── s.glif │ │ ├── semicolon.alt.glif │ │ ├── semicolon.glif │ │ ├── seven.glif │ │ ├── six.alt.glif │ │ ├── six.alt1.glif │ │ ├── six.glif │ │ ├── slash.glif │ │ ├── space.glif │ │ ├── t.glif │ │ ├── three.alt.glif │ │ ├── three.alt1.glif │ │ ├── three.glif │ │ ├── two.alt.glif │ │ ├── two.glif │ │ ├── u.alt.glif │ │ ├── u.glif │ │ ├── underscore.glif │ │ ├── v.glif │ │ ├── w.alt.glif │ │ ├── w.alt1.glif │ │ ├── w.glif │ │ ├── x.alt.glif │ │ ├── x.glif │ │ ├── y.glif │ │ ├── z.glif │ │ └── zero.glif │ ├── layercontents.plist │ └── metainfo.plist ├── goadb_template_glyphs ├── goadb_template_glyphs.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ └── layerinfo.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_AV.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── V_.glif │ │ └── contents.plist │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_AV_dissolved.fea ├── kern_AV_singletons.fea ├── kern_all_zero_value.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── B_.glif │ │ ├── C_.glif │ │ ├── _notdef.glif │ │ ├── contents.plist │ │ ├── layerinfo.plist │ │ └── space.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_example.fea ├── kern_example.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── A_dieresis.glif │ │ ├── L_.glif │ │ ├── L_caron.glif │ │ ├── O_.glif │ │ ├── O_dieresis.glif │ │ ├── V_.glif │ │ ├── Y_.glif │ │ ├── Y_dieresis.glif │ │ ├── contents.plist │ │ ├── i.glif │ │ ├── igrave.glif │ │ ├── layerinfo.plist │ │ ├── quotedbl.glif │ │ ├── quotesingle.glif │ │ ├── v.glif │ │ └── w.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_example_rtl.fea ├── kern_example_rtl.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── F_.glif │ │ ├── arA_e.glif │ │ ├── arA_lef.glif │ │ ├── arA_lefM_adda.glif │ │ ├── arB_eh.i.glif │ │ ├── arC_olon.glif │ │ ├── arE_.i.glif │ │ ├── arH_eh.glif │ │ ├── arH_ehG_oalH_amza.glif │ │ ├── arH_ehY_eh.glif │ │ ├── arJ_eh.glif │ │ ├── arP_eh.i.glif │ │ ├── arR_eh.glif │ │ ├── arR_reh.glif │ │ ├── arT_ehM_arbuta.glif │ │ ├── arY_eh.i.glif │ │ ├── arY_ehB_arree.f.glif │ │ ├── arY_ehB_arree.fa.glif │ │ ├── arY_ehB_arreeH_amza.f.glif │ │ ├── arY_ehB_arreeH_amza.fa.glif │ │ ├── arZ_ain.glif │ │ ├── contents.plist │ │ ├── dotlessi.glif │ │ ├── i.glif │ │ ├── iacute.glif │ │ ├── icircumflex.glif │ │ ├── idieresis.glif │ │ ├── igrave.glif │ │ └── imacron.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_example_rtl_subs.fea ├── kern_example_subs.fea ├── kern_example_trim.fea ├── kern_example_ufo2.fea ├── kern_example_ufo2.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── A_dieresis.glif │ │ ├── L_.glif │ │ ├── L_caron.glif │ │ ├── O_.glif │ │ ├── O_dieresis.glif │ │ ├── V_.glif │ │ ├── Y_.glif │ │ ├── Y_dieresis.glif │ │ ├── contents.plist │ │ ├── i.glif │ │ ├── igrave.glif │ │ ├── quotedbl.glif │ │ ├── quotesingle.glif │ │ ├── v.glif │ │ └── w.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_ignored_groups.fea ├── kern_ignored_groups.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── B_.glif │ │ ├── C_.glif │ │ ├── D_.glif │ │ ├── _notdef.glif │ │ ├── contents.plist │ │ ├── layerinfo.plist │ │ └── space.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_left_side_exception.fea ├── kern_left_side_exception.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── A_acute.glif │ │ ├── A_breve.glif │ │ ├── A_circumflex.glif │ │ ├── A_dieresis.glif │ │ ├── A_grave.glif │ │ ├── A_macron.glif │ │ ├── A_ogonek.glif │ │ ├── A_ring.glif │ │ ├── A_tilde.glif │ │ ├── O_.glif │ │ ├── O_acute.glif │ │ ├── O_circumflex.glif │ │ ├── O_dieresis.glif │ │ ├── O_grave.glif │ │ ├── O_hungarumlaut.glif │ │ ├── O_macron.glif │ │ ├── O_slash.glif │ │ ├── O_tilde.glif │ │ ├── _notdef.glif │ │ ├── contents.plist │ │ ├── layerinfo.plist │ │ ├── parenleft.glif │ │ ├── parenright.glif │ │ ├── question.glif │ │ └── space.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_mock_rtl.fea ├── kern_mock_rtl.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── L_.glif │ │ ├── L_acute.glif │ │ ├── L_caron.glif │ │ ├── L_commaaccent.glif │ │ ├── L_dot.glif │ │ ├── L_dotbelow.glif │ │ ├── L_dotbelowmacron.glif │ │ ├── L_linebelow.glif │ │ ├── L_slash.glif │ │ ├── V_.glif │ │ ├── a.glif │ │ ├── aacute.glif │ │ ├── acircumflex.glif │ │ ├── adieresis.glif │ │ ├── agrave.glif │ │ ├── amacron.glif │ │ ├── atilde.glif │ │ ├── backslash.glif │ │ ├── contents.plist │ │ ├── dotlessi.glif │ │ ├── i.glif │ │ ├── iacute.glif │ │ ├── icircumflex.glif │ │ ├── idieresis.glif │ │ ├── igrave.glif │ │ ├── iota.glif │ │ ├── iotadieresistonos.glif │ │ ├── lambda.glif │ │ ├── layerinfo.plist │ │ ├── t.glif │ │ ├── tcaron.glif │ │ ├── tcedilla.glif │ │ └── tcommaaccent.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_nightmare.fea ├── kern_nightmare.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── B_.glif │ │ ├── C_.glif │ │ ├── D_.glif │ │ ├── E_.glif │ │ ├── F_.glif │ │ ├── G_.glif │ │ ├── H_.glif │ │ ├── I_.glif │ │ ├── J_.glif │ │ ├── K_.glif │ │ ├── L_.glif │ │ ├── M_.glif │ │ ├── N_.glif │ │ ├── O_.glif │ │ ├── P_.glif │ │ ├── Q_.glif │ │ ├── R_.glif │ │ ├── S_.glif │ │ ├── T_.glif │ │ ├── U_.glif │ │ ├── V_.glif │ │ ├── W_.glif │ │ ├── X_.glif │ │ ├── Y_.glif │ │ ├── Z_.glif │ │ ├── contents.plist │ │ └── layerinfo.plist │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_no_groups.fea ├── kern_no_groups.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── B_.glif │ │ ├── C_.glif │ │ ├── _notdef.glif │ │ ├── contents.plist │ │ ├── layerinfo.plist │ │ └── space.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_ss4_exceptions.fea ├── kern_ss4_exceptions.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── L_.glif │ │ ├── L_acute.glif │ │ ├── L_caron.glif │ │ ├── L_commaaccent.glif │ │ ├── L_dot.glif │ │ ├── L_dotbelow.glif │ │ ├── L_dotbelowmacron.glif │ │ ├── L_linebelow.glif │ │ ├── L_slash.glif │ │ ├── V_.glif │ │ ├── a.glif │ │ ├── aacute.glif │ │ ├── acircumflex.glif │ │ ├── adieresis.glif │ │ ├── agrave.glif │ │ ├── amacron.glif │ │ ├── atilde.glif │ │ ├── backslash.glif │ │ ├── contents.plist │ │ ├── dotlessi.glif │ │ ├── i.glif │ │ ├── iacute.glif │ │ ├── icircumflex.glif │ │ ├── idieresis.glif │ │ ├── igrave.glif │ │ ├── iota.glif │ │ ├── iotadieresistonos.glif │ │ ├── lambda.glif │ │ ├── layerinfo.plist │ │ ├── t.glif │ │ ├── tcaron.glif │ │ ├── tcedilla.glif │ │ └── tcommaaccent.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_suffix.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── A_dieresis.glif │ │ ├── L_.glif │ │ ├── L_caron.glif │ │ ├── O_.glif │ │ ├── O_dieresis.glif │ │ ├── V_.cxt.glif │ │ ├── Y_.glif │ │ ├── Y_dieresis.glif │ │ ├── contents.plist │ │ ├── i.glif │ │ ├── igrave.glif │ │ ├── layerinfo.plist │ │ ├── quotedbl.glif │ │ ├── quotesingle.glif │ │ ├── v.glif │ │ └── w.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── kern_suffix_ignored.fea ├── kern_suffix_present.fea ├── kern_unused_groups.fea ├── kern_unused_groups.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_.glif │ │ ├── B_.glif │ │ ├── C_.glif │ │ ├── _notdef.glif │ │ ├── contents.plist │ │ ├── layerinfo.plist │ │ └── space.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── mark_deva_simple.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── _notdef.glif │ │ ├── a.glif │ │ ├── acutecmb.glif │ │ ├── contents.plist │ │ ├── dvA_nusvara.glif │ │ ├── dvC_andrabindu.glif │ │ ├── dvK_a.glif │ │ ├── dvK_ha.glif │ │ ├── dvN_ukta.glif │ │ ├── dvQ_a.glif │ │ ├── dvR_eph.glif │ │ ├── dvV_irama.glif │ │ └── space.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── mark_deva_simple_abvm.fea ├── mark_deva_simple_blwm.fea ├── mark_deva_simple_mark.fea ├── mark_no_group.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── _notdef.glif │ │ ├── acutecmb.glif │ │ ├── cedillacmb.glif │ │ ├── circumflexcmb.glif │ │ ├── commabelowcmb.glif │ │ ├── contents.plist │ │ ├── dotbelowcmb.glif │ │ ├── gravecmb.glif │ │ ├── layerinfo.plist │ │ ├── o.glif │ │ └── space.glif │ ├── groups.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── mark_rtl_liga.fea ├── mark_rtl_liga.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── arF_atha.glif │ │ ├── arF_athatan.glif │ │ ├── arK_afA_lefM_aksura.glif │ │ ├── arK_asra.glif │ │ ├── arK_asratan.glif │ │ ├── contents.plist │ │ └── layerinfo.plist │ ├── groups.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── mark_simple.fea ├── mark_simple.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── _notdef.glif │ │ ├── a.glif │ │ ├── acutecmb.glif │ │ ├── cedillacmb.glif │ │ ├── circumflexcmb.glif │ │ ├── commabelowcmb.glif │ │ ├── contents.plist │ │ ├── dotbelowcmb.glif │ │ ├── gravecmb.glif │ │ ├── o.glif │ │ ├── oslash.glif │ │ └── space.glif │ ├── groups.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── mark_simple_classes.fea ├── mark_simple_noclasses.fea ├── mark_trim.fea ├── mark_trim.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── O_.glif │ │ ├── _notdef.glif │ │ ├── acutecmb.cap.glif │ │ ├── acutecmb.glif │ │ ├── brevecmb.cap.glif │ │ ├── brevecmb.glif │ │ ├── caroncmb.cap.glif │ │ ├── caroncmb.glif │ │ ├── cedillacmb.glif │ │ ├── circumflexcmb.cap.glif │ │ ├── circumflexcmb.glif │ │ ├── commabelowcmb.glif │ │ ├── contents.plist │ │ ├── dieresiscmb.cap.glif │ │ ├── dieresiscmb.glif │ │ ├── dotaccentcmb.cap.glif │ │ ├── dotaccentcmb.glif │ │ ├── gravecmb.cap.glif │ │ ├── gravecmb.glif │ │ ├── hungarumlautcmb.cap.glif │ │ ├── hungarumlautcmb.glif │ │ ├── layerinfo.plist │ │ ├── macroncmb.cap.glif │ │ ├── macroncmb.glif │ │ ├── o.glif │ │ ├── ringcmb.cap.glif │ │ ├── ringcmb.glif │ │ ├── space.glif │ │ ├── tildecmb.cap.glif │ │ └── tildecmb.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── mkmk_simple.fea ├── project_mark_liga_ltr │ ├── GSUB.fea │ ├── GlyphOrderAndAliasDB │ ├── LigaLTR-Light.otf │ ├── README.md │ ├── collateral │ │ └── make_ligatures_ltr.py │ ├── features.fea │ ├── kern.fea │ ├── liga_ltr.ufo │ │ ├── fontinfo.plist │ │ ├── glyphs │ │ │ ├── _notdef.glif │ │ │ ├── a.glif │ │ │ ├── acutecmb.cap.glif │ │ │ ├── acutecmb.glif │ │ │ ├── b.glif │ │ │ ├── c.glif │ │ │ ├── contents.plist │ │ │ ├── d.glif │ │ │ ├── dotaccentcmb.cap.glif │ │ │ ├── dotaccentcmb.glif │ │ │ ├── dotbelowcmb.glif │ │ │ ├── dotlessi.glif │ │ │ ├── dotlessi.liga.glif │ │ │ ├── e.glif │ │ │ ├── f.glif │ │ │ ├── f.liga.glif │ │ │ ├── f_i.glif │ │ │ ├── f_i_i.glif │ │ │ ├── f_i_i_i.glif │ │ │ ├── f_i_i_i_i.glif │ │ │ ├── f_i_i_i_i_i.glif │ │ │ ├── f_i_i_i_i_i_i.glif │ │ │ ├── f_i_i_i_i_i_i_i.glif │ │ │ ├── f_i_i_i_i_i_i_i_i.glif │ │ │ ├── g.glif │ │ │ ├── h.glif │ │ │ ├── i.glif │ │ │ ├── j.glif │ │ │ ├── k.glif │ │ │ ├── l.glif │ │ │ ├── layerinfo.plist │ │ │ ├── m.glif │ │ │ ├── n.glif │ │ │ ├── o.glif │ │ │ ├── p.glif │ │ │ ├── q.glif │ │ │ ├── r.glif │ │ │ ├── s.glif │ │ │ ├── space.glif │ │ │ ├── t.glif │ │ │ ├── u.glif │ │ │ ├── v.glif │ │ │ ├── w.glif │ │ │ ├── x.glif │ │ │ ├── y.glif │ │ │ └── z.glif │ │ ├── groups.plist │ │ ├── kerning.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ └── mark.fea ├── project_mark_liga_rtl │ ├── GSUB.fea │ ├── LigaRTL-Light.otf │ ├── README.md │ ├── features.fea │ ├── kern.fea │ ├── liga_rtl.ufo │ │ ├── data │ │ │ └── com.adobe.type.processedHashMap │ │ ├── fontinfo.plist │ │ ├── glyphs │ │ │ ├── _notdef.glif │ │ │ ├── arF_atha.glif │ │ │ ├── arF_athatan.glif │ │ │ ├── arH_eh.f.glif │ │ │ ├── arH_eh.glif │ │ │ ├── arH_eh.i.glif │ │ │ ├── arH_eh.m.glif │ │ │ ├── arH_eh.mc.glif │ │ │ ├── arH_eh.s.glif │ │ │ ├── arH_ehY_ehB_arree.f.glif │ │ │ ├── arH_ehY_ehB_arree.glif │ │ │ ├── arK_asra.glif │ │ │ ├── arK_asratan.glif │ │ │ ├── arY_ehB_arree.f.glif │ │ │ ├── arY_ehB_arree.glif │ │ │ ├── contents.plist │ │ │ ├── layerinfo.plist │ │ │ └── space.glif │ │ ├── groups.plist │ │ ├── kerning.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── mark.fea │ ├── markclasses.fea │ └── mkmk.fea ├── test_goadbWriter.py ├── test_kernFeatureWriter.py ├── test_markFeatureWriter.py ├── tmp_example_trim.fea └── tmp_kern_example_ufo2.fea ├── utilities ├── README.md └── flKernExport.py └── vintage ├── AdobeFontLabUtils.py ├── BezChar.py ├── WriteFeaturesKernFDK.py └── WriteFeaturesMarkFDK.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/README.md -------------------------------------------------------------------------------- /goadbWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/goadbWriter.py -------------------------------------------------------------------------------- /kernFeatureWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/kernFeatureWriter.py -------------------------------------------------------------------------------- /markFeatureWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/markFeatureWriter.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/setup.py -------------------------------------------------------------------------------- /tests/goadb_full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full -------------------------------------------------------------------------------- /tests/goadb_full.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/2cents.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/2cents.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/666.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/666.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/667.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/667.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/668.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/668.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/669.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/669.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/A__B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/A__B_.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/Z_-glibber.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/Z_-glibber.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/Z_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/Z_acute.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/Z_glibber.01.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/Z_glibber.01.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/Z_glibber.02.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/Z_glibber.02.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/Z_glibber.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/Z_glibber.alt.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/Z_glibber.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/Z_glibber.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/_illegal.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/_illegal.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/asd.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/asd.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/asdasd.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/asdasd.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/beyondF_F_F_F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/beyondF_F_F_F_.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/eiurwoue.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/eiurwoue.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/f_f_i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/f_f_i.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/f_f_idieresistonos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/f_f_idieresistonos.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/idieresistonos.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/idieresistonos.alt.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/idieresistonos.alt_idieresistonos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/idieresistonos.alt_idieresistonos.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/idieresistonos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/idieresistonos.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/multitude.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/multitude.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/u10000.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/u10000.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/uni6666.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/uni6666.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/uni6667.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/uni6667.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/uni6669.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/uni6669.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/uniF_F_F_F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/uniF_F_F_F_.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/wät.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/wät.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/zero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/zero.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/zero.sups.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/zero.sups.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/glyphs/🥳.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/glyphs/🥳.glif -------------------------------------------------------------------------------- /tests/goadb_full.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/goadb_full.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/lib.plist -------------------------------------------------------------------------------- /tests/goadb_full.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_full.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/D_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/E_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/F_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/G_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/G_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/H_.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/H_.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/H_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/H_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/I_.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/I_.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/I_.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/I_.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/I_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/I_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/J_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/K_.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/K_.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/K_.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/K_.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/K_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/K_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/M_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/M_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/N_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/N_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/P_.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/P_.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/P_.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/P_.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/P_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/P_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/Q_.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/Q_.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/Q_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/Q_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/R_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/R_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/S_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/S_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/T_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/T_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/U_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/U_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/W_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/W_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/X_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/X_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/Y_.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/Y_.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/Z_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/Z_.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/ampersand.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/ampersand.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/any.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/any.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/asciicircum.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/asciicircum.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/asciicircum.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/asciicircum.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/asciitilde.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/asciitilde.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/asciitilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/asciitilde.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/asterisk.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/asterisk.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/asterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/asterisk.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/at.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/at.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/b.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/b.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/backslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/backslash.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/bar.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/bold.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/bold.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/braceleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/braceleft.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/braceright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/braceright.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/bracketleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/bracketleft.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/bracketright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/bracketright.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/c.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/c.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/clever.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/clever.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/colon.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/colon.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/colon.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/colon.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/colon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/colon.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/comma.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/comma.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/comma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/comma.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/d.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/d.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/daring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/daring.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/dollar.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/dollar.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/dollar.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/dollar.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/dollar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/dollar.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/e.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/e.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/eight.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/eight.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/eight.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/eight.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/equal.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/equal.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/exclam.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/exclam.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/explorer.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/explorer.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/f.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/faces.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/faces.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/five.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/five.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/five.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/five.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/four.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/four.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/g.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/g.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/grave.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/grave.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/grave.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/great.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/great.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/greater.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/greater.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/h.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/h.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/hurdles.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/hurdles.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/hyphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/hyphen.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/i.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/i.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/i.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/i.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/j.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/j.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/j.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/j.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/k.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/k.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/l.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/l.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/less.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/less.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/m.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/m.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/n.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/n.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/nine.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/numbersign.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/numbersign.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/o.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/o.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/o.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/o.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/one.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/one.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/one.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/one.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/one.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/one.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/p.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/p.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/parenleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/parenleft.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/parenright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/parenright.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/percent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/percent.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/period.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/period.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/period.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/period.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/period.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/period.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/plus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/plus.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/q.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/q.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/question.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/question.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/question.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/question.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/question.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/question.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/quotedbl.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/quotesingle.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/quotesingle.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/r.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/r.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/r.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/r.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/s.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/s.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/s.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/s.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/semicolon.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/semicolon.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/semicolon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/semicolon.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/seven.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/seven.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/six.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/six.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/six.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/six.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/six.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/six.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/slash.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/t.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/t.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/three.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/three.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/three.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/three.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/three.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/three.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/two.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/two.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/two.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/two.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/u.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/u.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/u.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/u.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/underscore.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/underscore.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/w.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/w.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/w.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/w.alt1.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/x.alt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/x.alt.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/x.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/x.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/y.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/y.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/z.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/z.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/glyphs/zero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/glyphs/zero.glif -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/goadb_no_glyphorder.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_no_glyphorder.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/goadb_template_glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_template_glyphs -------------------------------------------------------------------------------- /tests/goadb_template_glyphs.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_template_glyphs.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/goadb_template_glyphs.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_template_glyphs.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/goadb_template_glyphs.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_template_glyphs.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/goadb_template_glyphs.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_template_glyphs.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/goadb_template_glyphs.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_template_glyphs.ufo/lib.plist -------------------------------------------------------------------------------- /tests/goadb_template_glyphs.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/goadb_template_glyphs.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_AV.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_AV.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_AV.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /tests/kern_AV.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_AV.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_AV.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_AV.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_AV.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_AV.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_AV_dissolved.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV_dissolved.fea -------------------------------------------------------------------------------- /tests/kern_AV_singletons.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_AV_singletons.fea -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/features.fea -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_all_zero_value.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_all_zero_value.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_example.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.fea -------------------------------------------------------------------------------- /tests/kern_example.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/A_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/L_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/L_caron.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/O_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/O_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/Y_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/Y_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/igrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/igrave.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/quotedbl.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/quotesingle.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/quotesingle.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /tests/kern_example.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_example.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_example.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_example.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_example.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_example_rtl.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.fea -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/F_.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arA_e.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arA_e.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arA_lef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arA_lef.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arA_lefM_adda.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arA_lefM_adda.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arB_eh.i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arB_eh.i.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arC_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arC_olon.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arE_.i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arE_.i.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arH_eh.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arH_eh.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arH_ehG_oalH_amza.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arH_ehG_oalH_amza.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arH_ehY_eh.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arH_ehY_eh.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arJ_eh.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arJ_eh.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arP_eh.i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arP_eh.i.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arR_eh.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arR_eh.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arR_reh.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arR_reh.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arT_ehM_arbuta.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arT_ehM_arbuta.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arY_eh.i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arY_eh.i.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arY_ehB_arree.f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arY_ehB_arree.f.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arY_ehB_arree.fa.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arY_ehB_arree.fa.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arY_ehB_arreeH_amza.f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arY_ehB_arreeH_amza.f.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arY_ehB_arreeH_amza.fa.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arY_ehB_arreeH_amza.fa.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/arZ_ain.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/arZ_ain.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/dotlessi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/dotlessi.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/iacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/iacute.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/icircumflex.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/icircumflex.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/idieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/idieresis.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/igrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/igrave.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/glyphs/imacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/glyphs/imacron.glif -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_example_rtl.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_example_rtl_subs.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_rtl_subs.fea -------------------------------------------------------------------------------- /tests/kern_example_subs.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_subs.fea -------------------------------------------------------------------------------- /tests/kern_example_trim.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_trim.fea -------------------------------------------------------------------------------- /tests/kern_example_ufo2.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.fea -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/A_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/L_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/L_caron.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/O_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/O_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/Y_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/Y_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/igrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/igrave.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/quotedbl.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/quotesingle.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/quotesingle.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_example_ufo2.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_example_ufo2.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_ignored_groups.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.fea -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/features.fea -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/glyphs/D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/glyphs/D_.glif -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_ignored_groups.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ignored_groups.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_left_side_exception.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.fea -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_acute.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_breve.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_circumflex.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_circumflex.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_grave.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_macron.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_ogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_ogonek.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_ring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_ring.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/A_tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/A_tilde.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/O_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/O_acute.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/O_circumflex.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/O_circumflex.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/O_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/O_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/O_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/O_grave.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/O_hungarumlaut.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/O_hungarumlaut.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/O_macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/O_macron.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/O_slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/O_slash.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/O_tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/O_tilde.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/parenleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/parenleft.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/parenright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/parenright.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/question.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/question.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_left_side_exception.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_left_side_exception.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_mock_rtl.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.fea -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/features.fea -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/L_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/L_acute.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/L_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/L_caron.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/L_commaaccent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/L_commaaccent.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/L_dot.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/L_dot.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/L_dotbelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/L_dotbelow.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/L_dotbelowmacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/L_dotbelowmacron.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/L_linebelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/L_linebelow.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/L_slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/L_slash.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/aacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/aacute.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/acircumflex.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/acircumflex.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/adieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/adieresis.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/agrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/agrave.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/amacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/amacron.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/atilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/atilde.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/backslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/backslash.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/dotlessi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/dotlessi.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/iacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/iacute.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/icircumflex.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/icircumflex.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/idieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/idieresis.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/igrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/igrave.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/iota.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/iota.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/iotadieresistonos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/iotadieresistonos.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/lambda.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/lambda.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/t.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/t.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/tcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/tcaron.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/tcedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/tcedilla.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/glyphs/tcommaaccent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/glyphs/tcommaaccent.glif -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_mock_rtl.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_mock_rtl.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_nightmare.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.fea -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/features.fea -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/D_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/E_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/F_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/G_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/G_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/H_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/H_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/I_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/I_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/J_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/K_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/K_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/M_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/M_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/N_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/N_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/P_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/P_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/Q_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/Q_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/R_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/R_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/S_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/S_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/T_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/T_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/U_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/U_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/W_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/W_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/X_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/X_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/Z_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/Z_.glif -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_nightmare.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_nightmare.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_no_groups.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.fea -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/features.fea -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_no_groups.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_no_groups.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.fea -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/features.fea -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/L_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/L_acute.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/L_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/L_caron.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/L_commaaccent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/L_commaaccent.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/L_dot.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/L_dot.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/L_dotbelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/L_dotbelow.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/L_dotbelowmacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/L_dotbelowmacron.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/L_linebelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/L_linebelow.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/L_slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/L_slash.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/aacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/aacute.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/acircumflex.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/acircumflex.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/adieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/adieresis.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/agrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/agrave.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/amacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/amacron.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/atilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/atilde.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/backslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/backslash.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/dotlessi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/dotlessi.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/iacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/iacute.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/icircumflex.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/icircumflex.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/idieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/idieresis.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/igrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/igrave.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/iota.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/iota.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/iotadieresistonos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/iotadieresistonos.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/lambda.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/lambda.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/t.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/t.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/tcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/tcaron.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/tcedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/tcedilla.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/glyphs/tcommaaccent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/glyphs/tcommaaccent.glif -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_ss4_exceptions.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_ss4_exceptions.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/A_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/L_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/L_caron.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/O_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/O_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/V_.cxt.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/V_.cxt.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/Y_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/Y_dieresis.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/igrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/igrave.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/quotedbl.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/quotesingle.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/quotesingle.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_suffix.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/kern_suffix_ignored.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix_ignored.fea -------------------------------------------------------------------------------- /tests/kern_suffix_present.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_suffix_present.fea -------------------------------------------------------------------------------- /tests/kern_unused_groups.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.fea -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/features.fea -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/groups.plist -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/lib.plist -------------------------------------------------------------------------------- /tests/kern_unused_groups.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/kern_unused_groups.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/features.fea -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/acutecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/acutecmb.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/dvA_nusvara.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/dvA_nusvara.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/dvC_andrabindu.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/dvC_andrabindu.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/dvK_a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/dvK_a.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/dvK_ha.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/dvK_ha.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/dvN_ukta.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/dvN_ukta.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/dvQ_a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/dvQ_a.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/dvR_eph.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/dvR_eph.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/dvV_irama.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/dvV_irama.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/groups.plist -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/lib.plist -------------------------------------------------------------------------------- /tests/mark_deva_simple.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/mark_deva_simple_abvm.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple_abvm.fea -------------------------------------------------------------------------------- /tests/mark_deva_simple_blwm.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple_blwm.fea -------------------------------------------------------------------------------- /tests/mark_deva_simple_mark.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_deva_simple_mark.fea -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/acutecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/acutecmb.glif -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/cedillacmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/cedillacmb.glif -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/circumflexcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/circumflexcmb.glif -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/commabelowcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/commabelowcmb.glif -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/dotbelowcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/dotbelowcmb.glif -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/gravecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/gravecmb.glif -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/groups.plist -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/lib.plist -------------------------------------------------------------------------------- /tests/mark_no_group.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_no_group.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/mark_rtl_liga.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.fea -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/glyphs/arF_atha.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/glyphs/arF_atha.glif -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/glyphs/arF_athatan.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/glyphs/arF_athatan.glif -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/glyphs/arK_afA_lefM_aksura.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/glyphs/arK_afA_lefM_aksura.glif -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/glyphs/arK_asra.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/glyphs/arK_asra.glif -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/glyphs/arK_asratan.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/glyphs/arK_asratan.glif -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/groups.plist -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/lib.plist -------------------------------------------------------------------------------- /tests/mark_rtl_liga.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_rtl_liga.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/mark_simple.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.fea -------------------------------------------------------------------------------- /tests/mark_simple.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/acutecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/acutecmb.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/cedillacmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/cedillacmb.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/circumflexcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/circumflexcmb.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/commabelowcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/commabelowcmb.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/dotbelowcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/dotbelowcmb.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/gravecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/gravecmb.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/oslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/oslash.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/mark_simple.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/groups.plist -------------------------------------------------------------------------------- /tests/mark_simple.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/mark_simple.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/lib.plist -------------------------------------------------------------------------------- /tests/mark_simple.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/mark_simple_classes.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple_classes.fea -------------------------------------------------------------------------------- /tests/mark_simple_noclasses.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_simple_noclasses.fea -------------------------------------------------------------------------------- /tests/mark_trim.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.fea -------------------------------------------------------------------------------- /tests/mark_trim.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/features.fea -------------------------------------------------------------------------------- /tests/mark_trim.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/acutecmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/acutecmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/acutecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/acutecmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/brevecmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/brevecmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/brevecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/brevecmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/caroncmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/caroncmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/caroncmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/caroncmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/cedillacmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/cedillacmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/circumflexcmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/circumflexcmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/circumflexcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/circumflexcmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/commabelowcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/commabelowcmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/dieresiscmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/dieresiscmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/dieresiscmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/dieresiscmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/dotaccentcmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/dotaccentcmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/dotaccentcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/dotaccentcmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/gravecmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/gravecmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/gravecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/gravecmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/hungarumlautcmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/hungarumlautcmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/hungarumlautcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/hungarumlautcmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/macroncmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/macroncmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/macroncmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/macroncmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/ringcmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/ringcmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/ringcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/ringcmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/tildecmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/tildecmb.cap.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/glyphs/tildecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/glyphs/tildecmb.glif -------------------------------------------------------------------------------- /tests/mark_trim.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/groups.plist -------------------------------------------------------------------------------- /tests/mark_trim.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/mark_trim.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/mark_trim.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/lib.plist -------------------------------------------------------------------------------- /tests/mark_trim.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mark_trim.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/mkmk_simple.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/mkmk_simple.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/GSUB.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/GSUB.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/GlyphOrderAndAliasDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/GlyphOrderAndAliasDB -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/LigaLTR-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/LigaLTR-Light.otf -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/README.md -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/collateral/make_ligatures_ltr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/collateral/make_ligatures_ltr.py -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/features.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/kern.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/kern.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/acutecmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/acutecmb.cap.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/acutecmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/acutecmb.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/b.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/b.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/c.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/c.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/d.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/d.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotaccentcmb.cap.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotaccentcmb.cap.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotaccentcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotaccentcmb.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotbelowcmb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotbelowcmb.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotlessi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotlessi.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotlessi.liga.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/dotlessi.liga.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/e.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/e.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f.liga.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f.liga.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i_i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i_i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i_i_i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i_i_i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i_i_i_i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i_i_i_i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i_i_i_i_i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/f_i_i_i_i_i_i_i_i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/g.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/g.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/h.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/h.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/j.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/j.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/k.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/k.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/l.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/l.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/m.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/m.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/n.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/n.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/p.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/p.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/q.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/q.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/r.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/r.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/s.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/s.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/t.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/t.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/u.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/u.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/x.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/x.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/y.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/y.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/z.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/glyphs/z.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/groups.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/lib.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/liga_ltr.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/liga_ltr.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_ltr/mark.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_ltr/mark.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/GSUB.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/GSUB.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/LigaRTL-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/LigaRTL-Light.otf -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/README.md -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/features.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/kern.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/kern.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/data/com.adobe.type.processedHashMap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/data/com.adobe.type.processedHashMap -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arF_atha.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arF_atha.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arF_athatan.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arF_athatan.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.f.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.i.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.m.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.m.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.mc.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.mc.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.s.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_eh.s.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_ehY_ehB_arree.f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_ehY_ehB_arree.f.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_ehY_ehB_arree.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arH_ehY_ehB_arree.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arK_asra.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arK_asra.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arK_asratan.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arK_asratan.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arY_ehB_arree.f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arY_ehB_arree.f.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arY_ehB_arree.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/arY_ehB_arree.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/groups.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/lib.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/liga_rtl.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/liga_rtl.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/mark.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/mark.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/markclasses.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/markclasses.fea -------------------------------------------------------------------------------- /tests/project_mark_liga_rtl/mkmk.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/project_mark_liga_rtl/mkmk.fea -------------------------------------------------------------------------------- /tests/test_goadbWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/test_goadbWriter.py -------------------------------------------------------------------------------- /tests/test_kernFeatureWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/test_kernFeatureWriter.py -------------------------------------------------------------------------------- /tests/test_markFeatureWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/test_markFeatureWriter.py -------------------------------------------------------------------------------- /tests/tmp_example_trim.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/tmp_example_trim.fea -------------------------------------------------------------------------------- /tests/tmp_kern_example_ufo2.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/tests/tmp_kern_example_ufo2.fea -------------------------------------------------------------------------------- /utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/utilities/README.md -------------------------------------------------------------------------------- /utilities/flKernExport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/utilities/flKernExport.py -------------------------------------------------------------------------------- /vintage/AdobeFontLabUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/vintage/AdobeFontLabUtils.py -------------------------------------------------------------------------------- /vintage/BezChar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/vintage/BezChar.py -------------------------------------------------------------------------------- /vintage/WriteFeaturesKernFDK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/vintage/WriteFeaturesKernFDK.py -------------------------------------------------------------------------------- /vintage/WriteFeaturesMarkFDK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/python-modules/HEAD/vintage/WriteFeaturesMarkFDK.py --------------------------------------------------------------------------------