From 5a4279b35a7aa7280a677ed61d2d2f196d56f694 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 13 Feb 2005 17:52:07 +0000 Subject: [PATCH 1/1] Improve DDREurope parsing further - Fix SQL escaping. - Understand groups correctly. - Add a lot of new alternative spellings. --- parse/parse-ddreurope-tournament.pl | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/parse/parse-ddreurope-tournament.pl b/parse/parse-ddreurope-tournament.pl index 6c42f57..eee3d7d 100644 --- a/parse/parse-ddreurope-tournament.pl +++ b/parse/parse-ddreurope-tournament.pl @@ -49,7 +49,7 @@ while (<>) { } # New group, and the random songs for it - if (/ ( Players | Group (\d+) )<\/th>/x) { + if (/ ( Players | Group \s* (\d+) )<\/th>/x) { # bit of an evil hack here my $group = $2; $group = 0 if ($1 eq 'Players'); @@ -67,6 +67,18 @@ while (<>) { # different names for songs $song =~ s/Paranoia -Rebirth-/PARANOiA Rebirth/; $song =~ s/The Center of the heart/The Centre of the Heart (Stonebridge Club Mix)/; + $song =~ s/Can't stop falling in love/Can't Stop Fallin' in Love/; + $song =~ s/B4U -B4 ZA Beat Mix-/B4U (B4 Za Beat Mix)/; + $song =~ s/Jam Jam Reggae/Jam Jam Reggae (AM Swing Mix)/; + $song =~ s/Trip Machine -Climax-/Trip Machine Climax/; + $song =~ s/Dont try to stop it/Don't Try to Stop It/; + $song =~ s/Healing Vision -AM-/Healing Vision (Angelic Mix)/; + $song =~ s/5,6,7,8/5, 6, 7, 8/; + $song =~ s/Keep On Movin/Keep On Movin'/; + $song =~ s/So Deep/So Deep (Perfect Sphere Mix)/; + $song =~ s/Aarons Party/Aaron's Party (Come Get It)/; + + $song =~ s/'/\\'/g; push @rsongs, $song; -- 2.39.2