]> git.sesse.net Git - ccbs/commitdiff
Handle better different namings/capitalizations of some songs.
authorSteinar H. Gunderson <sesse@samfundet.no>
Sun, 13 Feb 2005 17:36:19 +0000 (17:36 +0000)
committerSteinar H. Gunderson <sesse@samfundet.no>
Sun, 13 Feb 2005 17:36:19 +0000 (17:36 +0000)
parse/parse-ddreurope-tournament.pl

index 0aea46768744ca07dd9cf65c7449ccf545069cc8..6c42f5794eab8b366ca452ac38fdefaf38201b0e 100644 (file)
@@ -62,12 +62,18 @@ while (<>) {
                @rsongs = ();
 
                while (s/<th \s* class=dthpsong> .*? "color:white"> (.*?) <\/a><\/th>//x) {
                @rsongs = ();
 
                while (s/<th \s* class=dthpsong> .*? "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 "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";
                }
 
                        print ");\n";
                }