tools/mkcharinfo: unicode age classes
[sheet.git] / Shiar_Sheet / FormatChar.pm
index f676ead1da9cb2a1f7951545f532a39bf513f86a..35f60765c7c394022482159c694629272b13fb2c 100644 (file)
@@ -1,5 +1,6 @@
 package Shiar_Sheet::FormatChar;
 
+use 5.010;
 use strict;
 use warnings;
 
@@ -70,7 +71,7 @@ sub cell {
                push @class, 'u-invalid';
                $cell = '';
        }
-       else {
+       else {{
                push @class, 'X';
 
                if ($input =~ s/^-//) {
@@ -79,6 +80,32 @@ sub cell {
 
                $input =~ s/^\\//;  # escaped char
                ($cell, $title, my $class, $mnem, $entity) = $self->glyphs_html($input);
+               my $codepoint = ord(substr $input, 0, 1);
+
+               if ($self->{style} eq 'univer') {
+                       if ($input =~ /\p{age=unassigned}/) {
+                               # check include for assignments after unicode 6.0 (perl v5.14)
+                               state $agemap = do 'unicode-age.inc.pl';
+                               my $version = $agemap->{$codepoint};
+                               push @class, $version ? 'l2' : 'l1';
+                       }
+                       elsif ($input =~ /^\p{in=1.1}*$/) {
+                               push @class, 'l5';  # first release 1993
+                       }
+                       elsif ($input =~ /^\p{in=3.0}*$/) {
+                               push @class, 'l4';  # 20th century
+                       }
+                       elsif ($input =~ /^\p{in=4.1}*$/) {
+                               push @class, 'l4';  # over 10 years ago
+                       }
+                       elsif ($input =~ /^\p{in=6.0}*$/) {
+                               push @class, 'l3';  # before 2012
+                       }
+                       else {
+                               push @class, 'l2';  # more recent
+                       }
+                       next;
+               }
 
                if ($self->{style} eq 'di') {
                        if ($class =~ /\bu-di\b/) {
@@ -94,7 +121,6 @@ sub cell {
                        }
                }
                else {
-                       my $codepoint = ord(substr $input, 0, 1);
                        if ($codepoint <= 0xFF) {
                                push @class, 'l3', 'u-lat1';  # latin1
                        }
@@ -109,7 +135,7 @@ sub cell {
                else {
                        push @class, 'l1'; # basic unicode
                }
-       }
+       }}
 
        my $anno = '';
        if ($cell ne '') {
@@ -182,7 +208,8 @@ sub table {
                        if ($cell =~ s/^>//) {
                                # header cell text follows
                                $cell =~ s/_/ /g;  # underscores may be used instead of whitespace (for qw//ability)
-                               $rows[-1] .= '<th>'.($cell || '&nbsp;');
+                               my $class = $cell =~ s/^-// && ' class="ex"';
+                               $rows[-1] .= "<th$class>".($cell || '&nbsp;');
                        }
                        next;
                }