File: README

package info (click to toggle)
telepathy-glib 0.24.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,756 kB
  • sloc: ansic: 124,638; xml: 34,410; sh: 4,531; python: 3,528; makefile: 1,722; javascript: 211; cpp: 16
file content (61 lines) | stat: -rw-r--r-- 2,139 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
telepathy-glib examples
=======================

You can get more examples of telepathy-glib usage from:
* the telepathy-glib branch of telepathy-inspector (versions >= 0.5.1 will use
  telepathy-glib)
* the core connection managers (particularly telepathy-gabble; also
  telepathy-salut, telepathy-sofiasip and telepathy-haze)
* the regression tests (tests/ in the source release)

A valgrind suppressions file telepathy-glib-examples.supp was previously here,
but it's been moved to tools/telepathy-glib.supp.

client/list-managers.c
----------------------
List available connection managers.
Usage: telepathy-example-list-managers

client/inspect-cm.c
-------------------
Introspect a connection manager (doesn't yet print out the information
gathered, but it could).
Example usage: telepathy-example-inspect-cm gabble

client/list-connections.c
-------------------------
List available connections.
Usage: telepathy-example-list-connections

client/inspect-connection.c
---------------------------
Introspect a connection (as found by list-connections) and make an asynchronous
method call to list its channels.
Usage: one of
  telepathy-example-inspect-connection BUS_NAME
  telepathy-example-inspect-connection OBJECT_PATH
  telepathy-example-inspect-connection BUS_NAME OBJECT_PATH

client/inspect-channel.c
------------------------
Introspect a channel (as found by inspect-connection) and print out its
type, handle and interfaces. If it has the Group interface, also make a
reentrant method call to list its members.
Usage: telepathy-example-inspect-channel CONN_OBJECT_PATH CHAN_OBJECT_PATH

cm/no-protocols/
----------------
The simplest possible Telepathy connection manager. It doesn't support any
protocols.

cm/echo/
--------
A simple fake Telepathy connection manager, which supports text channels where
the remote contact just echoes back your messages.

extensions/
-----------
An example of how to add extra interfaces to telepathy-glib, for use with
experimental or special-purpose interfaces. client/extended-client.c and
cm/extended/ use the convenience library built by extensions/ to implement
the Hats interface.