view libpurple/purple-send @ 17008:34d9037a228c

RC4 support to libpurple's cipher.c. applied changes from 16cddf101af9bec7aa7546f67d791389bb82a8c5 through eb65d87cbe206ce460c3647f24e6cc06bb1e83fe Patch from Nathan Peterson to add RC4 support. applied changes from eb65d87cbe206ce460c3647f24e6cc06bb1e83fe through c27d5698b3cb75df5ec296031e29e46440ac2303 Add rc4_get_key_size.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Thu, 10 May 2007 02:58:35 +0000
parents 598b1b15b199
children 942bf314fc8a
line wrap: on
line source

#!/bin/bash

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 "$@"

echo