# HG changeset patch # User Mark Doliner # Date 1250798690 0 # Node ID 2a6f0c2460ae56c1b6d1db2054e9fbd859a7c14a # Parent 6b446431b2b0f951cc35c9d7b9a7f8f7b3c1b144 Fix a bug in our outgoing yahoo message formatting where messages with variations in text color and font size/face could have incorrect coloring diff -r 6b446431b2b0 -r 2a6f0c2460ae libpurple/protocols/yahoo/util.c --- a/libpurple/protocols/yahoo/util.c Thu Aug 20 18:13:41 2009 +0000 +++ b/libpurple/protocols/yahoo/util.c Thu Aug 20 20:04:50 2009 +0000 @@ -712,6 +712,14 @@ g_string_append_printf(dest, "\033[%sm", attribute); *colors = g_slist_prepend(*colors, g_strdup_printf("\033[%sm", attribute)); + } else { + /* We need to add a value to the colors stack even if we're not + * setting a color because we ALWAYS pop exactly 1 element from + * this stack for every tag. If we don't add anything + * then we'll pop something that we shouldn't when we hit this + * corresponding . */ + *colors = g_slist_prepend(*colors, + *colors ? g_strdup((*colors)->data) : g_strdup("\033[#000000m")); } attribute = g_datalist_get_data(&attributes, "face"); @@ -868,11 +876,9 @@ char *etag = tags->data; tags = g_slist_delete_link(tags, tags); g_string_append(dest, etag); - if (g_str_equal(etag, "")) { - if (colors != NULL) { - g_free(colors->data); - colors = g_slist_delete_link(colors, colors); - } + if (colors != NULL) { + g_free(colors->data); + colors = g_slist_delete_link(colors, colors); } g_free(etag); } diff -r 6b446431b2b0 -r 2a6f0c2460ae libpurple/tests/test_yahoo_util.c --- a/libpurple/tests/test_yahoo_util.c Thu Aug 20 18:13:41 2009 +0000 +++ b/libpurple/tests/test_yahoo_util.c Thu Aug 20 20:04:50 2009 +0000 @@ -149,7 +149,7 @@ assert_string_equal_free("mark@example.com", yahoo_html_to_codes("mark@example.com")); #if 0 - assert_string_equal_free("http://pidgin.im/", + assert_string_equal_free("Pidgin (http://pidgin.im/)", yahoo_html_to_codes("Pidgin")); #endif @@ -160,12 +160,25 @@ /* font color */ assert_string_equal_free("\x1B[#E71414mred\x1B[#000000m", yahoo_html_to_codes("red")); + assert_string_equal_free("\x1B[#FF0000mred\x1B[#000000m \x1B[#0000FFmblue\x1B[#000000m black", + yahoo_html_to_codes("red blue black")); /* font size */ assert_string_equal_free("test", yahoo_html_to_codes("test")); assert_string_equal_free("test", yahoo_html_to_codes("test")); + + /* combinations */ + assert_string_equal_free("\x1B[#FF0000mredsmall rednormal\x1B[#000000m", + yahoo_html_to_codes("redsmall rednormal")); + + assert_string_equal_free("\x1B[#FF0000mredsmall \x1B[#00FF00mgreennormal\x1B[#FF0000m rednormal\x1B[#000000m", + yahoo_html_to_codes("redsmall greennormal rednormal")); + + /* This test case isn't correct, and so it's commented out */ + assert_string_equal_free("\x1B[1mbold \x1B[#FF0000mred larger \x1B[#000000mbacktoblack normalsize\x1B[#FF0000m\x1B[#000000m\x1B[x1m", + yahoo_html_to_codes("bold red larger backtoblack normalsize")); } END_TEST