# HG changeset patch # User Richard Laager # Date 1176652052 0 # Node ID 787961f1007efc05455c75ebd5576ab65074776e # Parent caab13aa0b5cafd3f380b88321cd83dcc884ab0d Rename pidgin/plugins/gaiminc.c to pidgin/plugins/pidgininc.c diff -r caab13aa0b5c -r 787961f1007e pidgin/plugins/gaiminc.c --- a/pidgin/plugins/gaiminc.c Sun Apr 15 15:47:12 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,119 +0,0 @@ -#include "internal.h" -#include "plugin.h" - -#include "account.h" -#include "connection.h" -#include "conversation.h" -#include "version.h" - -/* include UI for pidgindialogs_about() */ -#include "gtkplugin.h" -#include "gtkdialogs.h" - -#define PURPLEINC_PLUGIN_ID "core-purpleinc" - -static void -echo_hi(PurpleConnection *gc) -{ - /* this doesn't do much, just lets you know who we are :) */ - pidgindialogs_about(); -} - -static gboolean -reverse(PurpleAccount *account, char **who, char **message, - PurpleConversation *conv, int *flags) -{ - /* this will drive you insane. whenever you receive a message, - * the text of the message (HTML and all) will be reversed. */ - int i, l; - char tmp; - - /* this check is necessary in case bad plugins do bad things */ - if (message == NULL || *message == NULL) - return FALSE; - - l = strlen(*message); - - if (!strcmp(*who, purple_account_get_username(account))) - return FALSE; - - for (i = 0; i < l/2; i++) { - tmp = (*message)[i]; - (*message)[i] = (*message)[l - i - 1]; - (*message)[l - i - 1] = tmp; - } - return FALSE; -} - -static void -bud(PurpleBuddy *who) -{ - PurpleAccount *acct = who->account; - PurpleConversation *conv = purple_conversation_new(PURPLE_CONV_TYPE_IM, acct, who->name); - - purple_conv_im_send(PURPLE_CONV_IM(conv), "Hello!"); -} - -/* - * EXPORTED FUNCTIONS - */ - -static gboolean -plugin_load(PurplePlugin *plugin) -{ - /* this is for doing something fun when we sign on */ - purple_signal_connect(purple_connections_get_handle(), "signed-on", - plugin, PURPLE_CALLBACK(echo_hi), NULL); - - /* this is for doing something fun when we get a message */ - purple_signal_connect(purple_conversations_get_handle(), "receiving-im-msg", - plugin, PURPLE_CALLBACK(reverse), NULL); - - /* this is for doing something fun when a buddy comes online */ - purple_signal_connect(purple_blist_get_handle(), "buddy-signed-on", - plugin, PURPLE_CALLBACK(bud), NULL); - - return TRUE; -} - -static PurplePluginInfo info = -{ - PURPLE_PLUGIN_MAGIC, - PURPLE_MAJOR_VERSION, - PURPLE_MINOR_VERSION, - PURPLE_PLUGIN_STANDARD, /**< type */ - NULL, /**< ui_requirement */ - 0, /**< flags */ - NULL, /**< dependencies */ - PURPLE_PRIORITY_DEFAULT, /**< priority */ - - PURPLEINC_PLUGIN_ID, /**< id */ - N_("Pidgin Demonstration Plugin"), /**< name */ - VERSION, /**< version */ - /** summary */ - N_("An example plugin that does stuff - see the description."), - /** description */ - N_("This is a really cool plugin that does a lot of stuff:\n" - "- It tells you who wrote the program when you log in\n" - "- It reverses all incoming text\n" - "- It sends a message to people on your list immediately" - " when they sign on"), - "Eric Warmenhoven ", /**< author */ - PURPLE_WEBSITE, /**< homepage */ - - plugin_load, /**< load */ - NULL, /**< unload */ - NULL, /**< destroy */ - - NULL, /**< ui_info */ - NULL, /**< extra_info */ - NULL, /**< prefs_info */ - NULL /**< actions */ -}; - -static void -init_plugin(PurplePlugin *plugin) -{ -} - -PURPLE_INIT_PLUGIN(purpleinc, init_plugin, info) diff -r caab13aa0b5c -r 787961f1007e pidgin/plugins/pidgininc.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/plugins/pidgininc.c Sun Apr 15 15:47:32 2007 +0000 @@ -0,0 +1,119 @@ +#include "internal.h" +#include "plugin.h" + +#include "account.h" +#include "connection.h" +#include "conversation.h" +#include "version.h" + +/* include UI for pidgindialogs_about() */ +#include "gtkplugin.h" +#include "gtkdialogs.h" + +#define PURPLEINC_PLUGIN_ID "core-purpleinc" + +static void +echo_hi(PurpleConnection *gc) +{ + /* this doesn't do much, just lets you know who we are :) */ + pidgindialogs_about(); +} + +static gboolean +reverse(PurpleAccount *account, char **who, char **message, + PurpleConversation *conv, int *flags) +{ + /* this will drive you insane. whenever you receive a message, + * the text of the message (HTML and all) will be reversed. */ + int i, l; + char tmp; + + /* this check is necessary in case bad plugins do bad things */ + if (message == NULL || *message == NULL) + return FALSE; + + l = strlen(*message); + + if (!strcmp(*who, purple_account_get_username(account))) + return FALSE; + + for (i = 0; i < l/2; i++) { + tmp = (*message)[i]; + (*message)[i] = (*message)[l - i - 1]; + (*message)[l - i - 1] = tmp; + } + return FALSE; +} + +static void +bud(PurpleBuddy *who) +{ + PurpleAccount *acct = who->account; + PurpleConversation *conv = purple_conversation_new(PURPLE_CONV_TYPE_IM, acct, who->name); + + purple_conv_im_send(PURPLE_CONV_IM(conv), "Hello!"); +} + +/* + * EXPORTED FUNCTIONS + */ + +static gboolean +plugin_load(PurplePlugin *plugin) +{ + /* this is for doing something fun when we sign on */ + purple_signal_connect(purple_connections_get_handle(), "signed-on", + plugin, PURPLE_CALLBACK(echo_hi), NULL); + + /* this is for doing something fun when we get a message */ + purple_signal_connect(purple_conversations_get_handle(), "receiving-im-msg", + plugin, PURPLE_CALLBACK(reverse), NULL); + + /* this is for doing something fun when a buddy comes online */ + purple_signal_connect(purple_blist_get_handle(), "buddy-signed-on", + plugin, PURPLE_CALLBACK(bud), NULL); + + return TRUE; +} + +static PurplePluginInfo info = +{ + PURPLE_PLUGIN_MAGIC, + PURPLE_MAJOR_VERSION, + PURPLE_MINOR_VERSION, + PURPLE_PLUGIN_STANDARD, /**< type */ + NULL, /**< ui_requirement */ + 0, /**< flags */ + NULL, /**< dependencies */ + PURPLE_PRIORITY_DEFAULT, /**< priority */ + + PURPLEINC_PLUGIN_ID, /**< id */ + N_("Pidgin Demonstration Plugin"), /**< name */ + VERSION, /**< version */ + /** summary */ + N_("An example plugin that does stuff - see the description."), + /** description */ + N_("This is a really cool plugin that does a lot of stuff:\n" + "- It tells you who wrote the program when you log in\n" + "- It reverses all incoming text\n" + "- It sends a message to people on your list immediately" + " when they sign on"), + "Eric Warmenhoven ", /**< author */ + PURPLE_WEBSITE, /**< homepage */ + + plugin_load, /**< load */ + NULL, /**< unload */ + NULL, /**< destroy */ + + NULL, /**< ui_info */ + NULL, /**< extra_info */ + NULL, /**< prefs_info */ + NULL /**< actions */ +}; + +static void +init_plugin(PurplePlugin *plugin) +{ +} + +PURPLE_INIT_PLUGIN(purpleinc, init_plugin, info) diff -r caab13aa0b5c -r 787961f1007e po/POTFILES.in --- a/po/POTFILES.in Sun Apr 15 15:47:12 2007 +0000 +++ b/po/POTFILES.in Sun Apr 15 15:47:32 2007 +0000 @@ -181,7 +181,6 @@ pidgin/plugins/contact_priority.c pidgin/plugins/convcolors.c pidgin/plugins/extplacement.c -pidgin/plugins/gaiminc.c pidgin/plugins/gestures/gestures.c pidgin/plugins/gevolution/add_buddy_dialog.c pidgin/plugins/gevolution/assoc-buddy.c @@ -196,6 +195,7 @@ pidgin/plugins/markerline.c pidgin/plugins/musicmessaging/musicmessaging.c pidgin/plugins/notify.c +pidgin/plugins/pidgininc.c pidgin/plugins/pidginrc.c pidgin/plugins/raw.c pidgin/plugins/relnot.c