Mercurial > pidgin.yaz
view libpurple/protocols/oscar/Makefile.am @ 31810:0123c69ec0e5
Add a purple_notify_user_info_add_pair_plaintext function that accepts a
plaintext value and escapes it. This is a convenience function. Previously
callers would have to escape the value themselves.
The motivation for this is that a lot of callers didn't escape the value
when they should have. See these screenshots for an example of the problem
this causes:
Here's what I set my jabber info to:
http://img29.imageshack.us/i/screenshotafter.png/
Here's what the old code displayed when I viewed info for myself (incorrect):
http://img691.imageshack.us/i/screenshotbeforev.png/
Here's what the new code displays (correct):
http://img192.imageshack.us/i/screenshotafter.png/
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 08 Jul 2010 22:38:33 +0000 |
parents | 7054f810b0f9 |
children | 9881f18b95b1 |
line wrap: on
line source
EXTRA_DIST = \ COPYING \ AUTHORS \ Makefile.mingw pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) OSCARSOURCES = \ bstream.c \ clientlogin.c \ family_admin.c \ family_advert.c \ family_alert.c \ family_auth.c \ family_bart.c \ family_bos.c \ family_buddy.c \ family_chat.c \ family_chatnav.c \ family_icq.c \ family_icbm.c \ family_invite.c \ family_locate.c \ family_odir.c \ family_oservice.c \ family_popup.c \ family_feedbag.c \ family_stats.c \ family_translate.c \ family_userlookup.c \ flap_connection.c \ misc.c \ msgcookie.c \ odc.c \ oft.c \ oscar.c \ oscar.h \ oscarcommon.h \ oscar_data.c \ peer.c \ peer.h \ peer_proxy.c \ rxhandlers.c \ snac.c \ snactypes.h \ tlv.c \ util.c AM_CFLAGS = $(st) libaim_la_LDFLAGS = -module -avoid-version libicq_la_LDFLAGS = -module -avoid-version if STATIC_OSCAR st = -DPURPLE_STATIC_PRPL noinst_LTLIBRARIES = liboscar.la liboscar_la_SOURCES = $(OSCARSOURCES) libaim.c libicq.c liboscar_la_CFLAGS = $(AM_CFLAGS) else st = pkg_LTLIBRARIES = liboscar.la libaim.la libicq.la liboscar_la_SOURCES = $(OSCARSOURCES) liboscar_la_LIBADD = $(GLIB_LIBS) libaim_la_SOURCES = libaim.c libaim_la_LIBADD = liboscar.la libicq_la_SOURCES = libicq.c libicq_la_LIBADD = liboscar.la endif AM_CPPFLAGS = \ -I$(top_srcdir)/libpurple \ -I$(top_builddir)/libpurple \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS)