Mercurial > pidgin
diff libpurple/plugins/dbus-buddyicons-example.py @ 20407:1122d47583a1
explicit merge of 'd42ad2da81f881b2fbd2fb080cc70a843bc70d02'
and '8582c561c020d2d1e8d358e2e7cd9e3da113ed9e'
to branch 'im.pidgin.cpw.khc.msnp14'
author | Ka-Hing Cheung <khc@hxbc.us> |
---|---|
date | Wed, 02 May 2007 05:25:27 +0000 |
parents | 598b1b15b199 |
children | 44b4e8bd759b |
line wrap: on
line diff
--- a/libpurple/plugins/dbus-buddyicons-example.py Sun Apr 15 20:12:06 2007 +0000 +++ b/libpurple/plugins/dbus-buddyicons-example.py Wed May 02 05:25:27 2007 +0000 @@ -2,7 +2,7 @@ # # Print the aliases of buddies who have a buddy-icon set. # -# Gaim is the legal property of its developers, whose names are too numerous +# Purple is the legal property of its developers, whose names are too numerous # to list here. Please refer to the COPYRIGHT file distributed with this # source distribution. # @@ -24,13 +24,13 @@ import dbus bus = dbus.SessionBus() -obj = bus.get_object("net.sf.gaim.GaimService", "/net/sf/gaim/GaimObject") -gaim = dbus.Interface(obj, "net.sf.gaim.GaimInterface") +obj = bus.get_object("im.pidgin.purple.PurpleService", "/im/pidgin/purple/PurpleObject") +purple = dbus.Interface(obj, "im.pidgin.purple.PurpleInterface") -node = gaim.GaimBlistGetRoot() +node = purple.PurpleBlistGetRoot() while node != 0: - if gaim.GaimBlistNodeIsBuddy(node): - icon = gaim.GaimBuddyGetIcon(node) + if purple.PurpleBlistNodeIsBuddy(node): + icon = purple.PurpleBuddyGetIcon(node) if icon != 0: - print gaim.GaimBuddyGetAlias(node) - node = gaim.GaimBlistNodeNext(node, 0) + print purple.PurpleBuddyGetAlias(node) + node = purple.PurpleBlistNodeNext(node, 0)