diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-22 20:41:00 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-22 20:41:00 +0200 |
commit | 39b6fb61370de2591146460bd5414955a234801e (patch) | |
tree | 2b3ee2cfff024cbc3455ae68d38166a04ed20f6c /doc/it | |
parent | 12ee9cb75cb49528ab58cf9b821112fab9dcb82f (diff) | |
download | weechat-39b6fb61370de2591146460bd5414955a234801e.zip |
irc: remove option irc.network.channel_encode, add server option "charset_message" (closes #832)
This new option controls which part of the IRC message is decoded/encoded to
the target charset, and the new default behavior is to decode/encode the whole
IRC message (behavior in WeeChat >= 1.3 was to decode/encode only the text by
default).
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/autogen/user/irc_options.adoc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/it/autogen/user/irc_options.adoc b/doc/it/autogen/user/irc_options.adoc index a0f54b0b3..bd162323a 100644 --- a/doc/it/autogen/user/irc_options.adoc +++ b/doc/it/autogen/user/irc_options.adoc @@ -446,12 +446,6 @@ ** valori: qualsiasi stringa ** valore predefinito: `+"*!$ident@$host"+` -* [[option_irc.network.channel_encode]] *irc.network.channel_encode* -** descrizione: pass:none[decode/encode channel name inside messages using charset options; 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: pass:none[se disabilitato, i codici colori vengono ignorati nei messaggi in entrata] ** tipo: bool @@ -596,6 +590,12 @@ ** valori: qualsiasi stringa ** valore predefinito: `+""+` +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** descrizione: pass:none[part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)] +** tipo: intero +** valori: message, channel, text +** valore predefinito: `+message+` + * [[option_irc.server_default.command]] *irc.server_default.command* ** descrizione: pass:none[command(s) to run after connection to server and before auto-join of channels (many commands can be separated by ";", use "\;" for a semicolon, special variables $nick, $channel and $server are replaced by their value) (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)] ** tipo: stringa |