Mercurial > libervia-backend
comparison doc/libervia-cli/identity.rst @ 3488:c80a0f864b5d
doc: updated doc following global renaming
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 21 Mar 2021 18:23:58 +0100 |
parents | doc/jp/identity.rst@6cf4bd6972c2 |
children |
comparison
equal
deleted
inserted
replaced
3487:75427f0a5445 | 3488:c80a0f864b5d |
---|---|
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 data about the | |
13 avatar. | |
14 | |
15 When available, cached values are returned by defaut. If you want to ignore the cache, use | |
16 the ``--no-cache`` option (of course this can result in more network requests). | |
17 | |
18 example | |
19 -------- | |
20 | |
21 Get identity information about an entity:: | |
22 | |
23 $ li identity get somebody@example.org | |
24 | |
25 set | |
26 === | |
27 | |
28 Set identity data to the server, using various XMPP extensions. So far, you can only | |
29 change the nickname of an entity using ``-n, --nick`` or or more times | |
30 | |
31 example | |
32 ------- | |
33 | |
34 Set 2 nicknames for default profile:: | |
35 | |
36 $ li identity set -n toto -n titi |