Mercurial > pidgin
view plugins/test.pl @ 8561:2d4ccd94e298
[gaim-migrate @ 9305]
" In the irc tooltip, there's a line "Channel:". In 0.75,
this seems to have been merged with the "_Channel:" line.
In English, this works because underscores in the
tooltip are removed before being displayed. However, in
Chinese and Japanese, the translation of "_Channel:"
looks like "Channel (_C):" and this translated text
does not make any sense in the tooltip.
The tooltip thus should not use the "_Channel:" string.
Otherwise the tooltip output would look very strange in
certain locales (at least in Chinese and Japanese)." --Ambrose C. LI
who continues:
"This second patch should be better. It correctly undoes the
space character typically present before the left
parenthesis, and added some checks so that it should not
corrupt multibyte utf-8 characters.
However, this has not been tested a lot. UTF8 handling is
also not an area I am familiar with.
I don't know whether the C library has existing functions to
handle the utf8 things."
i'm assuming we have time to test this before 0.77
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Fri, 02 Apr 2004 06:18:14 +0000 |
| parents | b1ea29d1293e |
| children |
line wrap: on
line source
#!/usr/bin/perl -w use Gaim; %PLUGIN_INFO = ( perl_api_version => 2, name => 'Test Perl Plugin', version => '1.0', summary => 'Provides as a test base for the perl plugin.', description => 'Provides as a test base for the perl plugin.', author => 'Christian Hammond <chipx86@gnupdate.org>', url => 'http://gaim.sf.net/', load => "plugin_load", unload => "plugin_unload" ); sub account_away_cb { Gaim::debug_info("perl test plugin", "In account_away_cb\n"); my ($account, $state, $message, $data) = @_; Gaim::debug_info("perl test plugin", "Account " . $account->get_username() . " went away.\n"); Gaim::debug_info("perl test plugin", $data . "\n"); } sub plugin_init { return %PLUGIN_INFO; } sub plugin_load { Gaim::debug_info("perl test plugin", "plugin_load\n"); my $plugin = shift; Gaim::debug_info("perl test plugin", "Listing accounts.\n"); foreach $account (Gaim::accounts()) { Gaim::debug_info("perl test plugin", $account->get_username() . "\n"); } Gaim::debug_info("perl test plugin", "Listing buddy list.\n"); foreach $group (Gaim::BuddyList::groups()) { Gaim::debug_info("perl test plugin", $group->get_name() . ":\n"); foreach $buddy ($group->buddies()) { Gaim::debug_info("perl test plugin", " " . $buddy->get_name() . "\n"); } } Gaim::signal_connect(Gaim::Accounts::handle, "account-away", $plugin, \&account_away_cb, "test"); } sub plugin_unload { my $plugin = shift; }
