mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-30 05:02:26 -05:00
Update our emoji implementation to support docomo, softbank and kddi
(with the exception of 3 kddi glyphs that overlap with softbank). As of this commit, emoji sent by iPhone users are visible in K-9
This commit is contained in:
parent
d123aa2a39
commit
a0238904b6
File diff suppressed because it is too large
Load Diff
@ -1,14 +1,30 @@
|
|||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
my $emoji = do 'Emoticon.pl';
|
my $emoji = do 'Emoticon.pl';
|
||||||
use YAML;
|
use YAML;
|
||||||
|
|
||||||
|
my %codepoints;
|
||||||
|
|
||||||
for my $carrier qw(docomo softbank kddi) {
|
for my $carrier qw(docomo softbank kddi) {
|
||||||
|
|
||||||
print "\t\t// Emoji for $carrier\n";
|
|
||||||
|
|
||||||
for $codepoint (keys %{$emoji->{$carrier}}) {
|
print " // These emoji codepoints are generated by tools/make_emoji in the K-9 source tree\n";
|
||||||
print "\t\tcase 0x$codepoint: \n";
|
print " // The spaces between the < and the img are a hack to avoid triggering \n";
|
||||||
print "\t\t\t".'buf.append("<img src=\"file:///android_asset/emoticons/'.$emoji->{$carrier}->{$codepoint}.'.gif\" alt=\"'.$emoji->{$carrier}->{$codepoint}.'\">'.");\n\t\t\tbreak;\n";
|
print " // K-9's 'load images' button\n\n";
|
||||||
|
for my $codepoint (keys %{$emoji->{$carrier}}) {
|
||||||
|
|
||||||
|
if (defined $codepoints{$codepoint}) {
|
||||||
|
print " // Skipping $carrier codepoint $codepoint ".$emoji->{$carrier}->{$codepoint}."\n";
|
||||||
|
print " // It conflicts with an earlier definition from another carrier:\n";
|
||||||
|
print " // ".$codepoints{$codepoint}."\n\n";
|
||||||
|
next;
|
||||||
|
} else {
|
||||||
|
$codepoints{$codepoint} = "$carrier ".$emoji->{$carrier}->{$codepoint};
|
||||||
|
}
|
||||||
|
|
||||||
|
print " case 0x$codepoint: //$carrier ".$emoji->{$carrier}->{$codepoint}."\n";
|
||||||
|
print " ".'buff.append("< img src=\"file:///android_asset/emoticons/'.$emoji->{$carrier}->{$codepoint}.'.gif\" alt=\"'.$emoji->{$carrier}->{$codepoint}.'\" />'."\");\n";
|
||||||
|
print " break;\n";
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user