From: Steinar H. Gunderson Date: Sun, 13 Feb 2005 17:36:19 +0000 (+0000) Subject: Handle better different namings/capitalizations of some songs. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=c8ced6134e4cea84de6f8da5e6611a9ccce2b2dd Handle better different namings/capitalizations of some songs. --- diff --git a/parse/parse-ddreurope-tournament.pl b/parse/parse-ddreurope-tournament.pl index 0aea467..6c42f57 100644 --- a/parse/parse-ddreurope-tournament.pl +++ b/parse/parse-ddreurope-tournament.pl @@ -62,12 +62,18 @@ while (<>) { @rsongs = (); while (s/ .*? "color:white"> (.*?) <\/a><\/th>//x) { - push @rsongs, $1; + my $song = $1; + + # 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)/; + + push @rsongs, $song; print "INSERT INTO roundrandomsongs (tournament, round, parallel, song) VALUES (\n"; print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; print " $round, $group,\n"; - print " (SELECT song FROM songs WHERE title='$1')\n"; + print " (SELECT song FROM songs WHERE lower(title)=lower('$song'))\n"; print ");\n"; }