diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-11-04 12:47:01 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-11-04 12:47:01 +0100 |
commit | 8503857d28a41e42e0d232a508b1534827c7e737 (patch) | |
tree | 0eb9030ef40b146214b5c991609d7244c5c9a6dc /doc/it | |
parent | abd95bf1b189c571a618bb0331deb4e6772b1d03 (diff) | |
download | weechat-8503857d28a41e42e0d232a508b1534827c7e737.zip |
irc: allow URL "irc://" in command /connect
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/autogen/user/irc_commands.txt | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/doc/it/autogen/user/irc_commands.txt b/doc/it/autogen/user/irc_commands.txt index c33411835..3c48b550d 100644 --- a/doc/it/autogen/user/irc_commands.txt +++ b/doc/it/autogen/user/irc_commands.txt @@ -55,25 +55,27 @@ Senza argomento, il comando mostra la lista dei ban per il canale corrente. [[command_irc_connect]] [command]*`connect`* connette ad uno o più server IRC:: ........................................ -/connect [<server> [<server>...] | <hostname>[/<porta>]] [-<opzione>[=<valore>]] [-no<opzione>] [-nojoin] [-switch] +/connect <server> [<server>...] [-<option>[=<value>]] [-no<option>] [-nojoin] [-switch] -all|-open [-nojoin] [-switch] - server: nome interno del server a cui connettersi (il server deve essere stato creato con /server add) - hostname: nome host (o IP) di un server (in questo modo viene creato un server TEMPORANEO) - porta: porta per il server (6667 è la predefinita) - opzione: imposta opzione per il server (per un'opzione bool, il valore può essere omesso) - nooption: imposta un'opzione bool su 'off' (ad esempio: -nossl) - -all: connette a tutti i server definiti nella configurazione - -open: connette a tutti i server aperti a cui non si è connessi - -nojoin: non entra su nessun canale (anche se l'ingresso automatico è attivo sul server) - -switch: passa all'indirizzo successivo del server - -Esempi: + server: server name, which can be: + - internal server name (created by /server add, recommended usage) + - hostname/port or IP/port (this will create a TEMPORARY server), port is 6667 by default + - URL with format: irc[6][s]://[nickname[:password]@]irc.example.org[:port][/#channel1][,#channel2[...]] + option: set option for server (for boolean option, value can be omitted) + nooption: set boolean option to 'off' (for example: -nossl) + -all: connect to all servers defined in configuration + -open: connect to all opened servers that are not currently connected + -nojoin: do not join any channel (even if autojoin is enabled on server) + -switch: switch to next server address + +Examples: /connect freenode /connect irc.oftc.net/6667 /connect irc6.oftc.net/6667 -ipv6 /connect irc6.oftc.net/6697 -ipv6 -ssl /connect my.server.org/6697 -ssl -password=test + /connect irc://nick@irc.oftc.net/#channel /connect -switch ........................................ |