comparison src/protocols/gg/gg.c @ 8442:3d0178c4f390

[gaim-migrate @ 9172] " This is that thing Sean told me to do. Well part of it. We now are careful to send html to gtkimhtml when sending a message, while still sending plain text to those protocols that need it. We send the fancy html on all the signals we emit though. Sean didn't say what to do about those. I figure always sending html on signals sounds good. I'm not sure I like how I did this exactly, especially with respect to whether it's the core or ui's job to make sure the html prpl flag gets honored. But it should be good enough for now. Anyway, this fixes the "sending someone <> on IRC/ICQ/MSN/etc shows up blank on my end!" problem. All prpls need to pass html to the core now, as Sean said in his email. I made msn, and gg comply. IRC was cool enough to already be complying. Jabber is so cool it actually takes html and isn't effected by this. ICQ, OSCAR, Trepia, zephyr, and napster still need to be fixed. (Note that it's not this patch that breaks them, they're already broken in CVS). I think TOC uses html and isn't effected. I'm not bothering with the old ICQ prpl. I'm not sure what's going on in trepia. I'm even less sure what's going on in zephyr. I didn't even check if napster used html or not. For OSCAR, I'm hoping I can get KingAnt to fix it. Normally I'd say, ICQ messages all need gaim_escape_html called on them. But what about receiving an ICQ messagefrom an AIM account, or vise versa?" -- marv yet again (00:48:48) LSchiere: marv: should i apply the patch sean asked for or should i wait for him to look at it? (00:49:17) marv: LSchiere: he talked like I should get it applied by someone not him (00:49:21) LSchiere: kay (00:49:29) marv: he said i knew the appropriate people to talk to (00:50:16) LSchiere: KingAnt: marv is making work for you committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 14 Mar 2004 05:42:56 +0000
parents 9d1a984681fe
children e3c059c3d92d
comparison
equal deleted inserted replaced
8441:ea999c4a9a11 8442:3d0178c4f390
1 /* 1 /*
2 * gaim - Gadu-Gadu Protocol Plugin 2 * gaim - Gadu-Gadu Protocol Plugin
3 * $Id: gg.c 8883 2004-01-25 22:15:42Z faceprint $ 3 * $Id: gg.c 9172 2004-03-14 05:42:56Z lschiere $
4 * 4 *
5 * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL> 5 * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL>
6 * 6 *
7 * This program is free software; you can redistribute it and/or modify 7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
302 handle_errcode(gc, e->event.failure); 302 handle_errcode(gc, e->event.failure);
303 break; 303 break;
304 case GG_EVENT_MSG: 304 case GG_EVENT_MSG:
305 { 305 {
306 gchar *imsg; 306 gchar *imsg;
307 gchar *jmsg;
307 gchar user[20]; 308 gchar user[20];
308 309
309 g_snprintf(user, sizeof(user), "%lu", e->event.msg.sender); 310 g_snprintf(user, sizeof(user), "%lu", e->event.msg.sender);
310 if (!allowed_uin(gc, user)) 311 if (!allowed_uin(gc, user))
311 break; 312 break;
312 imsg = charset_convert(e->event.msg.message, "CP1250", "UTF-8"); 313 imsg = charset_convert(e->event.msg.message, "CP1250", "UTF-8");
313 gaim_str_strip_cr(imsg); 314 gaim_str_strip_cr(imsg);
315 jmsg = gaim_escape_html(imsg);
314 /* e->event.msg.time - we don't know what this time is for */ 316 /* e->event.msg.time - we don't know what this time is for */
315 serv_got_im(gc, user, imsg, 0, time(NULL)); 317 serv_got_im(gc, user, jmsg, 0, time(NULL));
316 g_free(imsg); 318 g_free(imsg);
319 g_free(jmsg);
317 } 320 }
318 break; 321 break;
319 case GG_EVENT_NOTIFY: 322 case GG_EVENT_NOTIFY:
320 { 323 {
321 gchar user[20]; 324 gchar user[20];