bash: keyboard page for bash shell defaults
[sheet.git] / unicode.plp
1 <:
2 use utf8;
3 use strict;
4 use warnings;
5 no  warnings 'qw';  # that's not a comment, it's a NUMBER SIGN
6 use open IO => ':utf8';
7
8 our $VERSION = '1.0';
9
10 $header{content_type} = 'text/html; charset=utf-8';
11
12 :><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
13  "http://www.w3.org/TR/html4/loose.dtd">
14 <html>
15
16 <head>
17 <title>digraph cheat sheet</title>
18 <meta http-equiv="content-type" content="utf-8">
19 <link rel="stylesheet" type="text/css" media="all" href="/base.css"><:
20         my %styles = map {$_ => $_} qw(dark circus mono red terse);
21         our $style = exists $get{style} && $styles{$get{style}} || 'light';
22         printf(qq{\n<link rel="%s" type="text/css" media="all" href="%s" title="%s">},
23                 $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_
24         ) for keys %styles;
25 :>
26 </head>
27
28 <body id="unicode">
29 <h1>Common uncommon Unicode</h1>
30
31 <p>i^k in <a href="/">Vim</a>.
32 Also see the <a href="/digraphs">complete digraphs table</a>.</p>
33
34 <div class="diinfo">
35
36 <:
37 my $diinfo = do 'digraphs.inc.pl';
38 my %di = map { $diinfo->{$_}->[0] => $_ } grep { ref $diinfo->{$_} }
39         keys %$diinfo;
40
41 sub quote {
42         local $_ = shift;
43         s/"/&quot;/g;
44         s/</&lt;/g;
45         s/>/&gt;/g;
46         return $_;
47 }
48
49 sub glyph_table {
50         my ($digraphs) = @_;
51
52         my @rows;
53
54         my @colheads;
55         while ($digraphs->[0] !~ /^\./) {
56                 my $cell = shift @$digraphs or last;
57                 push @colheads, sprintf(
58                         '<%s%s>%s',
59                         $cell =~ s/^-// ? 'td' : 'th',
60                         $cell =~ s/:(.*)// ? qq{ title="$1"} : '',
61                         $cell eq '_' ? '&nbsp;' : $cell
62                 );
63         }
64         push @rows, sprintf '<thead><tr>%s<tbody>', join '', @colheads if @colheads;
65
66         my $colspan = 1;
67         for my $cell (@$digraphs) {
68                 if ($cell =~ s/^\.//) {
69                         # dot indicates start of a new row
70                         push @rows, '';
71                         if ($cell =~ s/^>//) {
72                                 # header cell text follows
73                                 $cell =~ s/_/ /g;  # underscores may be used instead of whitespace (for qw//ability)
74                                 $rows[-1] .= '<th>'.($cell || '&nbsp;');
75                         }
76                         next;
77                 }
78                 elsif ($cell eq '>') {
79                         # merge this cell to the next column
80                         $colspan++;
81                         next;
82                 }
83
84                 my $code = join '', map { $di{ord $_} || '' } split //, $cell;
85                 my $name = $diinfo->{$code}->[1];
86
87                 # determine display class
88                 my @class;
89                 if ($cell eq '-') {
90                         $cell = '';
91                 }
92                 elsif ($cell eq '=') {
93                         push @class, 'di-invalid';
94                         $cell = '';
95                 }
96                 else {
97                         if ($cell =~ s/^-//) {
98                                 push @class, 'di-rare'; # discouraged
99                         }
100
101                         if ($code) {
102                                 push @class, 'di-d'; # digraph
103                                 push @class, 'di-prop' # unofficial
104                                         if $diinfo->{$code}->[2] =~ /\bXz\b/;
105                         }
106
107                         if ($cell =~ /[ -~]/) {
108                                 push @class, 'di-a'; # ascii
109                         }
110                         else {
111                                 push @class, 'di-b'; # basic unicode
112                         }
113                 }
114
115                 # add cell html
116                 $rows[-1] .= sprintf('<td%s%s%s>%s%s',
117                         defined $name  ? qq{ title="$name"}  : '',
118                         @class ? sprintf(' class="%s"', join ' ', @class) : '',
119                         $colspan > 1 && qq{ colspan="$colspan"},
120                         $cell eq '' ? '&nbsp;' : quote($cell),
121                         $code ne '' ? sprintf(' <small class="digraph">%s</small>', quote($code))
122                                 : length($cell) == 1 && $cell !~ /[a-z]/
123                                         ? sprintf(' <small class="%s">%04X</small>', 'value', ord $cell)
124                                         : '',
125                 );
126
127                 $colspan = 1;
128         }
129
130         return sprintf qq{<table class="glyphs dilabel">\n%s</table>\n},
131                 join '', map {"<tr>$_\n"} @rows;
132 }
133
134 sub print_glyph_tables {
135         while (@_) {
136                 printf "<div><h2>%s</h2>\n\n", shift;
137                 while (ref $_[0] and $_ = shift) {
138                         print glyph_table($_);
139                 }
140                 print '</div>';
141         }
142 }
143
144 print_glyph_tables(
145         'Popular',
146         [qw{. « » . ‹ › . ‘ ’ . “ ” . „ ‚ . ‟ ‛}],
147         [qw{. † ‡ • . § ¶ # . © ® ™ . ° ′ ″ . − × ÷ . ± ² √}],
148         [qw{. å ä ö ü ß . Å æ ø ű ſ}],
149         [qw{. ¿ ç ñ é ê è}],
150
151         'Arrows',
152         [qw{. ↖ ↑ ↗ ↔ . ← - → ↕ . ↙ ↓ ↘ -}],
153         [qw{. ⇖ ⇑ ⇗ ⇔ . ⇐ - ⇒ ⇕ . ⇙ ⇓ ⇘ -}],
154         [qw{. ◤ ▲ ◥   . ◀ ◆ ▶   . ◣ ▼ ◢  }],
155         [qw{. ◸ △ ◹   . ◁ ◇ ▷   . ◺ ▽ ◿  }],
156
157         'Line drawing',
158         [qw{. ┌ ┬ ┐ . ├ ┼ ┤ . └ ┴ ┘}],
159         [qw{. ┏ ┳ ┓ . ┣ ╋ ┫ . ┗ ┻ ┛}],
160         [qw{. ┍ ┯ ┑ . ┝ ┿ ┥ . ┕ ┷ ┙}],
161         [qw{. ┎ ┰ ┒ . ┠ ╂ ┨ . ┖ ┸ ┚}],
162         [qw{
163                 . ╴ ─ ╌ ┄ ┈ ╶ ╾
164                 . ╸ ━ ╍ ┅ ┉ ╺ ╼
165                 . ╵ │ ╎ ┆ ┊ ╷ ╿
166                 . ╹ ┃ ╏ ┇ ┋ ╻ ╽
167         }],
168         [qw{. ╱ ╳ ╲ }],
169         [qw{. ╔ ╦ ╗ ═ . ╠ ╬ ╣ ║ . ╚ ╩ ╝ - }],
170         [qw{. ╒ ╤ ╕ . ╞ ╪ ╡ . ╘ ╧ ╛ }],
171         [qw{. ╓ ╥ ╖ . ╟ ╫ ╢ . ╙ ╨ ╜ }],
172
173         'Blocks',
174         [qw{. ▘ ▀ ▝ . ▌ █ ▐ . ▖ ▄ ▗ }],
175         [qw{. ░ . ▒ . ▓ }],
176         [qw{. ▛ ▚ ▟ . ▙ ▞ ▜ }],
177         [qw{. ▁ ▂ ▃ ▄ ▅ ▆ ▇ ▔ . ▏ ▎ ▍ ▌ ▋ ▊ ▉ ▕ }],
178         [qw{. □ ▣ ■ . ▤ ▦ ▥ . ▧ ▩ ▨}],
179
180         'Signs',
181         [qw{. ¤ ¢ ₥ € £ ₨ $ ¥ . ₫ ₭ ₦ ₱ ₧ ₮ ₩ ₪}],
182         [qw{. ♠ ♡ ♢ ♣ . ♤ ♥ ♦ ♧}],
183         [qw{. ☉ ☿ ♀ ♁ ♂ ♃ ♄ ♅ ♆ ♇}],  # solar
184         [qw{. ♈ ♉ ♊ ♋ ♌ ♍ ♎ ♏ ♐ ♑ ♒ ♓}],  # zodiac
185
186         'IPA',
187         [qw{
188                 - BiL:Bilabial LD:Labiodental D:Dental Alv:Alveolar PA:Postalveolar
189                   Rf:Retroflex Pal:Palatal Vel:Velar Uv:Uvular Ph:Pharyngeal
190                   EG:Epiglottal Gl:Glottal
191                 .>Plosive                   p  -ȹ >  >  t  ʈ  c  k  q  =  ʡ  ʔ
192                 .>Voiced_Plosive            b  -ȸ >  >  d  ɖ  ɟ  ɡ  ɢ  =  -  =
193                 .>Nasal                     m  ɱ  >  >  n  ɳ  ɲ  ŋ  ɴ  =  =  =
194                 .>Trill                     ʙ  -  >  >  r  -  -  =  ʀ  =  -я =
195                 .>Tap/flap                  -  ⱱ  >  >  ɾ  ɽ  -  =  ɢ̆  =  -  =
196                 .>Fricative                 ɸ  f  θ  s  ʃ  ʂ  ç  x  χ  ħ  ʜ  h
197                 .>Voiced_fricative          β  v  ð  z  ʒ  ʐ  ʝ  ɣ  ʁ  ʕ  ʢ  ɦ
198                 .>Lateral_fricative         =  =  >  >  ɬ  -  -  -  -  =  =  =
199                 .>Voiced_lateral_fricative  =  =  >  >  ɮ  -  -  -  -  =  =  =
200                 .>Approximant               -  ʋ  >  >  ɹ  ɻ  j  ɰ  -  -  -  =
201                 .>Lateral_approximant       =  =  >  >  l  ɭ  ʎ  ʟ  -  =  =  =
202                 .>Click                     ʘ  -  ǀ  ǁ  ǃ  -‼ ǂ  -  -  =  =  =
203                 .>Implosive                 ɓ  ɗ̪  >  >  ɗ  -ᶑ ʄ  ɠ  ʛ  =  =  =
204         }],
205         [qw{
206                 co . ɕ . ʑ . ɧ . ɥ . ʍ . w
207         }],
208         [(
209                 '-',
210                 map { substr($_, 0, 1).':'.$_, substr($_, 0, 1)." r:$_ rounded" }
211                 qw{Front Central Back}
212         ), qw{
213                 .>Close      i y  ɨ ʉ  ɯ u
214                 .>Near-close ɪ ʏ  - -  - ʊ
215                 .>Close-mid  e ø  ɘ ɵ  ɤ o
216                 .>Mid        - -  ə -  - -
217                 .>Open-mid   ɛ œ  ɜ ɞ  ʌ ɔ
218                 .>Near-open  æ -  ɐ -  - -
219                 .>Open       a ɶ  - -  ɑ ɒ
220         }],
221
222         'Alphabetics',
223         [qw{
224                 .>Latin    a ī ı ę ô ɳ ŋ ṡ š đ ð Ʒ
225                 .>Cyrillic а і й э ё н њ ш щ ч ь Я
226                 .>Greek    α ί ϊ η ϋ π ψ σ ς θ ξ Ω
227                 .>Hebrew   א ײ י ע ו נ ן ס ש ט צ ץ
228         }],
229
230         'Japanese',
231         [qw{
232                   - A  I  U  E  O  _
233                 .>  あ い う え お =
234                 .>K か き く け こ =
235                 .>S さ し す せ そ =
236                 .>T た ち つ て と =
237                 .>N な に ぬ ね の ん
238                 .>H は ひ ふ へ ほ =
239                 .>M ま み む め も =
240                 .>Y や =  ゆ =  よ =
241                 .>R ら り る れ ろ =
242                 .>W わ -ゐ = -ゑ を =
243         }],
244         [qw{
245                   - A  I  U  E  O
246                 .>G が ぎ ぐ げ ご
247                 .>Z ざ じ ず ぜ ぞ
248                 .>D だ ぢ づ で ど
249                 .>B ば び ぶ べ ぼ
250                 .>P ぱ ぴ ぷ ぺ ぽ
251         }],
252         [qw{
253                   - A  I  U  E  O  _
254                 .>  ア イ ウ エ オ ー
255                 .>K カ キ ク ケ コ =
256                 .>S サ シ ス セ ソ =
257                 .>T タ チ ツ テ ト =
258                 .>N ナ ニ ヌ ネ ノ ン
259                 .>H ハ ヒ フ ヘ ホ =
260                 .>M マ ミ ム メ モ =
261                 .>Y ヤ -  ユ -  ヨ =
262                 .>R ラ リ ル レ ロ =
263                 .>W ワ ヰ -  ヱ ヲ =
264         }],
265         [qw{
266                   - A  I  U  E  O
267                 .>G ガ ギ グ ゲ ゴ
268                 .>Z ザ ジ ズ ゼ ゾ
269                 .>D ダ ヂ ヅ デ ド
270                 .>B バ ビ ブ ベ ボ
271                 .>P パ ピ プ ペ ポ
272                 .>V ヷ ヸ ヴ ヹ ヺ
273         }],
274 );
275
276 :></div>
277
278 <div class="legend">
279         <table class="glyphs"><tr>
280         <td class="X di-a">ascii
281         <td class="X di-d">digraph
282         <td class="X di-prop">proposed
283         <td class="X di-b">other unicode
284         <td class="X di-rare">discouraged
285         </table>
286 </div>
287
288 <p class="footer">
289         <a href="http://sheet.shiar.nl/" rel="home">sheet.shiar.nl</a>/unicode
290         <a href="git://dev.shiar.nl/sheet" rel="vcs-git" title="Git repository"><:= "v$VERSION" :></a>
291         created by <a href="http://shiar.nl/" rel="author">Shiar</a> •
292         <a title="Licensed under the GNU Affero General Public License, version 3" rel="copyright"
293            href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a> •
294         last update <:
295                 use Time::Format qw(time_format);
296                 print time_format('yyyy-mm-dd', (stat $ENV{SCRIPT_FILENAME})[9]);
297         :>
298 </p>
299
300 </html>