index: release v1.18 with only altgr index linked
[sheet.git] / digraphs.plp
index 075a398ceb6bce8faf7b4424433e44a497f2557b..9f96c502b0ebd820116105b89adbd96f39e01543 100644 (file)
@@ -1,35 +1,40 @@
-<:
-use utf8;
-use strict;
-use warnings;
-use open IO => ':utf8';
+<(common.inc.plp)><:
 
-our $VERSION = '1.0';
+my $mode = $Request || 'vim';
+my $include = 'digraphs' . ($mode ne 'vim' && "-$mode");
+my $cmp = exists $get{cmp} ? ($get{cmp} // 1) : !!$Request;
 
-$header{content_type} = 'text/html; charset=utf-8';
+my $di = eval { Data($include) } || {};
+warn "error in $include: ", @{$@} if ref $@;
 
-:><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-<html>
+Html({
+       title => "$mode digraph cheat sheet",
+       version => '1.4',
+       description => $di->{description} // [
+               "Complete table of digraph characters from",
+               ($di->{title} // $mode) . ".",
+       ],
+       keywords => [@{ $di->{keywords} // [] }, qw'
+               digraph mnemonic compose composition pair
+               character char glyph table unicode vim
+       '],
+       stylesheet => [qw'light'],
+       data => ["data/$include.json"],
+});
 
-<head>
-<title>digraph cheat sheet</title>
-<meta http-equiv="content-type" content="utf-8">
-<link rel="stylesheet" type="text/css" media="all" href="digraphs.css">
-</head>
-
-<body>
-<h1>RFC-1345 Digraphs</h1>
+%{$di} or Abort(
+       "Requested digraphs <q>$mode</q> not available",
+       '404 request not found',
+);
 
-<:
-my $di = do 'digraphs.inc.pl';
+say "<h1>$di->{title} Digraphs</h1>";
+say "<p>$_</p>" for $di->{intro} // ();
 
-sub quote {
-       local $_ = shift;
-       s/"/&quot;/g;
-       s/</&lt;/g;
-       s/>/&gt;/g;
-       return $_;
+if (exists $get{v}) {
+       # show characters for inverted mnemonics (vim alternatives)
+       $di->{key}->{ substr($_, 1, 1) . substr($_, 0, 1) } ||= [
+               $di->{key}->{$_}->[0], '', 'l0 ex', '', $di->{key}->{$_}->[4]
+       ] for grep { ref $di->{key}->{$_} } keys %{ $di->{key} };
 }
 
 my @chars = (
@@ -38,53 +43,69 @@ my @chars = (
        ['A'..'M'], ['N'..'Z'],
        ['a'..'m'], ['n'..'z'],
 );
-my @chars2 = (@chars, ['_']);  # trailing character (extended set)
+my @chars2 = (['_'], @chars);  # trailing character (extended set)
+my @columns = !exists $get{split} ? \@chars2 :
+       ([@chars2[0, 1, 3, 4, 6]], [@chars2[2, 5, 7]]);
 
-print '<table><col>';
-print qq'<colgroup span="$_">' for map {scalar @$_} @chars2;
-print "\n";
+if ($mode eq 'xorg') {
+       #TODO determine character usage from declared keys
+       $chars2[0] = [qw( # ^ _ ` ~ )];
+       @chars = @chars2;
+}
+
+for my $colchars (@columns) {
+print '<table class="glyphs dimap"><col>';
+print qq'<colgroup span="$_">' for map {scalar @$_} @{$colchars};
+say '</colgroup><col>';
 for my $section (qw{thead tfoot}) {
-       print "<$section><tr><th>&nbsp;";
-       print "<th>$_" for map {@$_} @chars2;
+       print "<$section><tr><th>↳";
+       print '<th>', EscapeHTML($_) for map {@$_} @{$colchars};
+       say '<th>&nbsp;';
 }
 for my $c1group (@chars) {
        print '<tbody>';
        for my $c1 (@$c1group) {
-               print "<tr><th>$c1";
-               for my $c2 (map {@$_} @chars2) {
+               print '<tr><th>', EscapeHTML($c1);
+               for my $c2 (map {@$_} @$colchars) {
                        my $mnem = $c1 . $c2;
-                       if (not defined $di->{$mnem}) {
+                       if (not defined $di->{key}->{$mnem}) {
                                print '<td>';
                                next;
                        }
-                       if (ref $di->{$mnem} ne 'ARRAY') {
-                               printf '<td class="X Xr" title="%s">', quote($mnem);
+                       if (ref $di->{key}->{$mnem} ne 'ARRAY') {
+                               printf '<td class="X Xr" title="%s">', EscapeHTML($mnem);
                                next;
                        }
-                       my ($codepoint, $name, $prop, $script) = @{ $di->{$mnem} };
+                       my ($codepoint, $name, $support, $script, $string) =
+                               @{ $di->{key}->{$mnem} };
 
-                       my $glyph = chr $codepoint;
+                       my $glyph = $string || !!$codepoint && chr $codepoint;
                        utf8::upgrade($glyph);  # prevent latin1 output
                        my $desc = $mnem . ($name && " ($name)");
-                       my @class = ('X', grep {$_} $prop, $script);
+                       my @class = ('X', grep {$_} $script);
+                       push @class, $cmp ? $support :
+                               $di->{flagclass}->{$support} // "u-$support" if $support;
 
-                       $glyph = quote($glyph);
-                       $glyph = "<span>$glyph</span>" if $prop eq 'Zs';
+                       $glyph = EscapeHTML($glyph);
+                       $glyph = "<span>$glyph</span>" if $script =~ /\bZs\b/;
 
                        printf "\n".'<td class="%s" title="%s">%s',
-                               join(' ', @class), quote($desc), $glyph;
+                               join(' ', @class), EscapeHTML($desc), $glyph;
                }
-               print "\n<th>$c1\n";
+               say "\n<th>", EscapeHTML($c1);
        }
 }
-print "</table>\n";
+say '</table>';
+print '<hr>' if exists $get{split};
+}
+
 :>
-<div id="legend">
-       <table><tr>
+<div class="legend"><: unless ($cmp) { :>
+       <table class="glyphs"><tr>
        <td class="X Cc">control
-       <td class="X Zs"><span>spacing</span>
-       <td class="X Mn">modifier
-       <td class="X Sk">spacing modifier
+       <td class="X Zs"><span>space</span>
+       <td class="X Mn">combining
+       <td class="X Sk">spacing&nbsp;modifier
        <td class="X Pf">quote
        <td class="X Po">punctuation
        <td class="X So">symbol
@@ -96,29 +117,15 @@ print "</table>\n";
        <td class="X Latin">latin
        <td class="X Hebrew">hebrew
        <td class="X Arabic">arabic
+       <td class="X Hangul">korean
        <td class="X Hiragana">japanese
        <td class="X Bopomofo">chinese
        </table>
-
-       <table><tr>
-       <td class="X">unicode
-       <td class="X Xl">latin1
-       <td class="X Xa">ascii
-       <td class="X Co">private
-       <td class="X Xz">proposed
+<: } :>
+       <table class="glyphs"><tr><:
+       printf qq(\n\t<td class="X %s">%s), $cmp ? $_ : $di->{flagclass}{$_} // "u-$_", $di->{flag}->{$_}
+               for sort keys %{ $di->{flag} };
+:>
        </table>
 </div>
 
-<p id="footer">
-       <a href="http://vi.shiar.net/digraphs">vi.<strong>shiar.net</strong>/digraphs</a>
-       <a href="git://dev.shiar.net/vi-cheat"><:= "v$VERSION" :></a>
-       created by Shiar •
-       <a title="Licensed under the GNU Affero General Public License, version 3"
-          href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a> •
-       last update <:
-               use Time::Format qw(time_format);
-               print time_format('yyyy-mm-dd', (stat 'digraphs.inc.pl')[9]);
-       :>
-</p>
-
-</html>