Mercurial > pidgin.yaz
changeset 17923:d87916bd1d73
Fix email address.
author | Jeffrey Connelly <jaconnel@calpoly.edu> |
---|---|
date | Tue, 03 Jul 2007 03:19:16 +0000 |
parents | 608e4b47dfae |
children | 5e8c02259c81 |
files | libpurple/protocols/myspace/CHANGES libpurple/protocols/myspace/ChangeLog libpurple/protocols/myspace/README libpurple/protocols/myspace/message.c libpurple/protocols/myspace/message.h libpurple/protocols/myspace/myspace.c libpurple/protocols/myspace/myspace.h libpurple/protocols/myspace/persist.h |
diffstat | 8 files changed, 18 insertions(+), 20 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/myspace/CHANGES Mon Jul 02 07:07:48 2007 +0000 +++ b/libpurple/protocols/myspace/CHANGES Tue Jul 03 03:19:16 2007 +0000 @@ -1,11 +1,11 @@ -2007-07-xx Jeff Connelly <jeff22homing.pidgin.im> - 0.10 +2007-07-xx Jeff Connelly <jeff2@soc.pidgin.im> - 0.10 * On incoming instant messages, support: text color, font face. -2007-07-01 Jeff Connelly <jeff2@homing.pidgin.im> - 0.9 +2007-07-01 Jeff Connelly <jeff2@soc.pidgin.im> - 0.9 * Fix crash on Windows when logging in (bug #1990) * Fix crash on Windows when viewing tooltip text (bug #1999) -2007-06-30 Jeff Connelly <jeff2@homing.pidgin.im> - 0.8 +2007-06-30 Jeff Connelly <jeff2@soc.pidgin.im> - 0.8 * Allow "Get Info" on all users, by uid or username * Fix crash when re-logging in, if login failed. * Show descriptive error message if login password is too long. @@ -13,27 +13,27 @@ * Update for Libpurple 2.0.2. * Partial support for formatting on incoming instant messages. -2007-06-14 Jeff Connelly <jeff2@homing.pidgin.im> - 0.7 +2007-06-14 Jeff Connelly <jeff2@soc.pidgin.im> - 0.7 * Add/delete buddy now functional (required many other code improvements). * Show improved buddy information in tooltip text. * Show user profile (in "Get Info" option) for buddies on buddy list. * Fix crash when re-logging in, if login succeeded. -2007-06-12 Jeff Connelly <jeff2@homing.pidgin.im> - 0.6 +2007-06-12 Jeff Connelly <jeff2@soc.pidgin.im> - 0.6 * Use RC4 code from Libpurple 2.0.1 * Use a new implementation for sending and receiving messages (MsimMessage). This infrastructural change significantly improves extensibility. * Show online buddies as online. * Send and receive typing notifications (along with other required changes). -2007-05-22 Jeff Connelly <jeff2@homing.pidgin.im> - 0.5 +2007-05-22 Jeff Connelly <jeff2@soc.pidgin.im> - 0.5 * Add protocol escaping, so can now send and receive / and \ characters * Designed Pidgin 2.0.0beta7 * Use RC4 code from Samba * Use translations (_ macro) * No major changes to code, still getting familiar with tools & community -2007-04-29 Jeff Connelly <jeff2@homing.pidgin.im> +2007-04-29 Jeff Connelly <jeff2@soc.pidgin.im> * NOTE: This code is now being developed under Monotone, in the im.pidgin.soc.2007.msimprpl branch on my local computer, which
--- a/libpurple/protocols/myspace/ChangeLog Mon Jul 02 07:07:48 2007 +0000 +++ b/libpurple/protocols/myspace/ChangeLog Tue Jul 03 03:19:16 2007 +0000 @@ -1,5 +1,5 @@ -2007-04-29 Jeff Connelly <jeff2@homing.pidgin.com> +2007-04-29 Jeff Connelly <jeff2@soc.pidgin.com> * NOTE: This code is now being developed under Monotone, in the im.pidgin.soc.2007.msimprpl branch on my local computer, which
--- a/libpurple/protocols/myspace/README Mon Jul 02 07:07:48 2007 +0000 +++ b/libpurple/protocols/myspace/README Tue Jul 03 03:19:16 2007 +0000 @@ -27,5 +27,5 @@ -Jeff Connelly California Polytechnic State University at San Luis Obispo myspaceim@xyzzy.cjb.net -jeff2@homing.pidgin.im +jeff2@soc.pidgin.im
--- a/libpurple/protocols/myspace/message.c Mon Jul 02 07:07:48 2007 +0000 +++ b/libpurple/protocols/myspace/message.c Tue Jul 03 03:19:16 2007 +0000 @@ -2,7 +2,7 @@ * * \author Jeff Connelly * - * Copyright (C) 2007, Jeff Connelly <jeff2@homing.pidgin.im> + * Copyright (C) 2007, Jeff Connelly <jeff2@soc.pidgin.im> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/libpurple/protocols/myspace/message.h Mon Jul 02 07:07:48 2007 +0000 +++ b/libpurple/protocols/myspace/message.h Tue Jul 03 03:19:16 2007 +0000 @@ -2,7 +2,7 @@ * * \author Jeff Connelly * - * Copyright (C) 2007, Jeff Connelly <jeff2@homing.pidgin.im> + * Copyright (C) 2007, Jeff Connelly <jeff2@soc.pidgin.im> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/libpurple/protocols/myspace/myspace.c Mon Jul 02 07:07:48 2007 +0000 +++ b/libpurple/protocols/myspace/myspace.c Tue Jul 03 03:19:16 2007 +0000 @@ -2,7 +2,7 @@ * * \author Jeff Connelly * - * Copyright (C) 2007, Jeff Connelly <jeff2@homing.pidgin.im> + * Copyright (C) 2007, Jeff Connelly <jeff2@soc.pidgin.im> * * Based on Purple's "C Plugin HOWTO" hello world example. * @@ -1304,11 +1304,9 @@ status_code = MSIM_STATUS_CODE_ONLINE; break; -#if 0 case PURPLE_STATUS_INVISIBLE: - status_code = MSIM_STATUS_CODE_HIDDEN; + status_code = MSIM_STATUS_CODE_OFFLINE_OR_HIDDEN; break; -#endif case PURPLE_STATUS_AWAY: status_code = MSIM_STATUS_CODE_AWAY; @@ -1855,7 +1853,7 @@ /* Set user status */ switch (status_code) { - case MSIM_STATUS_CODE_OFFLINE: + case MSIM_STATUS_CODE_OFFLINE_OR_HIDDEN: purple_status_code = PURPLE_STATUS_OFFLINE; break; @@ -2786,7 +2784,7 @@ "MySpaceIM Protocol Plugin", /** description */ "MySpaceIM Protocol Plugin", - "Jeff Connelly <jeff2@homing.pidgin.im>", /**< author */ + "Jeff Connelly <jeff2@soc.pidgin.im>", /**< author */ "http://developer.pidgin.im/wiki/MySpaceIM/", /**< homepage */ msim_load, /**< load */
--- a/libpurple/protocols/myspace/myspace.h Mon Jul 02 07:07:48 2007 +0000 +++ b/libpurple/protocols/myspace/myspace.h Tue Jul 03 03:19:16 2007 +0000 @@ -1,6 +1,6 @@ /* MySpaceIM Protocol Plugin, header file * - * Copyright (C) 2007, Jeff Connelly <jeff2@homing.pidgin.im> + * Copyright (C) 2007, Jeff Connelly <jeff2@soc.pidgin.im> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -130,7 +130,7 @@ #define MSIM_STATUS_ORDINAL_UNKNOWN2 9 /* Status codes - states a buddy (or you!) can be in. */ -#define MSIM_STATUS_CODE_OFFLINE 0 /* or hidden */ +#define MSIM_STATUS_CODE_OFFLINE_OR_HIDDEN 0 #define MSIM_STATUS_CODE_ONLINE 1 #define MSIM_STATUS_CODE_AWAY 5 /* TODO: hidden */
--- a/libpurple/protocols/myspace/persist.h Mon Jul 02 07:07:48 2007 +0000 +++ b/libpurple/protocols/myspace/persist.h Tue Jul 03 03:19:16 2007 +0000 @@ -1,6 +1,6 @@ /* MySpaceIM Protocol Plugin, persist commands * - * Copyright (C) 2007, Jeff Connelly <jeff2@homing.pidgin.im> + * Copyright (C) 2007, Jeff Connelly <jeff2@soc.pidgin.im> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by