X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/505b0c19b7143621bcd1f72fb5f07801557d5a2a..03abf85a7ec9775993766a3fd10cd2876aef0b42:/perl.plp diff --git a/perl.plp b/perl.plp index 4c90687..a5ef991 100644 --- a/perl.plp +++ b/perl.plp @@ -2,7 +2,7 @@ Html({ title => 'perl version cheat sheet', - version => 'v1.1', + version => '1.2', keywords => [qw' perl version feature features comparison sheet cheat overview summary @@ -16,38 +16,46 @@ Html({

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. +v5.8 or +v5.14.

<: my $info = do 'perl.inc.pl' or die $@ // $!; 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 '
'; + say sprintf '

%vd %s

', $vernum, $verrow->{release}; for (@{ $verrow->{new} }) { - if (defined (my $experimental = $_->[2])) { - my $title = 'experimental'; - my $class = ' class="ex"'; - if (ref \$experimental eq 'VSTRING') { - $title = sprintf('%s %vd', - $experimental =~ s/^\0// ? '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 ($experimental) { - $class .= sprintf ' title="%s"', $experimental; + if ($attr->{dropped}) { + next unless exists $get{v}; + $title = sprintf 'removed in %vd', $attr->{dropped}; } - $_->[1] .= qq{ ($title)}; + elsif ($attr->{stable}) { + $title .= sprintf ' until %vd', $attr->{stable}; + } + if ($attr->{experimental}) { + $title = sprintf '%s', + $attr->{experimental}, $title; + } + if ($attr->{feature}) { + $title = sprintf('feature', $attr->{feature}) + . (defined $title && ", $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"; }