X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/a12fd2846834c96aaf034aca4c749f9e217af1a9..dbd4b0affb8c818f92008c4ab8d5f23b9af6ca4d:/browser.plp diff --git a/browser.plp b/browser.plp index e65395e..0d4d4e7 100644 --- a/browser.plp +++ b/browser.plp @@ -1,27 +1,26 @@ <(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.0', + version => '1.4', description => [ "Compatibility table of new web features (HTML5, CSS3, SVG, Javascript)", "comparing support and usage share for all popular browser versions.", ], keywords => [qw' - web browser support compatibility usage available feature + web browser support compatibility usage matrix available feature html html5 css css3 svg javascript js dom mobile ie internet explorer firefox chrome safari webkit opera '], stylesheet => [qw'circus dark mono red light'], - data => ['browser-support.inc.pl'], + data => ['data/browser/support.inc.pl'], }); say "

Browser compatibility

\n"; -my $caniuse = do 'browser-support.inc.pl' or die $! || $@; +my $caniuse = do 'data/browser/support.inc.pl' or die $@ || $!; $_->{verrelease} = { # mark last three (future) versions as unreleased, ensure current isn't map { @@ -57,10 +56,19 @@ my %DSTATS = ( x => sub { join(' ', 'requires prefix', - (map "-$_-", $caniuse->{agents}->{$_[0]}->{prefix} // ()), + map {"-$_-"} + ($caniuse->{agents}->{$_[0]}->{prefix_exceptions} // {})->{$_[1]} + // $caniuse->{agents}->{$_[0]}->{prefix} // (), ); }, ); +my %PSTATS = ( # score percentage + y => 1, 'y x' => .9, + 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 wd => 'l2', # draft @@ -82,17 +90,19 @@ print <<'';

Alternate rendition of Fyrd's when can I use... page my ($canihas, $usage); -my $minusage = $get{threshold} // .5; +my $minusage = $get{threshold} // .7; given ($get{usage} // 'wm') { when (!$_) { # none } - when (!/^[a-z][\w-]+$/) { - printf "

Invalid browser usage data request: %s", - 'identifier must be alphanumeric name or 0'; + when (!m{ \A [a-z]\w+ (?:/\d[\d-]*\d)? \z }x) { + Alert([ + 'Invalid browser usage data request', + 'Identifier must be alphanumeric name or 0.', + ]); } - $canihas = do "browser-usage-$_.inc.pl" or do { - printf "

Browser usage data not found: %s", $! || $@; + $canihas = do "data/browser/usage-$_.inc.pl" or do { + Alert('Browser usage data not found', $@ || $!); break; }; $usage = $_; @@ -159,6 +169,7 @@ if ($usage) { # first() does not work inside given >:( } else { # order browser columns by name grouped by engine + @{$_} = map { [$_] } @{$_} for values %versions; @browsers = sort { $caniuse->{agents}->{$b}->{prefix} cmp $caniuse->{agents}->{$a}->{prefix} @@ -199,7 +210,7 @@ say ''; my $header = join('', '', - 'feature', + 'feature', (map { my $name = $caniuse->{agents}->{$_}->{browser}; sprintf('%s', @@ -212,17 +223,16 @@ my $header = join('', $name, ), do { - length $name < 3 + @{ $versions{$_} }*2 ? $name + length $name <= (3 * @{ $versions{$_} }) ? $name : $caniuse->{agents}->{$_}->{abbr}; }, ) } @browsers), - '%', + '%', ); print '', $header; # preceding row without any colspan to work around gecko bug print "\n"; -print '' x 3; for my $browser (@browsers) { for (@{ $versions{$browser} }) { my $lastver = $_->[-1]; @@ -239,7 +249,6 @@ for my $browser (@browsers) { ); } } -print '' x 1; say ''; say '', $header; { @@ -252,22 +261,20 @@ say '', $header; } print "\n", ''; - print '' x 3; printf '%s', $familycount{$_}, $_ for @families; - print ''; } say ''; sub featurescore { # relative amount of support for given feature - state $statspts = { y=>1, 'y x'=>1, a=>.5, 'a x'=>.5, j=>.2, 'p j'=>.2, 'p p'=>.2, p=>.1 }; my $rank = 0; if (my $row = shift) { if ($canihas) { while (my ($browser, $versions) = each %$row) { ref $versions eq 'HASH' or next; - while (my ($version, $_) = each %$versions) { - $rank += ($canihas->{$browser}->{$version} || .001) * $statspts->{$_}; + while (my ($version, $status) = each %$versions) { + $status =~ s/\h\#\d+//g; + $rank += ($canihas->{$browser}->{$version} || .001) * $PSTATS{$status}; } } return $rank; @@ -285,12 +292,25 @@ sub featurescore { } splice @vers, -1, 0, @future; # move ahead to decrease precedence } - $rank += $statspts->{$_} * 2**($div--) for reverse @vers; + $rank += $PSTATS{$_} * 2**($div--) for reverse @vers; } } return $rank; } +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($_); + s{ ` ([^`]*) ` }{$1}gx; + s{ \[ ([^]]*) \] \( ([^)]*) \) }{$1}gx; + } + return @html; +} + sub saytitlecol { my ($id) = @_; my $row = $caniuse->{data}->{$id}; @@ -311,11 +331,15 @@ sub saytitlecol { ); } $row->{title}; print '

'; - s/\.?$/./, print "

$_

" for map { ref $_ ? @$_ : $_ || () } - Entity($row->{description}), - map { s/\s*\n/\n
/g; $_ } $row->{notes}; + print "

$_

" + for formatnotes($row->{description}, $row->{notes} || ()); + if (my %notes = %{ $row->{notes_by_num} }) { + say '

Browser-specific notes:'; + say "
#$_: ", formatnotes($notes{$_}) for sort keys %notes; + 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} @@ -367,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