common: bump version to 1.8
[sheet.git] / countries.plp
index 61a4795a688333b3b872e50153e36c929be43b70..734a13397728c089efd94b33612b727366340ba0 100644 (file)
@@ -2,11 +2,12 @@
 
 Html({
        title => 'country code cheat sheet',
 
 Html({
        title => 'country code cheat sheet',
-       version => 'v1.1',
+       version => '1.2',
        description =>
                "Table of ISO-3166-1 country codes with the names of reserved territories.",
        keywords => [qw'country code cc tld cctld continent territory land table'],
        stylesheet => [qw'light dark circus mono red'],
        description =>
                "Table of ISO-3166-1 country codes with the names of reserved territories.",
        keywords => [qw'country code cc tld cctld continent territory land table'],
        stylesheet => [qw'light dark circus mono red'],
+       data => ['countries.inc.pl'],
 });
 
 :>
 });
 
 :>
@@ -35,16 +36,24 @@ my $cc = do 'countries.inc.pl';
                        my ($name, $class, $short, $ref) = @$country;
                        $name .= " → $ref" if $ref;
                        $ref ||= $code;
                        my ($name, $class, $short, $ref) = @$country;
                        $name .= " → $ref" if $ref;
                        $ref ||= $code;
-                       local $_ = $ref;
+                       my $cell;
                        if (exists $get{show}) {
                        if (exists $get{show}) {
-                               my $img = "data/flag/$ref.png";
-                               $_ = sprintf '<img src="/%s" alt="%s">', $img, $ref if -e $img;
+                               sub showflag {
+                                       my ($cc) = @_;
+                                       my $img = "data/flag/$cc.png";
+                                       return -e $img &&
+                                               sprintf '<img src="/%s" alt="%s">', $img, $cc;
+                               }
+
+                               $cell = showflag($code) // join(' ',
+                                       map { showflag($_) || $_ } split / /, $ref
+                               );
                        }
                        else {
                        }
                        else {
-                               $_ = EscapeHTML($short || $name);
+                               $cell = EscapeHTML($short || $name);
                        }
                        printf "\n".'<td class="%s" title="%s">%s',
                        }
                        printf "\n".'<td class="%s" title="%s">%s',
-                               $_ ? 'X '.$class : '', EscapeHTML("$code: $name"), $_;
+                               $cell ? 'X '.$class : '', EscapeHTML("$code: $name"), $cell;
                }
                print "\n";
        }
                }
                print "\n";
        }