X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/49f032c3a1a5d2feb1215ff2f437ab3b82ca4beb..7ee7a878e0b44cd8306fb0ff35ddbcee216bd7d9:/browser.plp diff --git a/browser.plp b/browser.plp index 04599d0..d8ebf86 100644 --- a/browser.plp +++ b/browser.plp @@ -5,7 +5,7 @@ use List::Util qw(sum max first); Html({ title => 'browser compatibility cheat sheet', - version => 'v1.1', + version => 'v1.2', description => [ "Compatibility table of new web features (HTML5, CSS3, SVG, Javascript)", "comparing support and usage share for all popular browser versions.", @@ -61,6 +61,12 @@ my %DSTATS = ( ); }, ); +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, +); my %CSTATUS = ( unoff => 'l1', # unofficial wd => 'l2', # draft @@ -257,14 +263,13 @@ 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->{$_}; + $rank += ($canihas->{$browser}->{$version} || .001) * $PSTATS{$_}; } } return $rank; @@ -282,12 +287,24 @@ 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/\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}; @@ -308,9 +325,13 @@ 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} } @$_) for grep { @$_ } $row->{links} // ();