Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

purple-remote(1) [opensolaris man page]

purple-remote(1)						   User Commands						  purple-remote(1)

NAME
purple-remote - Send remote commands to Pidgin/Finch SYNOPSIS
purple-remote [-command1] [-command2] [-...] DESCRIPTION
Send remote commands to Purple. This program uses DBus to communicate with Pidgin/Finch. OPTIONS
Each command is of one of the three types: [protocol:]commandname?param1=value1=value2&... FunctionName?param1=value1=value2&... FunctionName(value1,value2,...) The second and third form are provided for completeness but their use is not recommended; use purple-send or purple-send-async instead. The second form uses introspection to find out the parameter names and their types, therefore it is rather slow. Here are some examples: jabber:goim?screenname=testone@localhost=hi jabber:gochat?room=TestRoom=conference.localhost jabber:getinfo?screenname=testone@localhost jabber:addbuddy?screenname=my friend setstatus?status=away=don't disturb quit PurpleAccountsFindConnected?name==prpl-jabber PurpleAccountFindConnected(,prpl-jabber) ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWgnome-cd | +-----------------------------+-----------------------------+ |Interface stability |Volatile | +-----------------------------+-----------------------------+ SEE ALSO
purple-send(1), purple-send-async(1), purple-url-handler(1), attributes(5) purple-remote Manual, http://pidgin.im/ NOTES
Updated by Lei Ju, Sun Microsystems Inc., 2006, 2007. SunOS 5.11 02 Apr 2008 purple-remote(1)

Check Out this Related Man Page

XML::Stream::Namespace(3pm)				User Contributed Perl Documentation			       XML::Stream::Namespace(3pm)

NAME
XML::Stream::Namespace - Object to make defining Namespaces easier in XML::Stream. SYNOPSIS
XML::Stream::Namespace is a helper package to XML::Stream. It provides a clean way of defining Namespaces for XML::Stream to use when connecting. DESCRIPTION
This module allows you to set and read elements from an XML::Stream Namespace. METHODS
SetNamespace("mynamespace"); SetXMLNS("http://www.mynamespace.com/xmlns"); SetAttributes(attrib1=>"value1", attrib2=>"value2"); GetNamespace() returns "mynamespace" GetXMLNS() returns "http://www.mynamespace.com/xmlns" GetAttributes() returns a hash ( attrib1=>"value1",attrib2=>"value2") GetStream() returns the following string: "xmlns:mynamespace='http://www.nynamespace.com/xmlns' mynamespace:attrib1='value1' mynamespace:attrib2='value2'" EXAMPLES
$myNamespace = new XML::Stream::Namespace("mynamspace"); $myNamespace->SetXMLNS("http://www.mynamespace.org/xmlns"); $myNamespace->SetAttributes(foo=>"bar", bob=>"vila"); $stream = new XML::Stream; $stream->Connect(name=>"foo.bar.org", port=>1234, namespace=>"foo:bar", namespaces=>[ $myNamespace ]); # # The above Connect will send the following as the opening string # of the stream to foo.bar.org:1234... # # <stream:stream # xmlns:stream="http://etherx.jabber.org/streams" # to="foo.bar.org" # xmlns="foo:bar" # xmlns:mynamespace="http://www.mynamespace.org/xmlns" # mynamespace:foo="bar" # mynamespace:bob="vila"> # AUTHOR
Written by Ryan Eatmon in February 2000 Idea By Thomas Charron in January of 2000 for http://etherx.jabber.org/streams/ Currently maintained by Darian Anthony Patrick. COPYRIGHT
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2010-01-08 XML::Stream::Namespace(3pm)
Man Page