X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/fc0efae244f2c4bf8063f5962138c2469dc44e6e..2a99bcdadec88d7483903e2c8420ad3e78fcb805:/browser.plp diff --git a/browser.plp b/browser.plp index 375f300..0d4d4e7 100644 --- a/browser.plp +++ b/browser.plp @@ -1,12 +1,10 @@ <(common.inc.plp)><: -use 5.010; -use utf8; use List::Util qw(sum max first); no if $] >= 5.018, warnings => 'experimental::smartmatch'; Html({ title => 'browser compatibility cheat sheet', - version => 'v1.2', + version => '1.4', description => [ "Compatibility table of new web features (HTML5, CSS3, SVG, Javascript)", "comparing support and usage share for all popular browser versions.", @@ -58,7 +56,9 @@ my %DSTATS = ( x => sub { join(' ', 'requires prefix', - (map "-$_-", $caniuse->{agents}->{$_[0]}->{prefix} // ()), + map {"-$_-"} + ($caniuse->{agents}->{$_[0]}->{prefix_exceptions} // {})->{$_[1]} + // $caniuse->{agents}->{$_[0]}->{prefix} // (), ); }, ); @@ -67,6 +67,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 @@ -95,11 +96,13 @@ given ($get{usage} // 'wm') { # none } when (!m{ \A [a-z]\w+ (?:/\d[\d-]*\d)? \z }x) { - printf "

Invalid browser usage data request: %s", - 'identifier must be alphanumeric name or 0'; + Alert([ + 'Invalid browser usage data request', + 'Identifier must be alphanumeric name or 0.', + ]); } $canihas = do "data/browser/usage-$_.inc.pl" or do { - printf "

Browser usage data not found: %s", $@ || $!; + Alert('Browser usage data not found', $@ || $!); break; }; $usage = $_; @@ -270,6 +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+//g; $rank += ($canihas->{$browser}->{$version} || .001) * $PSTATS{$status}; } } @@ -297,6 +301,7 @@ sub featurescore { sub formatnotes { my @html = @_; for (@html) { + s/\r\n?/\n/g; # windows returns s/\h* $//gmx; # trailing whitespace s/(?<= [^.\n]) $/./gmx; # consistently end each line by a period Entity($_); @@ -334,7 +339,7 @@ sub saytitlecol { say '

'; } printf 'Resources: %s.', join(', ', map { - sprintf '%s', EscapeHTML($_->{url}), $_->{title} + sprintf '%s', EscapeHTML($_->{url}), EscapeHTML($_->{title}) } @$_) for grep { @$_ } $row->{links} // (); printf '
Parent feature: %s.', join(', ', map { sprintf '%s', EscapeHTML("#$_"), $caniuse->{data}->{$_}->{title} @@ -386,7 +391,7 @@ sub saybrowsercols { # prepare version hover details my $title = sprintf('%.1f%% %s', $usage * $usagepct, join(', ', - map { ref $_ eq 'CODE' ? $_->($browser) : $_ } + map { ref $_ eq 'CODE' ? $_->($browser, $span[0]->[0]) : $_ } map { $DSTATS{$_} // () } map { split / /, $_ } $prev