view libpurple/purple-send @ 16870:ce2422ae793c

From my reading of the documentation, g_mkstemp() is a strict superset of mkstemp()'s functionality. datallah commented in the commit message for 27e1df003532e1209f1f56770923ca4c7674d7ca that he thought this could be done the same on *nix and Win32, but didn't want to break anything before the release. I'm confident this should be okay, and it should be safe to break things now. ;)
author Richard Laager <rlaager@wiktel.com>
date Sat, 05 May 2007 23:55:29 +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