Mercurial > pidgin.yaz
annotate src/gaim-send @ 11211:03a244acce57
[gaim-migrate @ 13342]
(14:28:27) Christopher O'Brien (siege): ArdentlyGnarly, gaim_proxy_connect's docs lie
(14:28:36) Christopher O'Brien (siege): it doesn't return a fd
(14:28:52) Christopher O'Brien (siege): it returns a status code
...
(14:37:58) rlaager: siege, ArdentlyGnarly: We should correct the docs for gaim_proxy_connect... how does this sound? "@return zero for success, any other value for failure"
...
(14:39:22) Jonathan Clark (ArdentlyGnarly): we really don't know whether or not the call was successful at the time it returns
(14:39:55) Jonathan Clark (ArdentlyGnarly): we get that information when things get back around to the callback passed to gaim_proxy_connect
(14:42:08) Jonathan Clark (ArdentlyGnarly): perhaps: @return zero indicates connection is pending, any other value for failure
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 08 Aug 2005 19:45:28 +0000 |
parents | 2eca9ed49469 |
children | 64fadbf3810f |
rev | line source |
---|---|
11067 | 1 #!/bin/bash |
2 # | |
3 # A little shell script for communicating with gaim using dbus | |
4 | |
5 METHOD_NAME=$1 | |
6 | |
7 if test -z "$METHOD_NAME" | |
8 then | |
9 cat <<EOF | |
10 This program uses dbus to talk to gaim. If the gaim is not running and | |
11 the dbus engine is set up correctly, a new instance of gaim will be started. | |
12 | |
13 Syntax: gaim-send method-name parameter1 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 gaim-send Ping | |
21 gaim-send Quit | |
22 gaim-send GetBuddyList | |
23 gaim-send GetBuddyProperty int32:5 string:alias | |
24 gaim-send StartIMConversation int32:5 | |
25 | |
26 See src/dbus-services.xml for the list of supported operations. | |
27 EOF | |
28 | |
29 exit 1 | |
30 fi | |
31 | |
32 shift | |
33 dbus-send --dest=org.gaim.GaimService --print-reply --type=method_call /org/gaim/GaimObject org.gaim.GaimInterface.$METHOD_NAME "$@" | |
34 | |
35 echo |