-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented figures support for the CLI.
Squashed commit of the following: commit d5c05092bad9ea47510a119554b4708fcd8bce69 Author: Eric Kim <erickim555@gmail.com> Date: Fri Jul 12 00:34:28 2013 -0700 Added two Figure test files. Modified .gitignore to ignore temp files. commit e22b6221513d6878d1cba61b527ed60f6f8a2211 Author: Eric Kim <erickim555@gmail.com> Date: Fri Jul 12 00:32:09 2013 -0700 The CLI interface now supports figure inputs. commit 7e6431addbcb447dfea6c4831872de7b55045633 Author: Eric Kim <erickim555@gmail.com> Date: Thu Jul 11 21:42:42 2013 -0700 Implemented the parse_figures function for the CLI interface.
- Loading branch information
1 parent
81acca5
commit 538d22a
Showing
6 changed files
with
153 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,6 @@ nosetests.xml | |
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
# Unix temp files | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# ex_fig_1a: Tests the [Figures] section | ||
[Chords] | ||
# time, root, role, bassnote, modifiers... | ||
0, D, predominant, None, minor | ||
1, G, dominant, None, major | ||
2, C, tonic, None, major | ||
|
||
[Figures] | ||
s: D, D, C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# ex_fig_1b: Tests the [Figures] section | ||
[Chords] | ||
# time, root, role, bassnote, modifiers... | ||
0, D, predominant, None, minor | ||
1, G, dominant, None, major | ||
2, C, tonic, None, major | ||
|
||
[Figures] | ||
s: D, None, C | ||
a: F | ||
b: None, G, G |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters