Mercurial > pidgin
view src/gaim-send @ 11111:f03dce7ea408
[gaim-migrate @ 13163]
Patch #1234440, from sadrul
"Mark blocked users in the buddy-list"
Patch #1234197, from sadrul
"New API fn gaim_privacy_check"
Plus changes by me. (Read as: blame me if it's busted, thank sadrul if it works)
Basically, all this stuff boils down to the following:
We composite a new blocked.png onto the prpl icon in the buddy list if the user is blocked.
MSN was the only prpl that used the old blocked.png. However, it looks bad to overlay both icons, so I removed the use of blocked.png from the MSN prpl. As an MSN user, I think the result is intuitive.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 17 Jul 2005 23:36:34 +0000 |
parents | 2eca9ed49469 |
children | 64fadbf3810f |
line wrap: on
line source
#!/bin/bash # # A little shell script for communicating with gaim using dbus METHOD_NAME=$1 if test -z "$METHOD_NAME" then cat <<EOF This program uses dbus to talk to gaim. If the gaim is not running and the dbus engine is set up correctly, a new instance of gaim will be started. Syntax: gaim-send method-name parameter1 parameter2 ..." This shell script just invokes dbus-send, see man dbus-send for how to specify the parameters. Examples: gaim-send Ping gaim-send Quit gaim-send GetBuddyList gaim-send GetBuddyProperty int32:5 string:alias gaim-send StartIMConversation int32:5 See src/dbus-services.xml for the list of supported operations. EOF exit 1 fi shift dbus-send --dest=org.gaim.GaimService --print-reply --type=method_call /org/gaim/GaimObject org.gaim.GaimInterface.$METHOD_NAME "$@" echo