X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/3f2e8ba4921b56a70b889858772731fb92ef9847..bb06ade4941ab8a981256d06b1d1a36a5564c690:/perl.plp diff --git a/perl.plp b/perl.plp index 9591ad7..b1ea1c7 100644 --- a/perl.plp +++ b/perl.plp @@ -2,7 +2,7 @@ Html({ title => 'perl version cheat sheet', - version => '1.1', + version => '1.4', keywords => [qw' perl version feature features comparison sheet cheat overview summary @@ -14,42 +14,85 @@ Html({ :>

Perl release summary

-

The most significant features introduced for recent versions of the Perl scripting language. -Depending on desired compatibility you'll want to support a minimum of -v5.8 or -v5.14. -

- +

The most significant features introduced for recent versions of the Perl +scripting language. <: -my $info = do 'perl.inc.pl' or die $@ // $!; +my $info = Data('perl'); + +use feature 'signatures'; +sub vname ($v) { + return sprintf 'v%d%03d', unpack 'C*', $v; +} +sub linkversion ($v) { + return showlink(sprintf('%vd', $v), '#'.vname($v)); +} + +eval { + use List::Util 'first'; + use Time::Piece; + use Time::Seconds; + + my $now = Time::Piece->new; + $now = $now->strptime($_, '%Y-%m-%d') for $get{at} // (); + + my $coreeol = ($now - ONE_YEAR * 3)->strftime('%F'); + my $vcore = first { $info->{$_}{release} ge $coreeol } sort keys %{$info}; + print "

Core security support is provided for 3 years"; + print ", so typical users should run at least ", linkversion($_) + for $vcore // (); + say '.'; + + my $vendoreol = ($now - ONE_YEAR * 5)->strftime('%F'); + my $vdebian = first { + $info->{$_}{release} ge $vendoreol && $info->{$_}{distro}{debian} + } sort keys %{$info}; + say sprintf "Stable distributions such as Debian %s maintain %s+.", + $info->{$_}{distro}{debian}, linkversion($_) for $vdebian // (); + + my $nowcmp = $now->strftime('%F'); + my $vdino = first { $info->{$_}{support} ge $nowcmp } sort keys %{$info}; + say "Enterprise platforms retain versions up to $_." + for map { linkversion($_) } $vdino // (); + return 1; +} or Alert('Missing version recommendations', $@); +say '

'; + for my $vernum (reverse sort keys %{$info}) { my $verrow = $info->{$vernum}; - $verrow->{unstable} and next unless exists $get{v}; + defined $verrow->{unstable} and next unless exists $get{v}; - print '
'."\n"; - printf '

%vd %s

'."\n", $vernum, $verrow->{release}; + say sprintf '
', vname($vernum); + say sprintf '

%vd %s

', $vernum, $verrow->{release}; + say '
'; for (@{ $verrow->{new} }) { - if (defined (my $experimental = $_->[2])) { - my $title = 'experimental'; - my $class = ' class="ex"'; - if (ref \$experimental eq 'VSTRING') { - my $dropped = $experimental =~ s/^\0// - and (exists $get{v} or next); - $title = sprintf('%s %vd', - $dropped ? 'removed in ' : "$title until", - $experimental, - ); - $experimental = $_->[3]; # optional additional class + my ($topic, $desc, $attr) = @{$_}; + if ($attr) { + my $title; + if (defined $attr->{experimental}) { + $title = 'experimental'; + } + if ($attr->{dropped}) { + next unless exists $get{v}; + $title = sprintf 'removed in %vd', $attr->{dropped}; + } + elsif ($attr->{stable}) { + $title .= sprintf ' until %vd', $attr->{stable}; + } + if ($attr->{experimental}) { + $title = sprintf '%s', + $attr->{experimental}, $title; } - if ($experimental) { - $class .= sprintf ' title="%s"', $experimental; + if ($attr->{feature}) { + my $prefix = sprintf 'feature', + $attr->{feature}; + $title = join ', ', $prefix, $title // (); } - $_->[1] .= qq{ ($title)}; + $desc .= sprintf ' (%s)', $title; } - printf '
%s
%s'."\n", @{$_}, '
' + say sprintf '
%s
%s', $topic, $desc || '
'; } - printf '
Unicode
v%s'."\n", $_ for $verrow->{unicode} || (); - print "
\n"; - print "
\n\n"; + say sprintf '
Unicode
v%s', $_ for $verrow->{unicode} || (); + say '
'; + say "
\n"; }