X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/9bb91157b74f68b8345115f4665f3d5550b442e8..1f125d4bf3b2d11a1f1aae9f87562a150bebedf4:/browser.plp diff --git a/browser.plp b/browser.plp index 3dc8d80..4ed3f1b 100644 --- a/browser.plp +++ b/browser.plp @@ -8,7 +8,11 @@ Html({ version => 'v1.0', description => "caniuse.", - keywords => [qw'html css browser feature'], + keywords => [qw' + web browser support compatibility usage 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'], }); @@ -39,7 +43,6 @@ given ($get{usage} // 'wm') { :>.

-
<: my $caniuse = do 'browser-support.inc.pl' or die $! || $@; $_->{verrelease} = { @@ -59,6 +62,20 @@ my %CSTATS = ( 'p p' => 'l2', 'u' => 'l0', ); +my %DSTATS = ( + u => 'unknown', + n => 'unsupported', + p => 'plugin required', + j => 'javascript required', + a => 'partial', + y => 'supported', + x => sub { + join(' ', + 'requires prefix', + (map "-$_-", $caniuse->{agents}->{$_[0]}->{prefix} // ()), + ); + }, +); my %CSTATUS = ( unoff => 'l1', # unofficial wd => 'l3', # draft @@ -94,17 +111,20 @@ $canihas ||= { my $scorediv = (max(map { ref $_ eq 'HASH' && sum(values %$_) } values %$canihas) // 1) / 100; print ''; -print '' x 3; +print ''; # should match first thead row printf '', scalar @{ $versions{$_} } for @browsers; -print "\n"; +say ''; my $header = join('', '', '', $header; print "\n"; print '\n"; +say ''; +say '', $header, ''; sub featurescore { # relative amount of support for given feature - state $statspts = { y=>10, 'y x'=>10, a=>5, 'a x'=>5, j=>2, 'p j'=>2, p=>1 }; + state $statspts = { y=>10, 'y x'=>10, 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} * $statspts->{$_}; + $rank += ($canihas->{$browser}->{$version} || .001) * $statspts->{$_}; } } return $rank; @@ -172,7 +196,8 @@ sub saytitlecol { for ($row->{categories}) { my $cell = $_ ? lc $_->[0] : '-'; - print ''; for my $id (sort { featurescore($caniuse->{data}->{$b}->{stats}) <=> featurescore($caniuse->{data}->{$a}->{stats}) @@ -254,8 +285,18 @@ for my $id (sort { sayusagecol($id); say ''; } -print '', $header; -print '
feature', (map { my $name = $caniuse->{agents}->{$_}->{browser}; - sprintf('%s', + sprintf('%s', scalar @{ $versions{$_} }, + join(' ', map {"b-a-$_"} grep {$_} + $_, @{ $caniuse->{agents}->{$_} }{'prefix', 'type'}, + ), join(' ', sprintf('%.1f%%', sum(values %{ $canihas->{$_} })), $name, @@ -122,8 +142,11 @@ print '
' x 3; for my $browser (@browsers) { - printf('%s', - $canihas->{$browser}->{$_}, + printf('%s', + join(' ', + sprintf('%.1f%%', $canihas->{$browser}->{$_}), + "version $_", + ), (map { defined $_ && !$_ && ' class="ex"' } $caniuse->{agents}->{$browser}->{verrelease}->{$_}), @@ -131,18 +154,19 @@ for my $browser (@browsers) { ) for @{ $versions{$browser} }; } print '' x 1; -print "
', $cell; + $cell =~ s/ api$//; # trim unessential fluff in 'js api' + printf '%s', join(' + ', @$_), $cell; } print '', map { @@ -181,15 +206,15 @@ sub saytitlecol { sprintf("try { %s; return false } catch(err) { return true }", "document.getElementById('$id').classList.toggle('target')", ), - $_, + Entity($_), ); } $row->{title}; print '
'; s/\.?$/./, print "

$_

" for map { ref $_ ? @$_ : $_ || () } - $row->{description}, $row->{notes}; - printf 'Resources: %s.', join(', ', - map { qq($_->{title}) } @$_ - ) for grep { @$_ } $row->{links} // (); + Entity($row->{description}), formathtml($row->{notes}); # sic + printf 'Resources: %s.', join(', ', map { + sprintf '%s', EscapeHTML($_->{url}), $_->{title} + } @$_) for grep { @$_ } $row->{links} // (); print '
'; } @@ -214,7 +239,7 @@ sub saybrowsercols { unless (!defined $prev or ref $data eq 'HASH' && $data->{$prev} ~~ $data->{$ver}) { my $usage = sum(map { $canihas->{$browser}->{$_} } @span); - printf '
%s', + printf '%s', join(' ', X => $CSTATS{ ref $data eq 'HASH' && $data->{$prev} || 'u' }, !$usage ? ('p0') : ('p', @@ -224,7 +249,12 @@ sub saybrowsercols { sprintf('pp%02d', $usage / $scorediv), ), scalar @span, - $usage, + sprintf('%.1f%% %s', $usage, join(', ', + map { ref $_ eq 'CODE' ? $_->($browser) : $_ } + map { $DSTATS{$_} // () } + map { split / /, $_ } + ref $data eq 'HASH' && $data->{$prev} || 'u' + )), showversions(@span), undef $prev; @span = (); @@ -242,6 +272,7 @@ sub sayusagecol { print '', int featurescore($caniuse->{data}->{$id}->{stats}) / $maxscore * 100; } +say '
'; +say ''; +say ''; + +sub formathtml { + my $ref = defined wantarray ? [@_] : \@_; + for (@$ref) { + s/& (?!\w)/&/gx; + s/< \s/</gx; + s/\n\K\n/
/g; + } + return @$ref; +} sub paddedver { # normalised version number comparable as string (cmp) @@ -272,8 +313,7 @@ sub showversions { return join('‒', @span); } -:>
- +:>
@@ -313,6 +353,6 @@ sub showversions {
- - + +