view libpurple/purple-send @ 31693:5f3df5c14c0e

applied changes from 10a19d0da323fdc8c2b315968e383219d8b9101f through fc575a35d01a235fedb83f75b6f8b2a60fe9d48b Original commit message: Change Finch to use Pidgin's clientkey/devid when connecting to ICQ. For whatever reason the Finch-specific clientkey/devid stopped working. Whatever. Fixes #14294
author Mark Doliner <mark@kingant.net>
date Mon, 20 Jun 2011 05:33:34 +0000
parents cea56d000b16
children
line wrap: on
line source

#!/bin/sh

METHOD_NAME=$1

if test -z "$METHOD_NAME" 
then
    cat <<EOF 
This program calls purple API functions using DBus and prints the return value.
If you are not interested in the return value, use purple-send-async.

Usage:

   $0 method-name type1:parameter1 type2:parameter2 ...

This shell script just invokes dbus-send, see man dbus-send for how 
to specify the parameters.  

Examples:

   $0 PurpleAccountsFindConnected string: string:prpl-jabber
   $0 PurpleAccountsGetAll
   $0 PurpleCoreQuit

Use dbus-viewer to get the list of supported functions and their parameters.
EOF
    exit 1
fi

shift
dbus-send --dest=im.pidgin.purple.PurpleService --print-reply --type=method_call /im/pidgin/purple/PurpleObject im.pidgin.purple.PurpleInterface.$METHOD_NAME "$@"