comparison src/log.c @ 4687:283fb289c510

[gaim-migrate @ 4998] This is a new buddy list. Lots of things about it just Don't Work. I probably already know about those things, and you'd just be wasting my time in submitting a bug report about it. I decided that instead of getting it to all work perfectly before committing, that I'd get it in cvs, and slowly fix it with regular commits. That way, it's easier to keep track of things, and other developers can help. Plus, I'm getting pissed off at the buddy list and want it to die. It's kinda boring, and doing nothing but the buddy list for such a long time has just gotten me very bitter. After 0.60 is released later this week, Gaim will resume being fun. This week is going to be very stressful, though, I'm sure. Things you ought to know about this buddy list: - It crashes - It leaks - There's no way to edit the buddy list, or access offline buddies - Most of the menus and buttons and whatnot just plain ol' don't work. - Status icons are only implemented for AIM. That's mostly just because I'm lazy. As such, you may want to be wary of updating this. If you do decide to update this, you may want to learn "cvs update -D yesterday" as well :) All the art there is just placeholder art. You probably won't really have as many problems as it sounds like you will from reading this. This message is extra-negative to stress that I don't want to be bothered with complaints about something not working about it :). I'll repeat: If something doesn't work, I probably already know about it. If you want to actually help with something, I'd be delighted to have it. IM me. -s. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 10 Mar 2003 05:30:31 +0000
parents 42d53c416bb9
children 677d3cb193a1
comparison
equal deleted inserted replaced
4686:a1de8a9c99ba 4687:283fb289c510
326 case log_quit: 326 case log_quit:
327 g_snprintf(text, sizeof(text), _("+++ Program exit @ %s"), full_date()); 327 g_snprintf(text, sizeof(text), _("+++ Program exit @ %s"), full_date());
328 g_snprintf(html, sizeof(html), "<I><FONT COLOR=GRAY>%s</FONT></I>", text); 328 g_snprintf(html, sizeof(html), "<I><FONT COLOR=GRAY>%s</FONT></I>", text);
329 break; 329 break;
330 } 330 }
331 } else if (get_buddy_alias_only(who)) { 331 } else if (gaim_get_buddy_alias_only(who)) {
332 switch (what) { 332 switch (what) {
333 case log_signon: 333 case log_signon:
334 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) signed on @ %s"), 334 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) signed on @ %s"),
335 gc->username, gc->prpl->name, get_buddy_alias(who), who->name, full_date()); 335 gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date());
336 g_snprintf(html, sizeof(html), "<B>%s</B>", text); 336 g_snprintf(html, sizeof(html), "<B>%s</B>", text);
337 break; 337 break;
338 case log_signoff: 338 case log_signoff:
339 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) signed off @ %s"), 339 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) signed off @ %s"),
340 gc->username, gc->prpl->name, get_buddy_alias(who), who->name, full_date()); 340 gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date());
341 g_snprintf(html, sizeof(html), "<I><FONT COLOR=GRAY>%s</FONT></I>", text); 341 g_snprintf(html, sizeof(html), "<I><FONT COLOR=GRAY>%s</FONT></I>", text);
342 break; 342 break;
343 case log_away: 343 case log_away:
344 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) went away @ %s"), 344 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) went away @ %s"),
345 gc->username, gc->prpl->name, get_buddy_alias(who), who->name, full_date()); 345 gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date());
346 g_snprintf(html, sizeof(html), "<FONT COLOR=OLIVE>%s</FONT>", text); 346 g_snprintf(html, sizeof(html), "<FONT COLOR=OLIVE>%s</FONT>", text);
347 break; 347 break;
348 case log_back: 348 case log_back:
349 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) came back @ %s"), 349 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) came back @ %s"),
350 gc->username, gc->prpl->name, get_buddy_alias(who), who->name, full_date()); 350 gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date());
351 g_snprintf(html, sizeof(html), "%s", text); 351 g_snprintf(html, sizeof(html), "%s", text);
352 break; 352 break;
353 case log_idle: 353 case log_idle:
354 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) became idle @ %s"), 354 g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) became idle @ %s"),
355 gc->username, gc->prpl->name, get_buddy_alias(who), who->name, full_date()); 355 gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date());
356 g_snprintf(html, sizeof(html), "<FONT COLOR=GRAY>%s</FONT>", text); 356 g_snprintf(html, sizeof(html), "<FONT COLOR=GRAY>%s</FONT>", text);
357 break; 357 break;
358 case log_unidle: 358 case log_unidle:
359 g_snprintf(text, sizeof(text), 359 g_snprintf(text, sizeof(text),
360 _("%s (%s) reported that %s (%s) returned from idle @ %s"), gc->username, 360 _("%s (%s) reported that %s (%s) returned from idle @ %s"), gc->username,
361 gc->prpl->name, get_buddy_alias(who), who->name, full_date()); 361 gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date());
362 g_snprintf(html, sizeof(html), "%s", text); 362 g_snprintf(html, sizeof(html), "%s", text);
363 break; 363 break;
364 default: 364 default:
365 fclose(fd); 365 fclose(fd);
366 return; 366 return;