Mercurial > pidgin.yaz
changeset 9171:66027eb31f97
[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 <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Thu, 03 Jun 2004 03:18:22 +0000 |
parents | 456ef1f4ba19 |
children | 640b82172493 |
files | ChangeLog po/POTFILES.in src/util.h |
diffstat | 3 files changed, 15 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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.
--- 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
--- 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. *