view plugins/statenotify.c @ 5514:5664dbaf670c

[gaim-migrate @ 5913] This fixes a bug where the global proxy hostname would often not get read from the .gaimrc file correctly. It is described in http://sourceforge.net/tracker/index.php?func=detail&aid=743110&group_id=235&atid=100235 http://sourceforge.net/tracker/index.php?func=detail&aid=742985&group_id=235&atid=100235 The problem was that there was an extra new line at the end of the file, so gaimrc_parse_tag was unable to read in a new prefs section, and it would end up deciding that you were trying to read in the "proxy" section again because it used the same memory it used the previous time it was called, which meant that the buffer contained "proxy." I think I caused this with the following commit: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/gaim/gaim/src/gaimrc.c.diff?r1=1.160&r2=1.162 committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 25 May 2003 17:06:30 +0000
parents 3cd24f012091
children 1c55b1540e18
line wrap: on
line source

#include "gaim.h"

static void
write_status(struct gaim_connection *gc, char *who, const char *message)
{
	struct gaim_conversation *conv;
	struct buddy *b;
	char buf[256];

	conv = gaim_find_conversation_with_account(who, gc->account);

	if (conv == NULL)
		return;

	if ((b = gaim_find_buddy(gc->account, who)) != NULL)
		who = gaim_get_buddy_alias(b);

	g_snprintf(buf, sizeof(buf), "%s %s", who, message);

	gaim_conversation_write(conv, NULL, buf, -1, WFLAG_SYSTEM, time(NULL));
}

static void
buddy_away_cb(struct gaim_connection *gc, char *who, void *data)
{
	write_status(gc, who, "has gone away.");
}

static void
buddy_unaway_cb(struct gaim_connection *gc, char *who, void *data)
{
	write_status(gc, who, "is no longer away.");
}

static void
buddy_idle_cb(struct gaim_connection *gc, char *who, void *data)
{
	write_status(gc, who, "has become idle.");
}

static void
buddy_unidle_cb(struct gaim_connection *gc, char *who, void *data)
{
	write_status(gc, who, "is no longer idle.");
}

static gboolean
plugin_load(GaimPlugin *plugin)
{
	gaim_signal_connect(plugin, event_buddy_away,   buddy_away_cb,   NULL);
	gaim_signal_connect(plugin, event_buddy_back,   buddy_unaway_cb, NULL);
	gaim_signal_connect(plugin, event_buddy_idle,   buddy_idle_cb,   NULL);
	gaim_signal_connect(plugin, event_buddy_unidle, buddy_unidle_cb, NULL);

	return TRUE;
}

static GaimPluginInfo info =
{
	2,                                                /**< api_version    */
	GAIM_PLUGIN_STANDARD,                             /**< type           */
	NULL,                                             /**< ui_requirement */
	0,                                                /**< flags          */
	NULL,                                             /**< dependencies   */
	GAIM_PRIORITY_DEFAULT,                            /**< priority       */

	NULL,                                             /**< id             */
	N_("Buddy State Notification"),                   /**< name           */
	VERSION,                                          /**< version        */
	                                                  /**  summary        */
	N_("Notifies in a conversation window when a buddy goes or returns from "
	   "away or idle."),
	                                                  /**  description    */
	N_("Notifies in a conversation window when a buddy goes or returns from "
	   "away or idle."),
	"Christian Hammond <chipx86@gnupdate.org>",       /**< author         */
	WEBSITE,                                          /**< homepage       */

	plugin_load,                                      /**< load           */
	NULL,                                             /**< unload         */
	NULL,                                             /**< destroy        */

	NULL,                                             /**< ui_info        */
	NULL                                              /**< extra_info     */
};

static void
__init_plugin(GaimPlugin *plugin)
{
}

GAIM_INIT_PLUGIN(statenotify, __init_plugin, info);