diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-08-14 21:25:27 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-08-14 21:25:27 +0200 |
commit | 15218ed294af2c1d0657e475539395e7862fd32c (patch) | |
tree | 0b8f3e3bf8e30b0e1dec85ab611453a15c63efcd /doc/it/autogen | |
parent | be3025f5699110c675951e5d4b50b1b5f1d54325 (diff) | |
download | weechat-15218ed294af2c1d0657e475539395e7862fd32c.zip |
irc: add option irc.network.channel_encode (issue #218, issue #482)
This is a workaround (disabled by default) to join and chat on ISO
encoded channels (or another charset different from UTF-8).
This option may be removed in future if a better solution is
implemented.
Diffstat (limited to 'doc/it/autogen')
-rw-r--r-- | doc/it/autogen/plugin_api/infos_hashtable.asciidoc | 2 | ||||
-rw-r--r-- | doc/it/autogen/user/irc_options.asciidoc | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/it/autogen/plugin_api/infos_hashtable.asciidoc b/doc/it/autogen/plugin_api/infos_hashtable.asciidoc index 02cc07e31..66b77d61a 100644 --- a/doc/it/autogen/plugin_api/infos_hashtable.asciidoc +++ b/doc/it/autogen/plugin_api/infos_hashtable.asciidoc @@ -6,7 +6,7 @@ |=== | Plugin | Nome | Descrizione | Tabella hash (input) | Tabella hash (output) -| irc | irc_message_parse | controlla un messaggio IRC | "message": messaggio IRC, "server": nome server (opzionale) | "tags": tags, "message_without_tags": message without the tags, "nick": nick, "host": host, "command": command, "channel": channel, "arguments": arguments (includes channel), "text": text (for example user message), "pos_text": index of text in message ("-1" if no text found) +| irc | irc_message_parse | controlla un messaggio IRC | "message": messaggio IRC, "server": nome server (opzionale) | "tags": tags, "message_without_tags": message without the tags, "nick": nick, "host": host, "command": command, "channel": channel, "arguments": arguments (includes channel), "text": text (for example user message), "pos_command": index of "command" message ("-1" if "command" was not found), "pos_arguments": index of "arguments" message ("-1" if "arguments" was not found), "pos_channel": index of "channel" message ("-1" if "channel" was not found), "pos_text": index of "text" message ("-1" if "text" was not found) | irc | irc_message_split | divide un messaggio IRC (per adattarlo in 512 byte) | "message": messaggio IRC, "server": nome server (opzionale) | "msg1" ... "msgN": messaggio da inviare (senza "\r\n" finale), "args1" ... "argsN": argomenti dei messaggi, "count": numero di messaggi diff --git a/doc/it/autogen/user/irc_options.asciidoc b/doc/it/autogen/user/irc_options.asciidoc index af2d8a9a5..54c051afe 100644 --- a/doc/it/autogen/user/irc_options.asciidoc +++ b/doc/it/autogen/user/irc_options.asciidoc @@ -392,6 +392,11 @@ ** tipo: stringa ** valori: qualsiasi stringa (valore predefinito: `"*!$ident@$host"`) +* [[option_irc.network.channel_encode]] *irc.network.channel_encode* +** descrizione: `decode/encode channel name inside messages using charset options (like it was done in WeeChat <= 1.2); it is recommended to keep that off if you use only UTF-8 in channel names; you can enable this option if you are using an exotic charset like ISO in channel names` +** tipo: bool +** valori: on, off (valore predefinito: `off`) + * [[option_irc.network.colors_receive]] *irc.network.colors_receive* ** descrizione: `se disabilitato, i codici colori vengono ignorati nei messaggi in entrata` ** tipo: bool |