summaryrefslogtreecommitdiff
path: root/doc/it/autogen
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2016-04-05 07:56:43 +0200
committerSébastien Helleu <flashcode@flashtux.org>2016-04-05 07:56:43 +0200
commitfabd48cc6cc00527c10072297a62fbd8154251ed (patch)
tree9477279254b3198900a3e01060cbe32e8c7649db /doc/it/autogen
parente80ff72b97294e87cb59f715d65ad8879c0101b9 (diff)
downloadweechat-fabd48cc6cc00527c10072297a62fbd8154251ed.zip
core: move nick coloring from irc plugin to core (closes #262)
Options moved from irc.conf to weechat.conf: * "irc.look.nick_color_force" moved to "weechat.look.nick_color_force" * "irc.look.nick_color_hash" moved to "weechat.look.nick_color_hash" * "irc.look.nick_color_stop_chars" moved to "weechat.look.nick_color_stop_chars" New info (for API function "info_get"): * "nick_color" (replaces "irc_nick_color") * "nick_color_name" (replaced "irc_nick_color_name") Info "irc_nick_color" and "irc_nick_color_name" are now deprecated. And a bug has been fixed in nick coloring: stop chars are removed before looking at a forced color.
Diffstat (limited to 'doc/it/autogen')
-rw-r--r--doc/it/autogen/plugin_api/infos.asciidoc8
-rw-r--r--doc/it/autogen/user/irc_options.asciidoc15
-rw-r--r--doc/it/autogen/user/weechat_options.asciidoc15
3 files changed, 21 insertions, 17 deletions
diff --git a/doc/it/autogen/plugin_api/infos.asciidoc b/doc/it/autogen/plugin_api/infos.asciidoc
index b6fd05930..dcb2c139b 100644
--- a/doc/it/autogen/plugin_api/infos.asciidoc
+++ b/doc/it/autogen/plugin_api/infos.asciidoc
@@ -18,9 +18,9 @@
| irc | irc_nick | ottiene nick corrente su un server | nome server
-| irc | irc_nick_color | ottiene il codice del colore del nick | nick
+| irc | irc_nick_color | get nick color code (*deprecated* since version 1.5, replaced by "nick_color") | nick
-| irc | irc_nick_color_name | ottiene il nome del colore del nick | nick
+| irc | irc_nick_color_name | get nick color name (*deprecated* since version 1.5, replaced by "nick_color_name") | nick
| irc | irc_nick_from_host | ottiene nick dall'host IRC | host IRC (come `:nick!nome@server.com`)
@@ -54,6 +54,10 @@
| weechat | locale | locale usato per la traduzione dei messaggi | -
+| weechat | nick_color | ottiene il codice del colore del nick | nick
+
+| weechat | nick_color_name | ottiene il nome del colore del nick | nick
+
| weechat | term_height | height of terminal | -
| weechat | term_width | width of terminal | -
diff --git a/doc/it/autogen/user/irc_options.asciidoc b/doc/it/autogen/user/irc_options.asciidoc
index e251abdeb..6b719165b 100644
--- a/doc/it/autogen/user/irc_options.asciidoc
+++ b/doc/it/autogen/user/irc_options.asciidoc
@@ -232,21 +232,6 @@
** tipo: intero
** valori: none, next, near_server (valore predefinito: `none`)
-* [[option_irc.look.nick_color_force]] *irc.look.nick_color_force*
-** descrizione: `force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option`
-** tipo: stringa
-** valori: qualsiasi stringa (valore predefinito: `""`)
-
-* [[option_irc.look.nick_color_hash]] *irc.look.nick_color_hash*
-** descrizione: `hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), sum = sum of letters`
-** tipo: intero
-** valori: djb2, sum (valore predefinito: `sum`)
-
-* [[option_irc.look.nick_color_stop_chars]] *irc.look.nick_color_stop_chars*
-** descrizione: `caratteri usati per interrompere il calcolo del colore con le lettere del nick (almeno un carattere al di fuori di questa lista deve essere nella lista prima di interromperlo) (esempio: nick "|nick|away" con "|" nei caratteri restituisce il colore del nick "|nick")`
-** tipo: stringa
-** valori: qualsiasi stringa (valore predefinito: `"_|["`)
-
* [[option_irc.look.nick_completion_smart]] *irc.look.nick_completion_smart*
** descrizione: `completamento intelligente per i nick (completa il primo con gli ultimi a parlare sul canale): speakers = tutti i nick (notifiche comprese), speakers_highlight = solo i nick con le notifiche`
** tipo: intero
diff --git a/doc/it/autogen/user/weechat_options.asciidoc b/doc/it/autogen/user/weechat_options.asciidoc
index 4960753f2..44d532e63 100644
--- a/doc/it/autogen/user/weechat_options.asciidoc
+++ b/doc/it/autogen/user/weechat_options.asciidoc
@@ -742,6 +742,21 @@
** tipo: intero
** valori: 1 .. 10000 (valore predefinito: `100`)
+* [[option_weechat.look.nick_color_force]] *weechat.look.nick_color_force*
+** descrizione: `force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option`
+** tipo: stringa
+** valori: qualsiasi stringa (valore predefinito: `""`)
+
+* [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash*
+** descrizione: `hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), sum = sum of letters`
+** tipo: intero
+** valori: djb2, sum (valore predefinito: `sum`)
+
+* [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars*
+** descrizione: `caratteri usati per interrompere il calcolo del colore con le lettere del nick (almeno un carattere al di fuori di questa lista deve essere nella lista prima di interromperlo) (esempio: nick "|nick|away" con "|" nei caratteri restituisce il colore del nick "|nick")`
+** tipo: stringa
+** valori: qualsiasi stringa (valore predefinito: `"_|["`)
+
* [[option_weechat.look.nick_prefix]] *weechat.look.nick_prefix*
** descrizione: `testo da visualizzare prima del nick nel prefisso del messaggio, esempio: "<"`
** tipo: stringa