Mercurial > pidgin
annotate src/gaim-send-async @ 12867:cf3540702d21
[gaim-migrate @ 15218]
A patch from Ranma42 in SF Bug #1220557, with lots of changes by me.
This merges gaim_conv_chat_remove_users and gaim_conv_chat_remove_user.
As I did with gaim_conv_chat_add_user and gaim_conv_chat_add_users,
gaim_conv_chat_remove_user is just a simple wrapper. The conversation UI op
chat_remove_user has similarly been removed, in favor of UIs only having to
implement one function to remove users.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Sat, 14 Jan 2006 00:06:24 +0000 |
| parents | 1d97f18595be |
| children | ac5bc9a7b603 |
| rev | line source |
|---|---|
| 11332 | 1 #!/bin/bash |
| 2 | |
| 3 METHOD_NAME=$1 | |
| 4 | |
| 5 if test -z "$METHOD_NAME" | |
| 6 then | |
| 7 cat <<EOF | |
| 8 This program calls gaim API functions using DBus. As opposed to gaim-send, | |
| 9 it does not print the return value. | |
| 10 | |
| 11 Usage: | |
| 12 | |
| 13 $0 method-name type1:parameter1 type2:parameter2 ... | |
| 14 | |
| 15 This shell script just invokes dbus-send, see man dbus-send for how | |
| 16 to specify the parameters. | |
| 17 | |
| 18 Examples: | |
| 19 | |
| 20 $0 GaimCoreQuit | |
| 21 | |
| 22 Use dbus-viewer to get the list of supported functions and their parameters. | |
| 23 EOF | |
| 24 exit 1 | |
| 25 fi | |
| 26 | |
| 27 shift | |
| 28 dbus-send --dest=org.gaim.GaimService --type=method_call /org/gaim/GaimObject org.gaim.GaimInterface.$METHOD_NAME "$@" | |
| 29 | |
| 30 echo |
