├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── INSTALL.rst ├── README.rst ├── doc ├── Makefile ├── command.rst ├── conf.py ├── index.rst ├── ly.cli.rst ├── ly.data.rst ├── ly.lex.rst ├── ly.music.rst ├── ly.musicxml.rst ├── ly.pitch.rst ├── ly.rst ├── ly.server.rst ├── ly.xml.rst ├── requirements.txt └── servercmd.rst ├── ly ├── __init__.py ├── __main__.py ├── barcheck.py ├── cli │ ├── __init__.py │ ├── command.py │ ├── doc.py │ ├── main.py │ └── setvar.py ├── colorize.py ├── cursortools.py ├── data │ ├── Makefile │ ├── __init__.py │ ├── _data.py │ ├── _lilypond_data.py │ ├── _scheme_data.py │ ├── getdata.ly │ └── makeschemedata.py ├── docinfo.py ├── document.py ├── dom.py ├── duration.py ├── etreeutil.py ├── indent.py ├── lex │ ├── __init__.py │ ├── _mode.py │ ├── _token.py │ ├── docbook.py │ ├── html.py │ ├── latex.py │ ├── lilypond.py │ ├── mup.py │ ├── scheme.py │ └── texinfo.py ├── music │ ├── __init__.py │ ├── event.py │ ├── items.py │ └── read.py ├── musicxml │ ├── __init__.py │ ├── create_musicxml.py │ ├── ly2xml_mediator.py │ ├── lymus2musxml.py │ ├── midi_sound_map.py │ └── xml_objs.py ├── node.py ├── pitch │ ├── __init__.py │ ├── abs2rel.py │ ├── rel2abs.py │ ├── transform.py │ ├── translate.py │ └── transpose.py ├── pkginfo.py ├── reformat.py ├── rests.py ├── rhythm.py ├── server │ ├── __init__.py │ ├── command.py │ ├── doc.py │ ├── handler.py │ ├── main.py │ ├── options.py │ └── testjson.py ├── slexer.py ├── util.py ├── words.py └── xml │ ├── __init__.py │ ├── xml-export-init.ly │ ├── xml-export.dtd │ └── xml-export.ily ├── pyproject.toml └── tests ├── __init__.py ├── musicxml.xsd ├── test_xml.py └── test_xml_files ├── break.ly ├── break.xml ├── breathe.ly ├── breathe.xml ├── church_modes.ly ├── church_modes.xml ├── dynamics.ly ├── dynamics.xml ├── full_bar_rest.ly ├── full_bar_rest.xml ├── glissando.ly ├── glissando.xml ├── mark.ly ├── mark.xml ├── markup.ly ├── markup.xml ├── merge_voice.ly ├── merge_voice.xml ├── merge_voice_slurs.ly ├── merge_voice_slurs.xml ├── no_barcheck.ly ├── no_barcheck.xml ├── partial.ly ├── partial.xml ├── stem.ly ├── stem.xml ├── tie.ly ├── tie.xml ├── tuplet.ly ├── tuplet.xml ├── variable.ly └── variable.xml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | build/ 4 | dist/ 5 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/INSTALL.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/command.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/ly.cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/ly.cli.rst -------------------------------------------------------------------------------- /doc/ly.data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/ly.data.rst -------------------------------------------------------------------------------- /doc/ly.lex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/ly.lex.rst -------------------------------------------------------------------------------- /doc/ly.music.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/ly.music.rst -------------------------------------------------------------------------------- /doc/ly.musicxml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/ly.musicxml.rst -------------------------------------------------------------------------------- /doc/ly.pitch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/ly.pitch.rst -------------------------------------------------------------------------------- /doc/ly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/ly.rst -------------------------------------------------------------------------------- /doc/ly.server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/ly.server.rst -------------------------------------------------------------------------------- /doc/ly.xml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/ly.xml.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/servercmd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/doc/servercmd.rst -------------------------------------------------------------------------------- /ly/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/__init__.py -------------------------------------------------------------------------------- /ly/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/__main__.py -------------------------------------------------------------------------------- /ly/barcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/barcheck.py -------------------------------------------------------------------------------- /ly/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/cli/__init__.py -------------------------------------------------------------------------------- /ly/cli/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/cli/command.py -------------------------------------------------------------------------------- /ly/cli/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/cli/doc.py -------------------------------------------------------------------------------- /ly/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/cli/main.py -------------------------------------------------------------------------------- /ly/cli/setvar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/cli/setvar.py -------------------------------------------------------------------------------- /ly/colorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/colorize.py -------------------------------------------------------------------------------- /ly/cursortools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/cursortools.py -------------------------------------------------------------------------------- /ly/data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/data/Makefile -------------------------------------------------------------------------------- /ly/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/data/__init__.py -------------------------------------------------------------------------------- /ly/data/_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/data/_data.py -------------------------------------------------------------------------------- /ly/data/_lilypond_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/data/_lilypond_data.py -------------------------------------------------------------------------------- /ly/data/_scheme_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/data/_scheme_data.py -------------------------------------------------------------------------------- /ly/data/getdata.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/data/getdata.ly -------------------------------------------------------------------------------- /ly/data/makeschemedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/data/makeschemedata.py -------------------------------------------------------------------------------- /ly/docinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/docinfo.py -------------------------------------------------------------------------------- /ly/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/document.py -------------------------------------------------------------------------------- /ly/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/dom.py -------------------------------------------------------------------------------- /ly/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/duration.py -------------------------------------------------------------------------------- /ly/etreeutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/etreeutil.py -------------------------------------------------------------------------------- /ly/indent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/indent.py -------------------------------------------------------------------------------- /ly/lex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/__init__.py -------------------------------------------------------------------------------- /ly/lex/_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/_mode.py -------------------------------------------------------------------------------- /ly/lex/_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/_token.py -------------------------------------------------------------------------------- /ly/lex/docbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/docbook.py -------------------------------------------------------------------------------- /ly/lex/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/html.py -------------------------------------------------------------------------------- /ly/lex/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/latex.py -------------------------------------------------------------------------------- /ly/lex/lilypond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/lilypond.py -------------------------------------------------------------------------------- /ly/lex/mup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/mup.py -------------------------------------------------------------------------------- /ly/lex/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/scheme.py -------------------------------------------------------------------------------- /ly/lex/texinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/lex/texinfo.py -------------------------------------------------------------------------------- /ly/music/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/music/__init__.py -------------------------------------------------------------------------------- /ly/music/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/music/event.py -------------------------------------------------------------------------------- /ly/music/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/music/items.py -------------------------------------------------------------------------------- /ly/music/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/music/read.py -------------------------------------------------------------------------------- /ly/musicxml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/musicxml/__init__.py -------------------------------------------------------------------------------- /ly/musicxml/create_musicxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/musicxml/create_musicxml.py -------------------------------------------------------------------------------- /ly/musicxml/ly2xml_mediator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/musicxml/ly2xml_mediator.py -------------------------------------------------------------------------------- /ly/musicxml/lymus2musxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/musicxml/lymus2musxml.py -------------------------------------------------------------------------------- /ly/musicxml/midi_sound_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/musicxml/midi_sound_map.py -------------------------------------------------------------------------------- /ly/musicxml/xml_objs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/musicxml/xml_objs.py -------------------------------------------------------------------------------- /ly/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/node.py -------------------------------------------------------------------------------- /ly/pitch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/pitch/__init__.py -------------------------------------------------------------------------------- /ly/pitch/abs2rel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/pitch/abs2rel.py -------------------------------------------------------------------------------- /ly/pitch/rel2abs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/pitch/rel2abs.py -------------------------------------------------------------------------------- /ly/pitch/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/pitch/transform.py -------------------------------------------------------------------------------- /ly/pitch/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/pitch/translate.py -------------------------------------------------------------------------------- /ly/pitch/transpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/pitch/transpose.py -------------------------------------------------------------------------------- /ly/pkginfo.py: -------------------------------------------------------------------------------- 1 | """Meta-information about the LY package.""" 2 | 3 | version = "0.9.9" 4 | -------------------------------------------------------------------------------- /ly/reformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/reformat.py -------------------------------------------------------------------------------- /ly/rests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/rests.py -------------------------------------------------------------------------------- /ly/rhythm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/rhythm.py -------------------------------------------------------------------------------- /ly/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/server/__init__.py -------------------------------------------------------------------------------- /ly/server/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/server/command.py -------------------------------------------------------------------------------- /ly/server/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/server/doc.py -------------------------------------------------------------------------------- /ly/server/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/server/handler.py -------------------------------------------------------------------------------- /ly/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/server/main.py -------------------------------------------------------------------------------- /ly/server/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/server/options.py -------------------------------------------------------------------------------- /ly/server/testjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/server/testjson.py -------------------------------------------------------------------------------- /ly/slexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/slexer.py -------------------------------------------------------------------------------- /ly/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/util.py -------------------------------------------------------------------------------- /ly/words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/words.py -------------------------------------------------------------------------------- /ly/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/xml/__init__.py -------------------------------------------------------------------------------- /ly/xml/xml-export-init.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/xml/xml-export-init.ly -------------------------------------------------------------------------------- /ly/xml/xml-export.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/xml/xml-export.dtd -------------------------------------------------------------------------------- /ly/xml/xml-export.ily: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/ly/xml/xml-export.ily -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/musicxml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/musicxml.xsd -------------------------------------------------------------------------------- /tests/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml.py -------------------------------------------------------------------------------- /tests/test_xml_files/break.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/break.ly -------------------------------------------------------------------------------- /tests/test_xml_files/break.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/break.xml -------------------------------------------------------------------------------- /tests/test_xml_files/breathe.ly: -------------------------------------------------------------------------------- 1 | \version "2.18.2" 2 | 3 | \score { 4 | { f2. \breathe g4 } 5 | \layout {} 6 | } -------------------------------------------------------------------------------- /tests/test_xml_files/breathe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/breathe.xml -------------------------------------------------------------------------------- /tests/test_xml_files/church_modes.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/church_modes.ly -------------------------------------------------------------------------------- /tests/test_xml_files/church_modes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/church_modes.xml -------------------------------------------------------------------------------- /tests/test_xml_files/dynamics.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/dynamics.ly -------------------------------------------------------------------------------- /tests/test_xml_files/dynamics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/dynamics.xml -------------------------------------------------------------------------------- /tests/test_xml_files/full_bar_rest.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/full_bar_rest.ly -------------------------------------------------------------------------------- /tests/test_xml_files/full_bar_rest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/full_bar_rest.xml -------------------------------------------------------------------------------- /tests/test_xml_files/glissando.ly: -------------------------------------------------------------------------------- 1 | \version "2.18.2" 2 | 3 | \score { 4 | { c4\glissando e4 } 5 | \layout {} 6 | } 7 | -------------------------------------------------------------------------------- /tests/test_xml_files/glissando.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/glissando.xml -------------------------------------------------------------------------------- /tests/test_xml_files/mark.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/mark.ly -------------------------------------------------------------------------------- /tests/test_xml_files/mark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/mark.xml -------------------------------------------------------------------------------- /tests/test_xml_files/markup.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/markup.ly -------------------------------------------------------------------------------- /tests/test_xml_files/markup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/markup.xml -------------------------------------------------------------------------------- /tests/test_xml_files/merge_voice.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/merge_voice.ly -------------------------------------------------------------------------------- /tests/test_xml_files/merge_voice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/merge_voice.xml -------------------------------------------------------------------------------- /tests/test_xml_files/merge_voice_slurs.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/merge_voice_slurs.ly -------------------------------------------------------------------------------- /tests/test_xml_files/merge_voice_slurs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/merge_voice_slurs.xml -------------------------------------------------------------------------------- /tests/test_xml_files/no_barcheck.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/no_barcheck.ly -------------------------------------------------------------------------------- /tests/test_xml_files/no_barcheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/no_barcheck.xml -------------------------------------------------------------------------------- /tests/test_xml_files/partial.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/partial.ly -------------------------------------------------------------------------------- /tests/test_xml_files/partial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/partial.xml -------------------------------------------------------------------------------- /tests/test_xml_files/stem.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/stem.ly -------------------------------------------------------------------------------- /tests/test_xml_files/stem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/stem.xml -------------------------------------------------------------------------------- /tests/test_xml_files/tie.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/tie.ly -------------------------------------------------------------------------------- /tests/test_xml_files/tie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/tie.xml -------------------------------------------------------------------------------- /tests/test_xml_files/tuplet.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/tuplet.ly -------------------------------------------------------------------------------- /tests/test_xml_files/tuplet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/tuplet.xml -------------------------------------------------------------------------------- /tests/test_xml_files/variable.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/variable.ly -------------------------------------------------------------------------------- /tests/test_xml_files/variable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frescobaldi/python-ly/HEAD/tests/test_xml_files/variable.xml --------------------------------------------------------------------------------