Mercurial > pidgin
annotate plugins/fortuneprofile.pl @ 8506:887c0259b47b
[gaim-migrate @ 9242]
" 6: Using CTRL+Up to get back a previous line breaks the
formatting on any new text entered on that line. Text,
while being entered appears extremely small, and when
it's sent, the formatting is slightly smaller and may
lose other elements of formatting.
the problem was that in the key_press_cb in gtkconv.c
was using
gtk_text_buffer_get_text(gtkconv->entry_buffer, ...);
this was not giving us the html tags. So I changed it
to gtk_imthml_get_markup(GTK_IMHTML(gtkconv->entry));
Then I added a signal so that the toolbar gets update
when gtk_imhtml_append_text_with_images is called so
that the toolbar can be updated as well.
I also rename the format_functions_update to
format_buttons_update since it, to me atleast, makes
more sense and because I couldn't think of a better
name than format_function_update, which would have been
very confusing.
theres one issue that I was not able to fix in this.
I'm planning on looking into it later, but after
ctrl-up/down the closing tag gets added and ends at the
last character from the buffer. Which means formatting
returns to normal (ie plain text) if you type after
you've used ctrl-up/down." --Gary Kramlich
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Fri, 26 Mar 2004 14:14:16 +0000 |
parents | 8b6c08c50b26 |
children | bc45ab9756b5 |
rev | line source |
---|---|
3706 | 1 # FORTUNE PROFILE |
2 # | |
3 # Sets your AIM profile to a fortune (with a header and footer of your | |
4 # choice). | |
5 # | |
6 | |
7 # By Sean Egan | |
8 # bj91704@binghamton.edu | |
9 # AIM: SeanEgn | |
10 # | |
11 # Updated by Nathan Conrad, 31 January 2002 | |
12 # Changes: | |
13 # * Fortunes have HTML tabs and newlines | |
14 # AIM: t98502 | |
15 # ICQ: 16106363 | |
16 # | |
17 # Updated by Mark Doliner, 15 October 2002 | |
18 # Changes: | |
19 # * Modified to work with the changed perl interface of gaim 0.60 | |
20 # * Fixed a bug where your info would be set to nothing if you had | |
21 # no pre and no post message | |
22 # AIM: lbdash | |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
23 # |
6899
6de3b775d5b1
[gaim-migrate @ 7446]
Christian Hammond <chipx86@chipx86.com>
parents:
6593
diff
changeset
|
24 # Updated by Christian Hammond, 20 August 2003 |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
25 # Changes: |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
26 # * Modified to work with the changed perl interface of gaim 0.68 |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
27 # AIM: ChipX86 |
3706 | 28 |
29 # Copyright (C) 2001 Sean Egan | |
30 | |
31 # This program is free software; you can redistribute it and/or modify | |
32 # it under the terms of the GNU General Public License as published by | |
33 # the Free Software Foundation; either version 2 of the License, or | |
34 # (at your option) any later version. | |
35 # | |
36 # This program is distributed in the hope that it will be useful, | |
37 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
38 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
39 # GNU General Public License for more details. | |
40 # | |
41 # You should have received a copy of the GNU General Public License | |
42 # along with this program; if not, write to the Free Software | |
43 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
44 | |
6529
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
45 use Gaim; |
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
46 |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
47 %PLUGIN_INFO = ( |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
48 perl_api_version => 2, |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
49 name => "Fortune Profile", |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
50 version => "3.4", |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
51 summary => "Sets your AIM profile to a fortune (with a header and footer of your choice).", |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
52 description => "Sets your AIM profile to a fortune (with a header and footer of your choice).", |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
53 author => "Sean Egan <bj91704\@binghamton.edu>", |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
54 url => "http://gaim.sf.net/", |
3706 | 55 |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
56 load => "plugin_load" |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
57 ); |
3706 | 58 |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
59 sub plugin_init { |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
60 return %PLUGIN_INFO; |
3706 | 61 } |
62 | |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
63 sub plugin_load { |
6529
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
64 $plugin = shift; |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
65 |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
66 $tab = " "; |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
67 $tab = $tab . $tab . $tab . $tab; |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
68 $nl = "<BR>"; |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
69 |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
70 $seconds = 30; # Delay before updating away messages. |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
71 $max = 1020; # Max length of an profile. It should be |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
72 # 1024, but I am being safe |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
73 $pre_message = ""; # This gets added before the fortune |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
74 |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
75 $post_message =""; |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
76 |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
77 $len = 0; |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
78 if ($pre_message ne "") { |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
79 $len += length( $pre_message . "---$nl" ); |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
80 } |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
81 if ($post_message ne "") { |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
82 $len += length("---$nl" . $post_message); |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
83 } |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
84 |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
85 # Command to get dynamic message from |
6529
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
86 $command = "fortune -sn " . ($max - $len); |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
87 |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
88 # output the first message and start the timers... |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
89 # This is done as a timeout to prevent attempts to set the |
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
90 # profile before logging in. |
6593
540edd51051b
[gaim-migrate @ 7117]
Christian Hammond <chipx86@chipx86.com>
parents:
6529
diff
changeset
|
91 Gaim::timeout_add($plugin, $seconds, \&update_away, 0); |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
92 } |
3706 | 93 |
94 sub update_away { | |
95 # The fortunes are expanded into HTML (the tabs and newlines) which | |
96 # causes the -s option of fortune to be a little bit meaningless. This | |
97 # will loop until it gets a fortune of a good size (after expansion). | |
6519
7f0fffa1077b
[gaim-migrate @ 7036]
Christian Hammond <chipx86@chipx86.com>
parents:
6125
diff
changeset
|
98 |
3706 | 99 do { |
100 do { #It's a while loop because it doesn't always work for some reason | |
101 $fortune = `$command`; | |
6125 | 102 if ($? == -1) { |
103 return; | |
104 } | |
3706 | 105 } while ($fortune eq ""); |
106 $fortune =~ s/\n/$nl/g; | |
107 $fortune =~ s/\t/$tab/g; | |
108 } while ((length($fortune) + $len ) > $max); | |
109 | |
110 $message = $fortune; | |
111 if ($pre_message ne "") { | |
112 $message = $pre_message . "---$nl" . $message; | |
113 } | |
114 if ($post_message ne "") { | |
115 $message = $message . "---$nl" . $post_message ; | |
116 } | |
117 | |
6529
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
118 foreach $account (Gaim::accounts()) { |
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
119 if ($account->is_connected()) { |
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
120 $account->set_user_info($message); |
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
121 } |
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
122 } |
e4e87ffd9f14
[gaim-migrate @ 7046]
Christian Hammond <chipx86@chipx86.com>
parents:
6519
diff
changeset
|
123 |
6593
540edd51051b
[gaim-migrate @ 7117]
Christian Hammond <chipx86@chipx86.com>
parents:
6529
diff
changeset
|
124 Gaim::timeout_add($plugin, $seconds, \&update_away, 0); |
3706 | 125 } |