Mercurial > libervia-backend
comparison doc/jp/identity.rst @ 3041:72583524cfd3
doc (jp): jp commands are now fully documented:
rel 232
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 01 Oct 2019 22:49:06 +0200 |
parents | |
children | 6cf4bd6972c2 |
comparison
equal
deleted
inserted
replaced
3040:fee60f17ebac | 3041:72583524cfd3 |
---|---|
1 ============================= | |
2 identity: identity management | |
3 ============================= | |
4 | |
5 Identity use several XMPP extensions (like vcards) to retrieve or set informations about | |
6 an entity. For now it's really basic and only nickname and avatar are managed. | |
7 | |
8 get | |
9 === | |
10 | |
11 Retrieve informations about the identity behind an XMPP entity. You only have to specify | |
12 the jid of the entity, and you'll get (if set) his/her/its nickname and a link to the | |
13 cached avatar. | |
14 | |
15 example | |
16 -------- | |
17 | |
18 Get identity information about an entity:: | |
19 | |
20 $ jp identity get somebody@example.org | |
21 | |
22 set | |
23 === | |
24 | |
25 Set identity data to the server, using various XMPP extensions. You set the data to change | |
26 using ``-f KEY VALUE, --field KEY VALUE``, where ``KEY`` can only be ``nick`` at the | |
27 moment. | |
28 | |
29 example | |
30 ------- | |
31 | |
32 Set the nickname of default profile:: | |
33 | |
34 $ jp identity set -f nick toto |