# HG changeset patch # User Evan Schoenberg # Date 1298328961 0 # Node ID 97cb163727f0882f9d8e03c5734eed6a22e1cd7a # Parent c0945d2291b9535ac2a09ac5f1b49e60a5eb9abc disapproval of revision '7ee5e1d431651ed2b1a54bc942d63f35580af55c' diff -r c0945d2291b9 -r 97cb163727f0 libpurple/conversation.c --- a/libpurple/conversation.c Mon Feb 21 00:19:45 2011 +0000 +++ b/libpurple/conversation.c Mon Feb 21 22:56:01 2011 +0000 @@ -2135,8 +2135,6 @@ cb->name = g_strdup(name); cb->flags = flags; cb->alias = g_strdup(alias); - cb->attributes = g_hash_table_new_full(g_str_hash, g_str_equal, - g_free, g_free); PURPLE_DBUS_REGISTER_POINTER(cb, PurpleConvChatBuddy); return cb; @@ -2169,7 +2167,6 @@ g_free(cb->alias); g_free(cb->alias_key); g_free(cb->name); - g_hash_table_destroy(cb->attributes); PURPLE_DBUS_UNREGISTER_POINTER(cb); g_free(cb); @@ -2183,76 +2180,6 @@ return cb->name; } -const char * -purple_conv_chat_cb_get_attribute(PurpleConvChatBuddy *cb, const char *key) -{ - g_return_val_if_fail(cb != NULL, NULL); - g_return_val_if_fail(key != NULL, NULL); - - return g_hash_table_lookup(cb->attributes, key); -} - -static void -append_attribute_key(gpointer key, gpointer value, gpointer user_data) -{ - GList **list = user_data; - *list = g_list_prepend(*list, key); -} - -GList * -purple_conv_chat_cb_get_attribute_keys(PurpleConvChatBuddy *cb) -{ - GList *keys = NULL; - - g_return_val_if_fail(cb != NULL, NULL); - - g_hash_table_foreach(cb->attributes, (GHFunc)append_attribute_key, &keys); - - return keys; -} - -void -purple_conv_chat_cb_set_attribute(PurpleConvChat *chat, PurpleConvChatBuddy *cb, const char *key, const char *value) -{ - PurpleConversation *conv; - PurpleConversationUiOps *ops; - - g_return_if_fail(cb != NULL); - g_return_if_fail(key != NULL); - g_return_if_fail(value != NULL); - - g_hash_table_replace(cb->attributes, g_strdup(key), g_strdup(value)); - - conv = purple_conv_chat_get_conversation(chat); - ops = purple_conversation_get_ui_ops(conv); - - if (ops != NULL && ops->chat_update_user != NULL) - ops->chat_update_user(conv, cb->name); -} - -void -purple_conv_chat_cb_set_attributes(PurpleConvChat *chat, PurpleConvChatBuddy *cb, GList *keys, GList *values) -{ - PurpleConversation *conv; - PurpleConversationUiOps *ops; - - g_return_if_fail(cb != NULL); - g_return_if_fail(keys != NULL); - g_return_if_fail(values != NULL); - - while (keys != NULL && values != NULL) { - g_hash_table_replace(cb->attributes, g_strdup(keys->data), g_strdup(values->data)); - keys = g_list_next(keys); - values = g_list_next(values); - } - - conv = purple_conv_chat_get_conversation(chat); - ops = purple_conversation_get_ui_ops(conv); - - if (ops != NULL && ops->chat_update_user != NULL) - ops->chat_update_user(conv, cb->name); -} - GList * purple_conversation_get_extended_menu(PurpleConversation *conv) { diff -r c0945d2291b9 -r 97cb163727f0 libpurple/conversation.h --- a/libpurple/conversation.h Mon Feb 21 00:19:45 2011 +0000 +++ b/libpurple/conversation.h Mon Feb 21 22:56:01 2011 +0000 @@ -300,9 +300,6 @@ PurpleConvChatBuddyFlags flags; /**< A bitwise OR of flags for this participant, * such as whether they are a channel operator. */ - GHashTable *attributes; /**< A hash table of attributes about the user, such as - * real name, user@host, etc. - */ }; /** @@ -516,46 +513,6 @@ const char *purple_conversation_get_name(const PurpleConversation *conv); /** - * Get an attribute of a chat buddy - * - * @param cb The chat buddy. - * @param key The key of the attribute. - * - * @return The value of the attribute key. - */ -const char *purple_conv_chat_cb_get_attribute(PurpleConvChatBuddy *cb, const char *key); - -/** - * Get the keys of all atributes of a chat buddy - * - * @param cb The chat buddy. - * - * @return A list of the attributes of a chat buddy. - */ -GList *purple_conv_chat_cb_get_attribute_keys(PurpleConvChatBuddy *cb); - -/** - * Set an attribute of a chat buddy - * - * @param chat The chat. - * @param cb The chat buddy. - * @param key The key of the attribute. - * @param value The value of the attribute. - */ -void purple_conv_chat_cb_set_attribute(PurpleConvChat *chat, PurpleConvChatBuddy *cb, const char *key, const char *value); - -/** - * Set attributes of a chat buddy - * - * @param chat The chat. - * @param cb The chat buddy. - * @param keys A GList of the keys. - * @param values A GList of the values. - */ -void -purple_conv_chat_cb_set_attributes(PurpleConvChat *chat, PurpleConvChatBuddy *cb, GList *keys, GList *values); - -/** * Enables or disables logging for this conversation. * * @param conv The conversation.