# HG changeset patch # User Tim Ringenbach # Date 1086232702 0 # Node ID 66027eb31f97ccf7f98f4f09c420f9f74d536bca # Parent 456ef1f4ba19b79a45d83712beca131fc2419b91 [gaim-migrate @ 9956] This adds wing's yahoo profile work to the ChangeLog, to the POTFILES.in, and to util.h. All but the ChangeLog are wing's patches. This should also kill off the warning yahoo_profile.c was generating. committer: Tailor Script diff -r 456ef1f4ba19 -r 66027eb31f97 ChangeLog --- a/ChangeLog Thu Jun 03 02:57:25 2004 +0000 +++ b/ChangeLog Thu Jun 03 03:18:22 2004 +0000 @@ -4,6 +4,8 @@ New Features: * Display name changes are now shown in the conversation windows. (Robert Mibus) + * Get Info on Yahoo! now works for nonenglish profiles. + (Ambrose Li) * Yahoo! Japan support. Click More Options and check Yahoo Japan in the account editor, to use your Yahoo! Japan account. diff -r 456ef1f4ba19 -r 66027eb31f97 po/POTFILES.in --- a/po/POTFILES.in Thu Jun 03 02:57:25 2004 +0000 +++ b/po/POTFILES.in Thu Jun 03 03:18:22 2004 +0000 @@ -108,6 +108,7 @@ src/protocols/trepia/trepia.c src/protocols/yahoo/yahoo.c src/protocols/yahoo/yahoo_filexfer.c +src/protocols/yahoo/yahoo_profile.c src/protocols/yahoo/yahoochat.c src/protocols/zephyr/zephyr.c src/proxy.c diff -r 456ef1f4ba19 -r 66027eb31f97 src/util.h --- a/src/util.h Thu Jun 03 02:57:25 2004 +0000 +++ b/src/util.h Thu Jun 03 03:18:22 2004 +0000 @@ -476,6 +476,18 @@ const char *replacement); /** + * Given a string, this replaces any numerical character references + * in that string with the corresponding actual utf-8 substrings, + * and returns a newly allocated string. + * + * @param in The string which might contain numerical character references. + * + * @return A new string, with numerical character references + * replaced with actual utf-8, free this with g_free(). + */ +char *gaim_utf8_ncr_decode(const char *in); + +/** * Given a string, this replaces one substring with another * ignoring case and returns a newly allocated string. *