ab9aab583ee0549e68de3df80bb1f54b27aa64fa
[sheet.git] / digraphs.plp
1 <:
2 use utf8;
3 use strict;
4 use warnings;
5 use open IO => ':utf8';
6
7 our $VERSION = '1.0';
8
9 $header{content_type} = 'text/html; charset=utf-8';
10
11 :><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
12  "http://www.w3.org/TR/html4/loose.dtd">
13 <html>
14
15 <head>
16 <title>digraph cheat sheet</title>
17 <meta http-equiv="content-type" content="utf-8">
18 <link rel="stylesheet" type="text/css" media="all" href="digraphs.css">
19 </head>
20
21 <body>
22 <h1>RFC-1345 Digraphs</h1>
23
24 <:
25 my $di = do 'digraphs.inc.pl';
26
27 sub quote {
28         local $_ = shift;
29         s/"/&quot;/g;
30         s/</&lt;/g;
31         s/>/&gt;/g;
32         return $_;
33 }
34
35 my @chars = (
36         [qw{! " % ' ( ) * + , - . /}],
37         ['0'..'9'], [qw{: ; < = > ?}],
38         ['A'..'M'], ['N'..'Z'],
39         ['a'..'m'], ['n'..'z'],
40 );
41 my @chars2 = (@chars, ['_']);  # trailing character (extended set)
42
43 print '<table><col>';
44 print qq'<colgroup span="$_">' for map {scalar @$_} @chars2;
45 print "</colgroup><col>\n";
46 for my $section (qw{thead tfoot}) {
47         print "<$section><tr><th>&nbsp;";
48         print '<th>', quote($_) for map {@$_} @chars2;
49         print "<th>&nbsp;\n";
50 }
51 for my $c1group (@chars) {
52         print '<tbody>';
53         for my $c1 (@$c1group) {
54                 print '<tr><th>', quote($c1);
55                 for my $c2 (map {@$_} @chars2) {
56                         my $mnem = $c1 . $c2;
57                         if (not defined $di->{$mnem}) {
58                                 print '<td>';
59                                 next;
60                         }
61                         if (ref $di->{$mnem} ne 'ARRAY') {
62                                 printf '<td class="X Xr" title="%s">', quote($mnem);
63                                 next;
64                         }
65                         my ($codepoint, $name, $prop, $script, $string) = @{ $di->{$mnem} };
66
67                         my $glyph = $string || chr $codepoint;
68                         utf8::upgrade($glyph);  # prevent latin1 output
69                         my $desc = $mnem . ($name && " ($name)");
70                         my @class = ('X', grep {$_} $prop, $script);
71
72                         $glyph = quote($glyph);
73                         $glyph = "<span>$glyph</span>" if $prop eq 'Zs';
74
75                         printf "\n".'<td class="%s" title="%s">%s',
76                                 join(' ', @class), quote($desc), $glyph;
77                 }
78                 print "\n<th>", quote($c1), "\n";
79         }
80 }
81 print "</table>\n";
82 :>
83 <div id="legend">
84         <table><tr>
85         <td class="X Cc">control
86         <td class="X Zs"><span>spacing</span>
87         <td class="X Mn">modifier
88         <td class="X Sk">spacing modifier
89         <td class="X Pf">quote
90         <td class="X Po">punctuation
91         <td class="X So">symbol
92         <td class="X Sm">math
93         <td class="X Sc">currency
94         <td class="X No">numeric
95         <td class="X Greek">greek
96         <td class="X Cyrillic">cyrillic
97         <td class="X Latin">latin
98         <td class="X Hebrew">hebrew
99         <td class="X Arabic">arabic
100         <td class="X Hangul">korean
101         <td class="X Hiragana">japanese
102         <td class="X Bopomofo">chinese
103         </table>
104
105         <table><tr>
106         <td class="X">unicode
107         <td class="X Xl">latin1
108         <td class="X Xa">ascii
109         <td class="X Co">private
110         <td class="X Xz">proposed
111         </table>
112 </div>
113
114 <p id="footer">
115         <a href="http://vi.shiar.net/digraphs">vi.<strong>shiar.net</strong>/digraphs</a>
116         <a href="git://dev.shiar.net/vi-cheat"><:= "v$VERSION" :></a>
117         created by Shiar •
118         <a title="Licensed under the GNU Affero General Public License, version 3"
119            href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a> •
120         last update <:
121                 use Time::Format qw(time_format);
122                 print time_format('yyyy-mm-dd', (stat 'digraphs.inc.pl')[9]);
123         :>
124 </p>
125
126 </html>