X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/aeb47e7600bf4e34a37f3ebfe0e6edc534d92147..329d478b0e0861a78faf665186715a587969d203:/browser.plp diff --git a/browser.plp b/browser.plp index a694f3b..f8b20a9 100644 --- a/browser.plp +++ b/browser.plp @@ -6,7 +6,7 @@ no if $] >= 5.018, warnings => 'experimental::smartmatch'; Html({ title => 'browser compatibility cheat sheet', - version => 'v1.3', + version => '1.3', description => [ "Compatibility table of new web features (HTML5, CSS3, SVG, Javascript)", "comparing support and usage share for all popular browser versions.", @@ -69,6 +69,7 @@ my %PSTATS = ( # score percentage a => .5, 'a x' => .5, 'a d' => .1, j => .2, 'p j' => .2, 'n d' => .2, 'n x d' => .2, p => .2, 'p p' => .2, 'p d' => .1, + n => 0, u => 0, ); my %CSTATUS = ( unoff => 'l1', # unofficial @@ -272,7 +273,7 @@ sub featurescore { while (my ($browser, $versions) = each %$row) { ref $versions eq 'HASH' or next; while (my ($version, $status) = each %$versions) { - $status =~ s/\h\#\d+//; + $status =~ s/\h\#\d+//g; $rank += ($canihas->{$browser}->{$version} || .001) * $PSTATS{$status}; } }