# HG changeset patch # User Jeffrey Connelly # Date 1182312611 0 # Node ID 01d7e5096dde3ac786210318602299fb5400a03f # Parent 06d60201e371644fb464734a633f95774f075045 Expand on a couple TODO comments. Current TODO counts: 36 myspace.c 13 message.c 5 myspace.h diff -r 06d60201e371 -r 01d7e5096dde libpurple/protocols/myspace/myspace.c --- a/libpurple/protocols/myspace/myspace.c Wed Jun 20 03:58:26 2007 +0000 +++ b/libpurple/protocols/myspace/myspace.c Wed Jun 20 04:10:11 2007 +0000 @@ -786,7 +786,10 @@ buddy = purple_find_buddy(session->account, name); if (!buddy) { - /* TODO: profile of buddies not on blist! */ + /* TODO: profile of buddies not on blist! Wouldn't be too hard, + * just have to schedule a lookup, and when receive reply, + * call purple_notify_userinfo() etc. + */ purple_notify_user_info_add_pair(user_info, NULL, "Sorry, currently user information can only be retrieved from users on your buddy list."); purple_notify_userinfo(gc, name, user_info, NULL, NULL); @@ -1368,7 +1371,7 @@ } msim_msg_free(msg); - /* TODO: update blocklist */ + /* TODO: update blocklist. Compare to delbuddy for how to do. */ #if 0 /* TODO */ if (!msim_postprocess_outgoing(session, diff -r 06d60201e371 -r 01d7e5096dde libpurple/protocols/myspace/myspace.h --- a/libpurple/protocols/myspace/myspace.h Wed Jun 20 03:58:26 2007 +0000 +++ b/libpurple/protocols/myspace/myspace.h Wed Jun 20 04:10:11 2007 +0000 @@ -69,7 +69,7 @@ /* RC4 is in Libpurple 2.0.1, so define this. */ #define MSIM_USE_PURPLE_RC4 -/* TODO: when RC4 makes it into libpurple, use the PURPLE_VERSION_CHECK +/* TODO: (one release after) when RC4 makes it into libpurple, use the PURPLE_VERSION_CHECK * macro to conditionally compile. And then later, get rid of our own * RC4 code and only support libpurple with RC4. */