]> git.sesse.net Git - ccbs/commitdiff
Fix parsing of chosen songs.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 13 Feb 2005 23:12:24 +0000 (23:12 +0000)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 13 Feb 2005 23:12:24 +0000 (23:12 +0000)
parse/parse-ddreurope-tournament.pl

index 83b95f226f5fb0b2bd80f40c31860e8824868f41..9338ad29b418e8975ee80bb0ed52b0b1fce90f4b 100644 (file)
@@ -70,8 +70,9 @@ while (<>) {
                }
 
                # chosen songs
                }
 
                # chosen songs
-               while (s/<td \s* class=dtdsong> .*? class="link"> (.*?) <\/a> .*? <td class=dtdscore> (\d+) <\/td>//x) {
+               while (s/<td \s* class=dtdsong> .*? class="link"> (.*?) <\/a> .*? <td \s* class=dtdscore> (\d+) <\/td>//x) {
                        my $song = song_map($1);
                        my $song = song_map($1);
+                       my $score = $2;
                        $song =~ s/'/\\'/g;
                
                        printf "INSERT INTO scores (tournament, round, parallel, player, song, chosen, score) VALUES (\n";
                        $song =~ s/'/\\'/g;
                
                        printf "INSERT INTO scores (tournament, round, parallel, player, song, chosen, score) VALUES (\n";
@@ -80,7 +81,7 @@ while (<>) {
                        print "   (SELECT player FROM players WHERE nick='$player'),\n";
                        print "   (SELECT song FROM songs WHERE lower(title)=lower('$song')),\n";
                        print "   't',\n";
                        print "   (SELECT player FROM players WHERE nick='$player'),\n";
                        print "   (SELECT song FROM songs WHERE lower(title)=lower('$song')),\n";
                        print "   't',\n";
-                       print "   $2);\n";
+                       print "   $score);\n";
                }
        }
 
                }
        }