diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-11-06 11:38:48 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-11-06 11:38:48 +0100 |
commit | e001c057108a573d9e67cc37c0c5f8462e1fbdf6 (patch) | |
tree | d5e153942e4c8b08a870ee49325e3d953f887770 /doc/it | |
parent | a56dc00b2f7a01ee3c52fcb49bea2638c877d1ff (diff) | |
download | weechat-e001c057108a573d9e67cc37c0c5f8462e1fbdf6.zip |
Add IRC command /notify, new options for notify and infolist "irc_notify" (task #5441)
This commit provides:
- new IRC command /notify
- new options: irc.look.notify_tags_ison, irc.look.notify_tags_whois,
irc.network.notify_check_ison, irc.network.notify_check_whois
- new option "notify" in servers (but should not be changed, only /notify
command should be used)
- infolist "irc_notify" to get notify list (by server or for all servers).
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/autogen/plugin_api/completions.txt | 2 | ||||
-rw-r--r-- | doc/it/autogen/plugin_api/infolists.txt | 2 | ||||
-rw-r--r-- | doc/it/autogen/user/irc_commands.txt | 53 | ||||
-rw-r--r-- | doc/it/autogen/user/irc_options.txt | 25 |
4 files changed, 67 insertions, 15 deletions
diff --git a/doc/it/autogen/plugin_api/completions.txt b/doc/it/autogen/plugin_api/completions.txt index a2189f144..245f9e1f5 100644 --- a/doc/it/autogen/plugin_api/completions.txt +++ b/doc/it/autogen/plugin_api/completions.txt @@ -18,6 +18,8 @@ | irc | irc_msg_part | messaggio di uscita predefinito per il canale IRC +| irc | irc_notify_nicks | nicks in notify list + | irc | irc_privates | privati su tutti i server IRC | irc | irc_server | server IRC corrente diff --git a/doc/it/autogen/plugin_api/infolists.txt b/doc/it/autogen/plugin_api/infolists.txt index 0c035d019..d9e57c79e 100644 --- a/doc/it/autogen/plugin_api/infolists.txt +++ b/doc/it/autogen/plugin_api/infolists.txt @@ -10,6 +10,8 @@ | irc | irc_nick | elenco dei nick per un canale IRC | puntatore al nick (opzionale) | server,canale,nick (canale e nick sono opzionali) +| irc | irc_notify | list of notify | notify pointer (optional) | nome server (può iniziare o terminare con "*" come carattere jolly) (opzionale) + | irc | irc_server | elenco di server IRC | puntatore al server (opzionale) | nome server (può iniziare o terminare con "*" come carattere jolly) (opzionale) | logger | logger_buffer | elenco dei buffer logger | puntatore al logger (opzionale) | - diff --git a/doc/it/autogen/user/irc_commands.txt b/doc/it/autogen/user/irc_commands.txt index d957d78ef..6682995af 100644 --- a/doc/it/autogen/user/irc_commands.txt +++ b/doc/it/autogen/user/irc_commands.txt @@ -151,22 +151,22 @@ ........................................ ignora nick/host dai server o dai canali - list: elenca tutti gli ignore - add: aggiungi un ignore - del: elimina un ignore - numero: numero di ignore da eliminare (nella lista) - all: elimina tutti gli ignore - nick/host: nick o host da ignorare: la sintassi è "re:regex" o "mask" (una mask è una stringa con alcuni "*" per sostituire uno o più caratteri) - server: nome interno del server dove l'ignore è attivo - canale: nome del canale dove l'ignore è attivo + list: list all ignores + add: add an ignore + del: delete an ignore + number: number of ignore to delete (look at list to find it) + -all: delete all ignores + nick/host: nick or host to ignore: syntax is "re:regex" or "mask" (a mask is a string with some "*" to replace one or more chars) + server: internal server name where ignore is working + channel: channel name where ignore is working - Esempi: - ignora nick "tizio" su tutti gli host/canali: - /ignore add tizio - ignora l'host "tizio@dominio.com" sul server freenode: - /ignore add tizio@dominio.com freenode - ignora l'host "tizio*@*.dominio.com" su freenode/#weechat: - /ignore add tizio*@*.dominio.com freenode #weechat + Examples: + ignore nick "toto" everywhere: + /ignore add toto + ignore host "toto@domain.com" on freenode server: + /ignore add toto@domain.com freenode + ignore host "toto*@*.domain.com" on freenode/#weechat: + /ignore add toto*@*.domain.com freenode #weechat ........................................ • *`/info`* `[obiettivo]`:: @@ -364,6 +364,29 @@ testo: testo da inviare ........................................ +• *`/notify`* `[add nick [server [-away]]] | [del nick|-all [server]]`:: + +........................................ + add a notification for presence or away status of nicks on servers + + add: add a notification + nick: nickname + server: internal server name (by default current server) + -away: notify when away message is changed (by doing whois on nick) + del: delete a notification + -all: delete all notifications + + Without argument, this command displays notifications for current server (or all servers if command is issued on core buffer). + + Examples: + notify when "toto" joins/quits current server: + /notify add toto + notify when "toto" joins/quits freenode server: + /notify add toto freenode + notify when "toto" is away or back on freenode server: + /notify add toto freenode -away +........................................ + • *`/op`* `nick [nick]`:: ........................................ diff --git a/doc/it/autogen/user/irc_options.txt b/doc/it/autogen/user/irc_options.txt index 15a1a685f..a9e084edd 100644 --- a/doc/it/autogen/user/irc_options.txt +++ b/doc/it/autogen/user/irc_options.txt @@ -218,6 +218,16 @@ ** tipo: intero ** valori: auto, never, always (valore predefinito: `auto`) +* *irc.look.notify_tags_ison* +** descrizione: `comma separated list of tags used in messages printed by notify when a nick joins or quits server (result of command ison), for example: "notify_highglight", "notify_message" or "notify_private"` +** tipo: stringa +** valori: qualsiasi stringa (valore predefinito: `"notify_message"`) + +* *irc.look.notify_tags_whois* +** descrizione: `comma separated list of tags used in messages printed by notify when a nick away status changes (result of command whois), for example: "notify_highglight", "notify_message" or "notify_private"` +** tipo: stringa +** valori: qualsiasi stringa (valore predefinito: `"notify_message"`) + * *irc.look.part_closes_buffer* ** descrizione: `chiude buffer quando viene digitato /part nel canale` ** tipo: bool @@ -298,6 +308,16 @@ ** tipo: intero ** valori: 1 .. 3600 (valore predefinito: `1`) +* *irc.network.notify_check_ison* +** descrizione: `interval between two checks for notify with IRC command "ison" (in minutes)` +** tipo: intero +** valori: 1 .. 10080 (valore predefinito: `1`) + +* *irc.network.notify_check_whois* +** descrizione: `interval between two checks for notify with IRC command "whois" (in minutes)` +** tipo: intero +** valori: 1 .. 10080 (valore predefinito: `5`) + * *irc.network.send_unknown_commands* ** descrizione: `invia comandi sconosciuti al server` ** tipo: bool @@ -398,6 +418,11 @@ ** tipo: stringa ** valori: qualsiasi stringa (valore predefinito: `""`) +* *irc.server_default.notify* +** descrizione: `notify list for server (you should not change this option but use /notify command instead)` +** tipo: stringa +** valori: qualsiasi stringa (valore predefinito: `""`) + * *irc.server_default.password* ** descrizione: `password per il server` ** tipo: stringa |