Mercurial > pidgin
annotate plugins/perl/scripts/account.pl @ 13545:cfc2f7fcb3dd
[gaim-migrate @ 15922]
Way more changes that I initially thought I was going to make. I apologize
for the commit message spam. These changes bring a lot of consistency to
our capitalization and punctuation, especially of words like "e-mail".
For reference, I've used these rules (after discussing in #gaim):
e-mail, a case of two words joined:
"e-mail" - in the middle of a sentence caps context
"E-mail" - start of text in a sentence caps context
"E-Mail" - in a header (title) caps context
re-enable, a single word, would be:
"re-enable", "Re-enable", and "Re-enable" (respectively)
The reason this changeset exploded is that, as I went through and verified
these changes, I realized we were using improper capitalization (e.g. header
instead of sentence) in a number of dialogs. I fixed a number of these
cases before, and this corrects another pile.
This looks like I've made a LOT of work for the translators, but the impact
is significantly mitigated by three factors: 1) Many of these changes use
strings that already exist, or change one string in many places. 2) I've
used sed to correct the .po files where possible. 3) The actual changes
are extremely trivial.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Tue, 21 Mar 2006 04:32:45 +0000 |
| parents | 6fd82071a7b8 |
| children |
| rev | line source |
|---|---|
| 11170 | 1 $MODULE_NAME = "Account Functions Test"; |
| 2 | |
| 3 use Gaim; | |
| 4 | |
| 5 # All the information Gaim gets about our nifty plugin | |
| 6 %PLUGIN_INFO = ( | |
| 7 perl_api_version => 2, | |
| 8 name => " Perl: $MODULE_NAME", | |
| 9 version => "0.1", | |
| 10 summary => "Test plugin for the Perl interpreter.", | |
| 12364 | 11 description => "Implements a set of test proccedures to ensure all " . |
| 12 "functions that work in the C API still work in the " . | |
| 13 "Perl plugin interface. As XSUBs are added, this " . | |
| 14 "*should* be updated to test the changes. " . | |
| 15 "Furthermore, this will function as the tutorial perl " . | |
| 16 "plugin.", | |
|
11457
4d9686e7c234
[gaim-migrate @ 13696]
Richard Laager <rlaager@wiktel.com>
parents:
11170
diff
changeset
|
17 author => "John H. Kelm <johnhkelm\@gmail.com>", |
| 11170 | 18 url => "http://sourceforge.net/users/johnhkelm/", |
| 19 | |
| 20 load => "plugin_load", | |
| 21 unload => "plugin_unload" | |
| 22 ); | |
| 23 | |
| 24 | |
| 25 # These names must already exist | |
| 26 my $GROUP = "UIUC Buddies"; | |
| 27 my $USERNAME = "johnhkelm2"; | |
| 28 | |
| 29 # We will create these on load then destroy them on unload | |
| 30 my $TEST_GROUP = "perlTestGroup"; | |
| 31 my $TEST_NAME = "perlTestName"; | |
| 32 my $TEST_ALIAS = "perlTestAlias"; | |
| 33 my $PROTOCOL_ID = "prpl-oscar"; | |
| 34 | |
| 35 | |
| 36 sub plugin_init { | |
| 37 return %PLUGIN_INFO; | |
| 38 } | |
| 39 | |
| 40 | |
| 41 # This is the sub defined in %PLUGIN_INFO to be called when the plugin is loaded | |
| 42 # Note: The plugin has a reference to itself on top of the argument stack. | |
| 43 sub plugin_load { | |
| 44 my $plugin = shift; | |
| 45 print "#" x 80 . "\n\n"; | |
| 46 Gaim::debug_info("plugin_load()", "Testing $MODULE_NAME Started."); | |
| 47 print "\n\n"; | |
| 48 | |
| 49 | |
| 50 ################################# | |
| 51 # # | |
| 52 # Gaim::Account::Option # | |
| 53 # # | |
| 54 ################################# | |
| 55 | |
| 12364 | 56 print "Testing: Gaim::Account::Option::new()...\n"; |
| 57 $acc_opt = Gaim::Account::Option->new(1, "TEXT", "pref_name"); | |
| 58 $acc_opt2 = Gaim::Account::Option->bool_new("TeXt", "MYprefName", 1); | |
| 11170 | 59 |
| 60 ################################# | |
| 61 # # | |
| 62 # Gaim::Account # | |
| 63 # # | |
| 64 ################################# | |
| 65 | |
| 66 | |
| 12364 | 67 print "Testing: Gaim::Account::new()... "; |
| 68 $account = Gaim::Account->new($TEST_NAME, $PROTOCOL_ID); | |
| 11170 | 69 if ($account) { print "ok.\n"; } else { print "fail.\n"; } |
| 70 | |
| 12364 | 71 print "Testing: Gaim::Accounts::add()..."; |
| 11170 | 72 Gaim::Accounts::add($account); |
| 12364 | 73 print "pending find...\n"; |
| 11170 | 74 |
| 75 print "Testing: Gaim::Accounts::find()..."; | |
| 76 $account = Gaim::Accounts::find($TEST_NAME, $PROTOCOL_ID); | |
| 77 if ($account) { print "ok.\n"; } else { print "fail.\n"; } | |
| 78 | |
| 12364 | 79 print "Testing: Gaim::Account::get_username()... "; |
| 80 $user_name = $account->get_username(); | |
| 81 if ($user_name) { | |
| 82 print "Success: $user_name.\n"; | |
| 83 } else { | |
| 84 print "Failed!\n"; | |
| 85 } | |
| 11170 | 86 |
| 12364 | 87 print "Testing: Gaim::Account::is_connected()... "; |
| 88 if ($account->is_connected()) { | |
| 89 print " Connected.\n"; | |
| 90 } else { | |
| 91 print " Disconnected.\n"; | |
| 92 } | |
| 11170 | 93 |
| 12364 | 94 print "Testing: Gaim::Accounts::get_active_status()... "; |
| 95 if ($account->get_active_status()) { | |
| 96 print "Okay.\n"; | |
| 97 } else { | |
| 98 print "Failed!\n"; | |
| 99 } | |
| 11170 | 100 |
| 101 $account = Gaim::Accounts::find($USERNAME, $PROTOCOL_ID); | |
| 102 print "Testing: Gaim::Accounts::connect()...pending...\n"; | |
| 103 | |
| 12364 | 104 $account->set_status("available", TRUE); |
| 105 $account->connect(); | |
| 11170 | 106 |
| 107 print "\n\n"; | |
| 108 Gaim::debug_info("plugin_load()", "Testing $MODULE_NAME Completed."); | |
| 109 print "\n\n" . "#" x 80 . "\n\n"; | |
| 110 } | |
| 111 | |
| 112 sub plugin_unload { | |
| 113 my $plugin = shift; | |
| 114 | |
| 115 print "#" x 80 . "\n\n"; | |
| 116 Gaim::debug_info("plugin_unload()", "Testing $MODULE_NAME Started."); | |
| 117 print "\n\n"; | |
| 118 | |
| 119 ######### TEST CODE HERE ########## | |
| 120 | |
| 121 print "\n\n"; | |
| 122 Gaim::debug_info("plugin_unload()", "Testing $MODULE_NAME Completed."); | |
| 123 print "\n\n" . "#" x 80 . "\n\n"; | |
| 124 } | |
| 125 |
