# HG changeset patch # User Mark Doliner # Date 1051075186 0 # Node ID f2cd55078be36c5ca988c04b0fca83d6bf98ae63 # Parent 0dc7e59bb809a30ef264140c8af06937e67b8c6c [gaim-migrate @ 5563] I'm going to get my hair cut tomorrow. I have a reason committer: Tailor Script diff -r 0dc7e59bb809 -r f2cd55078be3 NEWS --- a/NEWS Wed Apr 23 05:12:03 2003 +0000 +++ b/NEWS Wed Apr 23 05:19:46 2003 +0000 @@ -19,6 +19,9 @@ that. Didn't get a chance to write sorting code, work has been busy. Hopeefully it will happen for 0.63. + Mark: Gaim is coming along quite beautimously. I'm going to eat + my Pop-tarts now. + 0.61 (04/07/2003): Rob: Nathan commited his news first. However, I'm cooler so I'm putting my entry above his. Yeah, so, there were some DnD issues with 0.60. I diff -r 0dc7e59bb809 -r f2cd55078be3 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Wed Apr 23 05:12:03 2003 +0000 +++ b/src/protocols/oscar/oscar.c Wed Apr 23 05:19:46 2003 +0000 @@ -2904,7 +2904,6 @@ return 1; } -/* CCC */ static char *images(int flags) { static char buf[1024]; g_snprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s", @@ -3078,7 +3077,6 @@ } else { g_show_info_text(gc, info->sn, 0, header, - (utf8 && *utf8) ? _("Away Message:
") : NULL, (utf8 && *utf8) ? away_subs(utf8, gc->username) : NULL, (utf8 && *utf8) ? "
" : NULL, NULL); @@ -3092,8 +3090,7 @@ NULL); } else { g_show_info_text(gc, info->sn, 1, - (utf8 && *utf8) ? _("Profile:
") : _("No Information Provided"), - (utf8 && *utf8) ? away_subs(utf8, gc->username) : NULL, + (utf8 && *utf8) ? away_subs(utf8, gc->username) : _("No Information Provided"), NULL); } @@ -4792,7 +4789,7 @@ case 0x000c: { /* you are over the limit, the cheat is to the limit, come on fhqwhgads */ gchar *buf; buf = g_strdup_printf(_("Could not add the buddy %s because you have too many buddies in your buddy list. Please remove one and try again."), (retval->name ? retval->name : _("(no name)"))); - /* do_error_dialog(_("Unable To Add"), buf, GAIM_ERROR); */ + do_error_dialog(_("Unable To Add"), buf, GAIM_ERROR); g_free(buf); } @@ -4802,8 +4799,12 @@ } break; default: { /* La la la */ + gchar *buf; debug_printf("ssi: Action 0x%04hx was unsuccessful with error 0x%04hx\n", retval->action, retval->ack); - /* Should remove buddy from local list and give an error message? */ + buf = g_strdup_printf(_("Could not add the buddy %s for an unknown reason."), (retval->name ? retval->name : _("(no name)"))); + do_error_dialog(_("Unable To Add"), buf, GAIM_ERROR); + g_free(buf); + /* Should remove buddy from local list? */ } break; } @@ -5576,7 +5577,7 @@ #endif } } - + if (od->sess->ssi.received_data) { char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, who); if (gname && aim_ssi_waitingforauth(od->sess->ssi.local, gname, who)) {