Several company identifier lines do not end in a </td> but rather <br/> followed by newline followed by </td>. This dirty hack is more forgiving of HTML weirdnesses in the SIGs company identifiers page. --- tools/parse_companies.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/parse_companies.pl b/tools/parse_companies.pl index 6dc358e..1746222 100755 --- a/tools/parse_companies.pl +++ b/tools/parse_companies.pl @@ -45,7 +45,7 @@ while (<>) { $next_is_name = 1; # next <td> should be company name - } elsif ($next_is_name && m|\<td.*\>(.*)\</td\>|) { + } elsif ($next_is_name && m|\<td.*\>(.*)\<|) { my $name = uri_decode($1); $name =~ s/^\s+//g; # kill leading $name =~ s/\s+$//g; # and trailing space -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html