comparison doc/ChangeLog.API @ 14354:01daacf7b771

[gaim-migrate @ 17060] Make gaim_url_fetch() cancelable and change Yahoo! to take advantage of the changes. Other stuff can be changed later, the important thing is that the API is there. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 27 Aug 2006 21:13:30 +0000
parents ba1fd54bb157
children c2fe0f54c389
comparison
equal deleted inserted replaced
14353:33dc9f22b528 14354:01daacf7b771
120 to a GaimProxyConnectInfo object which can be used to cancel 120 to a GaimProxyConnectInfo object which can be used to cancel
121 connection attempts using gaim_proxy_connect_cancel(). 121 connection attempts using gaim_proxy_connect_cancel().
122 * gaim_gethostbyname_async(): Renamed to gaim_dnsquery_a() and 122 * gaim_gethostbyname_async(): Renamed to gaim_dnsquery_a() and
123 changed to return a pointer to a data structure that can be 123 changed to return a pointer to a data structure that can be
124 used to cancel the pending DNS query using gaim_dnsquery_destroy() 124 used to cancel the pending DNS query using gaim_dnsquery_destroy()
125 * gaim_url_fetch(): Renamed to gaim_util_fetch_url() and changed
126 to return a pointer to a data structer that can be used to cancel
127 the pending HTTP request using gaim_util_fetch_url_cancel().
125 * gaim_gtk_create_imhtml(): Added sw_ret() parameter 128 * gaim_gtk_create_imhtml(): Added sw_ret() parameter
126 * gaim_account_get_log(): Added create parameter 129 * gaim_account_get_log(): Added create parameter
127 * GAIM_CMD_P_VERYHIGH is now GAIM_CMD_P_VERY_HIGH 130 * GAIM_CMD_P_VERYHIGH is now GAIM_CMD_P_VERY_HIGH
128 * gtk_imhtml_search_find(): Now wraps around to the top instead of 131 * gtk_imhtml_search_find(): Now wraps around to the top instead of
129 clearing the search at the end. 132 clearing the search at the end.
281 * gaim_marshal_POINTER__POINTER_POINTER 284 * gaim_marshal_POINTER__POINTER_POINTER
282 * gaim_utf8_ncr_encode() 285 * gaim_utf8_ncr_encode()
283 * gaim_gtk_log_init() 286 * gaim_gtk_log_init()
284 * gaim_gtk_log_get_handle() 287 * gaim_gtk_log_get_handle()
285 * gaim_gtk_log_uninit() 288 * gaim_gtk_log_uninit()
286 * gaim_url_fetch_request() 289 * gaim_util_fetch_url_request()
287 * GaimMenuAction 290 * GaimMenuAction
288 * gaim_menu_action_new() 291 * gaim_menu_action_new()
289 * gaim_menu_action_free() 292 * gaim_menu_action_free()
290 * GaimInfoFieldFormatCallback 293 * GaimInfoFieldFormatCallback
291 * gaim_utf8_strftime() 294 * gaim_utf8_strftime()
308 call to gaim_network_listen() or gaim_network_listen_range() 311 call to gaim_network_listen() or gaim_network_listen_range()
309 * gaim_proxy_connect_cancel(): Can be used to cancel a pending 312 * gaim_proxy_connect_cancel(): Can be used to cancel a pending
310 gaim_proxy_connect() request 313 gaim_proxy_connect() request
311 * gaim_dnsquery_destroy(): Can be used to cancel a pending DNS 314 * gaim_dnsquery_destroy(): Can be used to cancel a pending DNS
312 query. 315 query.
316 * gaim_util_fetch_url_cancel(): Can be used to cancel a pending
317 call to gaim_util_fetch_url() or gaim_util_fetch_url_request().
313 318
314 Signals - Changed: (See the Doxygen docs for details on all signals.) 319 Signals - Changed: (See the Doxygen docs for details on all signals.)
315 * Signal propagation now stops after a handler returns a non-NULL value. 320 * Signal propagation now stops after a handler returns a non-NULL value.
316 This value is now returned. Previously, all registered handlers were 321 This value is now returned. Previously, all registered handlers were
317 called and the value from the last handler was used. 322 called and the value from the last handler was used.