Thu, 07 Jan 2010 23:47:00 +0000
*** Plucked rev d1026e37e4b82add833d2a302a41c8f84e4e2bbb (cc475d6ed3e62e0458659c41bb58ac72f63d88c9):
Fix a crash when disconnecting with a pending buddy icon fetch request.
We weren't canceling our asynchronous URL fetch
*** Plucked rev 03d1409613057bd402e5659d936f59a6d201a93e (cc475d6ed3e62e0458659c41bb58ac72f63d88c9):
Two changes:
1. If we're about to make another request to fetch an icon then cancel
the first one (if it exists)
2. When freeing a buddy, only attempt to cancel a url request if it is non-NULL
| 12737 | 1 | /** @page log-signals Log Signals |
| 2 | ||
| 3 | @signals | |
| 4 | @signal log-timestamp | |
| 5 | @endsignals | |
| 6 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
7 | @see log.h |
|
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
8 | |
| 12737 | 9 | <hr> |
| 10 | ||
| 11 | @signaldef log-timestamp | |
| 12 | @signalproto | |
|
21142
c2242c1fde7f
Document the show_date parameters to the log-timestamp and
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
13 | char *(*log_timestamp)(PurpleLog *log, time_t when, gboolean show_date); |
| 12737 | 14 | @endsignalproto |
| 15 | @signaldesc | |
| 16 | Emitted to allow plugins to customize the timestamp on a message | |
| 17 | being logged. | |
|
21142
c2242c1fde7f
Document the show_date parameters to the log-timestamp and
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
18 | @param log The log the message belongs to. |
|
c2242c1fde7f
Document the show_date parameters to the log-timestamp and
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
19 | @param when The time to be converted to a string. |
|
c2242c1fde7f
Document the show_date parameters to the log-timestamp and
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
20 | @param show_date Whether the date should be displayed. |
| 12737 | 21 | @return A textual representation of the time, or @c NULL to use a |
| 22 | default format. | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
14679
diff
changeset
|
23 | @note Plugins must be careful of logs with a type of PURPLE_LOG_SYSTEM. |
| 12737 | 24 | @endsignaldef |
| 25 | ||
| 26 | */ | |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
27 | // vim: syntax=c.doxygen tw=75 et |