Skip to content

Commit 3d082b7

Browse files
committed
Removed test poster in DDMAL/posters file and
json for activities page Updated the deprecated method findAll in html_parser.py and html_parser_OMRbib.py; changed to find_all.
1 parent 4314c9a commit 3d082b7

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

activities/posters/content.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
2-
"2025": [
3-
"anonymous, anonymous test. 2025. \u201cThis Is a Test.\u201d Test, test."
4-
],
52
"2019": [
63
"Hopkins, Emily, Yaolong Ju, Gustavo Polins Pedro, Cory McKay, Julie Cumming, and Ichiro Fujinaga. 2019. \u201cSIMSSA DB: Symbolic Music Discovery and Search.\u201d Poster presented at the 6th International Conference on Digital Libraries for Musicology, Den Haag, Netherlands, November 9.",
74
"Ju, Yaolong. 2019. \u201cAn Interactive Workflow for Generating Chord Labels for Homorhythmic Music in Symbolic Formats.\u201d Presented at the The 20thInternational Society of Music Information Retrieval Conference, Delft, Netherlands, November 8. <a href=\"http://cloud.simssa.ca/index.php/f/996\">http://cloud.simssa.ca/index.php/f/996</a>.",

html_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
html_array = []
4141

42-
for html_tag in html_soup.findAll('div', {'class': 'csl-entry'}):
42+
for html_tag in html_soup.find_all('div', {'class': 'csl-entry'}):
4343
parse_attr = html_tag.find_next('span')['title']
4444
year = 'n.d.'
4545
author = 'no_author'

html_parser_OMRbib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
html_array = []
4747

48-
for html_tag in html_soup.findAll('div', {'class': 'csl-entry'}):
48+
for html_tag in html_soup.find_all('div', {'class': 'csl-entry'}):
4949
# print(tag.find_next('span'))
5050
# if html_tag.find('a'):
5151
# continue

0 commit comments

Comments
 (0)