From 114cf666060428b1e30ff816e4acd7e7d0c7279f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 26 Nov 2016 17:11:45 +0100 Subject: [PATCH] doc: add chapter about buffers lines in user's guide --- doc/de/weechat_user.de.adoc | 60 ++++++++++++++++++++++++++++++ doc/en/weechat_plugin_api.en.adoc | 27 +------------- doc/en/weechat_user.en.adoc | 59 +++++++++++++++++++++++++++++ doc/fr/weechat_plugin_api.fr.adoc | 27 +------------- doc/fr/weechat_user.fr.adoc | 60 ++++++++++++++++++++++++++++++ doc/it/weechat_plugin_api.it.adoc | 27 +------------- doc/it/weechat_user.it.adoc | 62 +++++++++++++++++++++++++++++++ doc/ja/weechat_plugin_api.ja.adoc | 28 ++------------ doc/ja/weechat_user.ja.adoc | 61 ++++++++++++++++++++++++++++++ doc/pl/weechat_user.pl.adoc | 60 ++++++++++++++++++++++++++++++ 10 files changed, 371 insertions(+), 100 deletions(-) diff --git a/doc/de/weechat_user.de.adoc b/doc/de/weechat_user.de.adoc index ae4c48b9f..d624aac48 100644 --- a/doc/de/weechat_user.de.adoc +++ b/doc/de/weechat_user.de.adoc @@ -969,6 +969,66 @@ Beispiele für eine vertikale und horizontale Fensteraufteilung: ▲ Fenster #1 (Buffer #3) ▲ Fenster #2 (Buffer #4) .... +// TRANSLATION MISSING +[[buffers_lines]] +=== Buffers lines + +[[lines_format]] +==== Format of lines + +Lines displayed in formatted buffers have following fields: + +[width="100%",cols="2,2,10",options="header"] +|=== +| Field | Displayed | Description +| date/time (message) | Yes | Date/time of message (may be past). +| date/time (print) | No | Date/time when WeeChat prints the message. +| prefix | Yes | Prefix of message, commonly a nick. +| message | Yes | The message itself. +| displayed | No | Boolean: true if line is displayed, false if line is filtered with command <>. +| highlight | No | Boolean: true if line has a highlight, false otherwise. +| tags | With `/debug tags` | Tags associated with the line (see <>). +|=== + +[[lines_tags]] +==== Lines tags + +WeeChat uses tags in lines for different purposes: + +* highlight +* notify level +* logging +* use of command <> + +Tags can be displayed with the command `/debug tags` (same command to hide them). + +Tags commonly used (non-exhaustive list): + +[width="70%",cols="1m,4",options="header"] +|=== +| Tag | Description +| no_filter | Line can not be filtered. +| no_highlight | No highlight is possible on line. +| no_log | Line is not written in log file. +| log0 ... log9 | Level of log for line (see `/help logger`). +| notify_none | Buffer with line is not added to hotlist. +| notify_message | Buffer with line is added to hotlist with level "message". +| notify_private | Buffer with line is added to hotlist with level "private". +| notify_highlight | Buffer with line is added to hotlist with level "highlight". +| self_msg | Self message. +| nick_xxx | Message is from nick "xxx". +| prefix_nick_ccc | Prefix is a nick with color "ccc". +| host_xxx | Username and host in message. +| irc_xxx | IRC message "xxx" (can be a command or a 3-digits number). +| irc_numeric | IRC numeric message. +| irc_error | Error from IRC server. +| irc_action | Action from a nick (command `/me`). +| irc_ctcp | CTCP message. +| irc_ctcp_reply | Reply to CTCP message. +| irc_smart_filter | IRC message that can be filtered with the "smart filter". +| away_info | Message with away info. +|=== + [[bars]] === Bars diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index bf894527f..daea6f10f 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -6915,31 +6915,8 @@ Arguments: * _tags_: comma separated list of tags (NULL means no tags) * _message_: message to display -Tags commonly used (non-exhaustive list): - -[width="70%",cols="^1,4",options="header"] -|=== -| Tag | Description -| no_filter | Line can not be filtered -| no_highlight | No highlight is possible on line -| no_log | Line is not written in log file -| log0 ... log9 | Level of log for line (see `/help logger`) -| notify_none | Buffer with line is not added to hotlist -| notify_message | Buffer with line is added to hotlist with level "message" -| notify_private | Buffer with line is added to hotlist with level "private" -| notify_highlight | Buffer with line is added to hotlist with level "highlight" -| nick_xxx | Message is from nick "xxx" -| prefix_nick_ccc | Prefix is a nick with color "ccc" -| host_xxx | Username and host in message -| irc_xxx | IRC message "xxx" (can be a command or a 3-digits number) -| irc_numeric | IRC numeric message -| irc_error | Error from IRC server -| irc_action | Action from a nick (command `/me`) -| irc_ctcp | CTCP message -| irc_ctcp_reply | Reply to CTCP message -| irc_smart_filter | IRC message that can be filtered with the "smart filter" -| away_info | Message with away info -|=== +See chapter about line tags in _WeeChat User's guide_ for a list of commonly +used tags in WeeChat. C example: diff --git a/doc/en/weechat_user.en.adoc b/doc/en/weechat_user.en.adoc index c5d0d6096..a8f459f4d 100644 --- a/doc/en/weechat_user.en.adoc +++ b/doc/en/weechat_user.en.adoc @@ -952,6 +952,65 @@ Example of vertical + horizontal splits: ▲ window #1 (buffer #3) ▲ window #2 (buffer #4) .... +[[buffers_lines]] +=== Buffers lines + +[[lines_format]] +==== Format of lines + +Lines displayed in formatted buffers have following fields: + +[width="100%",cols="2,2,10",options="header"] +|=== +| Field | Displayed | Description +| date/time (message) | Yes | Date/time of message (may be past). +| date/time (print) | No | Date/time when WeeChat prints the message. +| prefix | Yes | Prefix of message, commonly a nick. +| message | Yes | The message itself. +| displayed | No | Boolean: true if line is displayed, false if line is filtered with command <>. +| highlight | No | Boolean: true if line has a highlight, false otherwise. +| tags | With `/debug tags` | Tags associated with the line (see <>). +|=== + +[[lines_tags]] +==== Lines tags + +WeeChat uses tags in lines for different purposes: + +* highlight +* notify level +* logging +* use of command <> + +Tags can be displayed with the command `/debug tags` (same command to hide them). + +Tags commonly used (non-exhaustive list): + +[width="70%",cols="1m,4",options="header"] +|=== +| Tag | Description +| no_filter | Line can not be filtered. +| no_highlight | No highlight is possible on line. +| no_log | Line is not written in log file. +| log0 ... log9 | Level of log for line (see `/help logger`). +| notify_none | Buffer with line is not added to hotlist. +| notify_message | Buffer with line is added to hotlist with level "message". +| notify_private | Buffer with line is added to hotlist with level "private". +| notify_highlight | Buffer with line is added to hotlist with level "highlight". +| self_msg | Self message. +| nick_xxx | Message is from nick "xxx". +| prefix_nick_ccc | Prefix is a nick with color "ccc". +| host_xxx | Username and host in message. +| irc_xxx | IRC message "xxx" (can be a command or a 3-digits number). +| irc_numeric | IRC numeric message. +| irc_error | Error from IRC server. +| irc_action | Action from a nick (command `/me`). +| irc_ctcp | CTCP message. +| irc_ctcp_reply | Reply to CTCP message. +| irc_smart_filter | IRC message that can be filtered with the "smart filter". +| away_info | Message with away info. +|=== + [[bars]] === Bars diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index 92bec1c2d..b9f669880 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -7029,31 +7029,8 @@ Paramètres : étiquette) * _message_ : message à afficher -Tags couramment utilisés (liste non exhaustive) : - -[width="70%",cols="^1,4",options="header"] -|=== -| Tag | Description -| no_filter | La ligne ne peut pas être filtrée -| no_highlight | Aucun highlight n'est possible sur cette ligne -| no_log | La ligne n'est pas écrite dans le fichier de log -| log0 ... log9 | Niveau de log pour la ligne (voir `/help logger`) -| notify_none | Le tampon avec la ligne ne sera pas ajouté à la "hotlist" -| notify_message | Le tampon avec la ligne sera ajouté à la "hotlist" avec le niveau "message" -| notify_private | Le tampon avec la ligne sera ajouté à la "hotlist" avec le niveau "private" -| notify_highlight | Le tampon avec la ligne sera ajouté à la "hotlist" avec le niveau "highlight" -| nick_xxx | Le message vient du pseudo "xxx" -| prefix_nick_ccc | Le préfixe est un pseudo avec la couleur "ccc" -| host_xxx | Nom d'utilisateur et hôte dans le message -| irc_xxx | Message IRC "xxx" (peut-être une commande ou un numérique sur 3 chiffres) -| irc_numeric | Message IRC numérique -| irc_error | Erreur du serveur IRC -| irc_action | Action d'un pseudo (commande `/me`) -| irc_ctcp | Message CTCP -| irc_ctcp_reply | Réponse à un message CTCP -| irc_smart_filter | Message IRC qui peut être filtré avec le "smart filter" (filtre intelligent) -| away_info | Message avec une info d'absence -|=== +Voir le chapitre sur les étiquettes des lignes dans le _Guide utilisateur WeeChat_ +pour une liste des étiquettes couramment utilisées dans WeeChat. Exemple en C : diff --git a/doc/fr/weechat_user.fr.adoc b/doc/fr/weechat_user.fr.adoc index 967dd50eb..78634ee83 100644 --- a/doc/fr/weechat_user.fr.adoc +++ b/doc/fr/weechat_user.fr.adoc @@ -972,6 +972,66 @@ Exemple de découpage vertical + horizontal : ▲ fenêtre n°1 (tampon n°3) ▲ fenêtre n°2 (tampon n°4) .... +[[buffers_lines]] +=== Lignes des tampons + +[[lines_format]] +==== Format des lignes + +Les lignes affichées dans les tampons formatés ont les champs suivants : + +[width="100%",cols="2,2,10",options="header"] +|=== +| Champ | Affiché | Description +| date/heure (message) | Oui | Date/heure du message (peut être dans le passé). +| date/heure (print) | Non | Date/heure lorsque WeeChat affiche le message. +| préfixe | Oui | Préfixe du message, couramment un pseudo. +| message | Oui | Le message lui-même. +| affichée | Non | Booléen : vrai si la ligne est affichée, faux si la ligne est filtrée avec la commande <>. +| highlight | Non | Booléen : vrai si la ligne a un highlight, faux sinon. +| étiquettes | Avec `/debug tags` | Étiquettes associées avec la ligne (voir <>). +|=== + +[[lines_tags]] +==== Étiquettes des lignes + +WeeChat utilise des étiquettes (« tags ») dans les lignes pour différentes raisons : + +* highlight +* niveau de notification +* enregistrement (« log ») +* utilisation de la commande <> + +Les étiquettes peuvent être affichées avec la commande `/debug tags` +(même commande pour les cacher). + +Les étiquettes couramment utilisées (liste non exhaustive) : + +[width="70%",cols="1m,4",options="header"] +|=== +| Étiquette | Description +| no_filter | La ligne ne peut pas être filtrée. +| no_highlight | Aucun highlight n'est possible sur cette ligne. +| no_log | La ligne n'est pas écrite dans le fichier de log. +| log0 ... log9 | Niveau de log pour la ligne (voir `/help logger`). +| notify_none | Le tampon avec la ligne ne sera pas ajouté à la "hotlist". +| notify_message | Le tampon avec la ligne sera ajouté à la "hotlist" avec le niveau "message". +| notify_private | Le tampon avec la ligne sera ajouté à la "hotlist" avec le niveau "private". +| notify_highlight | Le tampon avec la ligne sera ajouté à la "hotlist" avec le niveau "highlight". +| self_msg | Message de soi-même. +| nick_xxx | Le message vient du pseudo "xxx". +| prefix_nick_ccc | Le préfixe est un pseudo avec la couleur "ccc". +| host_xxx | Nom d'utilisateur et hôte dans le message. +| irc_xxx | Message IRC "xxx" (peut-être une commande ou un numérique sur 3 chiffres). +| irc_numeric | Message IRC numérique. +| irc_error | Erreur du serveur IRC. +| irc_action | Action d'un pseudo (commande `/me`). +| irc_ctcp | Message CTCP. +| irc_ctcp_reply | Réponse à un message CTCP. +| irc_smart_filter | Message IRC qui peut être filtré avec le "smart filter" (filtre intelligent). +| away_info | Message avec une info d'absence. +|=== + [[bars]] === Barres diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index 6b728e504..3a2658f26 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -7094,32 +7094,9 @@ Argomenti: * _tags_: lista di tag separati da virgole (NULL means no tags) * _message_: messaggio da visualizzare -Tag usati di frequente (elenco non esaustivo): - -[width="70%",cols="^1,4",options="header"] -|=== -| Tag | Descrizione -| no_filter | La riga non può essere filtrata -| no_highlight | Evidenziazione non possibile sulla riga -| no_log | La riga non viene scritta nel file di log -| log0 ... log9 | Livello di log per la riga (consultare `/help logger`) -| notify_none | Il buffer con la riga non viene aggiunto alla hotlist -| notify_message | Il buffer con la riga viene aggiunto alla hotlist con il livello "message" -| notify_private | Il buffer con la riga viene aggiunto alla hotlist con il livello "private" -| notify_highlight | Il buffer con la riga viene aggiunto alla hotlist con il livello "higlight" -| nick_xxx | Il messaggio viene dal nick "xxx" -| prefix_nick_ccc | Il prefisso è un nick con il colore "ccc" // TRANSLATION MISSING -| host_xxx | Username and host in message -| irc_xxx | Messaggio IRC "xxx" (può essere un comando o un numero di 3 cifre) -| irc_numeric | Messaggio IRC numerico -| irc_error | Errore dal server IRC -| irc_action | Azione da un nic (comando `/me`) -| irc_ctcp | Messaggio CTCP -| irc_ctcp_reply | Risposta ad un messaggio CTCP -| irc_smart_filter | Messaggio IRC filtrabile tramite lo "smart filter" (filtro intelligente) -| away_info | Messagio con informazioni sull'assenza -|=== +See chapter about line tags in _WeeChat User's guide_ for a list of commonly +used tags in WeeChat. Esempio in C: diff --git a/doc/it/weechat_user.it.adoc b/doc/it/weechat_user.it.adoc index 3f589b92d..76726509c 100644 --- a/doc/it/weechat_user.it.adoc +++ b/doc/it/weechat_user.it.adoc @@ -1010,6 +1010,68 @@ Esempio di split orizzontale + verticale: ▲ window #1 (buffer #3) ▲ window #2 (buffer #4) .... +// TRANSLATION MISSING +[[buffers_lines]] +=== Buffers lines + +[[lines_format]] +==== Format of lines + +Lines displayed in formatted buffers have following fields: + +[width="100%",cols="2,2,10",options="header"] +|=== +| Field | Displayed | Description +| date/time (message) | Yes | Date/time of message (may be past). +| date/time (print) | No | Date/time when WeeChat prints the message. +| prefix | Yes | Prefix of message, commonly a nick. +| message | Yes | The message itself. +| displayed | No | Boolean: true if line is displayed, false if line is filtered with command <>. +| highlight | No | Boolean: true if line has a highlight, false otherwise. +| tags | With `/debug tags` | Tags associated with the line (see <>). +|=== + +[[lines_tags]] +==== Lines tags + +WeeChat uses tags in lines for different purposes: + +* highlight +* notify level +* logging +* use of command <> + +Tags can be displayed with the command `/debug tags` (same command to hide them). + +Tag usati di frequente (elenco non esaustivo): + +[width="70%",cols="1m,4",options="header"] +|=== +| Tag | Descrizione +| no_filter | La riga non può essere filtrata. +| no_highlight | Evidenziazione non possibile sulla riga. +| no_log | La riga non viene scritta nel file di log. +| log0 ... log9 | Livello di log per la riga (consultare `/help logger`). +| notify_none | Il buffer con la riga non viene aggiunto alla hotlist. +| notify_message | Il buffer con la riga viene aggiunto alla hotlist con il livello "message". +| notify_private | Il buffer con la riga viene aggiunto alla hotlist con il livello "private". +| notify_highlight | Il buffer con la riga viene aggiunto alla hotlist con il livello "higlight". +// TRANSLATION MISSING +| self_msg | Self message. +| nick_xxx | Il messaggio viene dal nick "xxx". +| prefix_nick_ccc | Il prefisso è un nick con il colore "ccc". +// TRANSLATION MISSING +| host_xxx | Username and host in message. +| irc_xxx | Messaggio IRC "xxx" (può essere un comando o un numero di 3 cifre). +| irc_numeric | Messaggio IRC numerico. +| irc_error | Errore dal server IRC. +| irc_action | Azione da un nic (comando `/me`). +| irc_ctcp | Messaggio CTCP. +| irc_ctcp_reply | Risposta ad un messaggio CTCP. +| irc_smart_filter | Messaggio IRC filtrabile tramite lo "smart filter" (filtro intelligente). +| away_info | Messagio con informazioni sull'assenza. +|=== + // TRANSLATION MISSING [[bars]] === Bars diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index 049121615..b662efea1 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -6921,31 +6921,9 @@ void weechat_printf_date_tags (struct t_gui_buffer *buffer, time_t date, * _tags_: タグのコンマ区切りリスト (タグを指定しない場合は NULL) * _message_: 表示するメッセージ -通常使用するタグ (一部抜粋したリスト): - -[width="70%",cols="^1,4",options="header"] -|=== -| タグ | 説明 -| no_filter | フィルタできない行 -| no_highlight | ハイライトできない行 -| no_log | ログファイルに書き込まれない行 -| log0 ... log9 | 行に対するログレベル (`/help logger` を参照) -| notify_none | この行を含むバッファはホットリストに追加されない -| notify_message | この行を含むバッファは "message" レベルでホットリストに追加される -| notify_private | この行を含むバッファは "private" レベルでホットリストに追加される -| notify_highlight | この行を含むバッファは "highlight" レベルでホットリストに追加される -| nick_xxx | ニックネーム "xxx" からのメッセージ -| prefix_nick_ccc | プレフィックスを色 "ccc" のニックネームにする -| host_xxx | メッセージ中のユーザ名とホスト -| irc_xxx | IRC メッセージ "xxx" (コマンドまたは 3 桁の番号) -| irc_numeric | IRC 番号メッセージ -| irc_error | IRC からのエラー -| irc_action | あるニックネームからのアクション (`/me` コマンド) -| irc_ctcp | CTCP メッセージ -| irc_ctcp_reply | CTCP メッセージに対する返信 -| irc_smart_filter | "smart filter" でフィルタリング可能な IRC メッセージ -| away_info | 離席状態のメッセージ -|=== +// TRANSLATION MISSING +See chapter about line tags in _WeeChat User's guide_ for a list of commonly +used tags in WeeChat. C 言語での使用例: diff --git a/doc/ja/weechat_user.ja.adoc b/doc/ja/weechat_user.ja.adoc index fe1437f16..da70757a2 100644 --- a/doc/ja/weechat_user.ja.adoc +++ b/doc/ja/weechat_user.ja.adoc @@ -955,6 +955,67 @@ _window_ ▲ ウィンドウ #1 (バッファ #3) ▲ ウィンドウ #2 (バッファ #4) .... +// TRANSLATION MISSING +[[buffers_lines]] +=== Buffers lines + +[[lines_format]] +==== Format of lines + +Lines displayed in formatted buffers have following fields: + +[width="100%",cols="2,2,10",options="header"] +|=== +| Field | Displayed | Description +| date/time (message) | Yes | Date/time of message (may be past). +| date/time (print) | No | Date/time when WeeChat prints the message. +| prefix | Yes | Prefix of message, commonly a nick. +| message | Yes | The message itself. +| displayed | No | Boolean: true if line is displayed, false if line is filtered with command <>. +| highlight | No | Boolean: true if line has a highlight, false otherwise. +| tags | With `/debug tags` | Tags associated with the line (see <>). +|=== + +[[lines_tags]] +==== Lines tags + +WeeChat uses tags in lines for different purposes: + +* highlight +* notify level +* logging +* use of command <> + +Tags can be displayed with the command `/debug tags` (same command to hide them). + +通常使用するタグ (一部抜粋したリスト): + +[width="70%",cols="1m,4",options="header"] +|=== +| タグ | 説明 +| no_filter | フィルタできない行 +| no_highlight | ハイライトできない行 +| no_log | ログファイルに書き込まれない行 +| log0 ... log9 | 行に対するログレベル (`/help logger` を参照) +| notify_none | この行を含むバッファはホットリストに追加されない +| notify_message | この行を含むバッファは "message" レベルでホットリストに追加される +| notify_private | この行を含むバッファは "private" レベルでホットリストに追加される +| notify_highlight | この行を含むバッファは "highlight" レベルでホットリストに追加される +// TRANSLATION MISSING +| self_msg | Self message. +| nick_xxx | ニックネーム "xxx" からのメッセージ +| prefix_nick_ccc | プレフィックスを色 "ccc" のニックネームにする +| host_xxx | メッセージ中のユーザ名とホスト +| irc_xxx | IRC メッセージ "xxx" (コマンドまたは 3 桁の番号) +| irc_numeric | IRC 番号メッセージ +| irc_error | IRC からのエラー +| irc_action | あるニックネームからのアクション (`/me` コマンド) +| irc_ctcp | CTCP メッセージ +| irc_ctcp_reply | CTCP メッセージに対する返信 +| irc_smart_filter | "smart filter" でフィルタリング可能な IRC メッセージ +| away_info | 離席状態のメッセージ +|=== + [[bars]] === バー diff --git a/doc/pl/weechat_user.pl.adoc b/doc/pl/weechat_user.pl.adoc index be6d7cf5b..d7a7f0194 100644 --- a/doc/pl/weechat_user.pl.adoc +++ b/doc/pl/weechat_user.pl.adoc @@ -961,6 +961,66 @@ Przykład podziałów pionowego i poziomego: ▲ window #1 (buffer #3) ▲ window #2 (buffer #4) .... +// TRANSLATION MISSING +[[buffers_lines]] +=== Buffers lines + +[[lines_format]] +==== Format of lines + +Lines displayed in formatted buffers have following fields: + +[width="100%",cols="2,2,10",options="header"] +|=== +| Field | Displayed | Description +| date/time (message) | Yes | Date/time of message (may be past). +| date/time (print) | No | Date/time when WeeChat prints the message. +| prefix | Yes | Prefix of message, commonly a nick. +| message | Yes | The message itself. +| displayed | No | Boolean: true if line is displayed, false if line is filtered with command <>. +| highlight | No | Boolean: true if line has a highlight, false otherwise. +| tags | With `/debug tags` | Tags associated with the line (see <>). +|=== + +[[lines_tags]] +==== Lines tags + +WeeChat uses tags in lines for different purposes: + +* highlight +* notify level +* logging +* use of command <> + +Tags can be displayed with the command `/debug tags` (same command to hide them). + +Tags commonly used (non-exhaustive list): + +[width="70%",cols="1m,4",options="header"] +|=== +| Tag | Description +| no_filter | Line can not be filtered. +| no_highlight | No highlight is possible on line. +| no_log | Line is not written in log file. +| log0 ... log9 | Level of log for line (see `/help logger`). +| notify_none | Buffer with line is not added to hotlist. +| notify_message | Buffer with line is added to hotlist with level "message". +| notify_private | Buffer with line is added to hotlist with level "private". +| notify_highlight | Buffer with line is added to hotlist with level "highlight". +| self_msg | Self message. +| nick_xxx | Message is from nick "xxx". +| prefix_nick_ccc | Prefix is a nick with color "ccc". +| host_xxx | Username and host in message. +| irc_xxx | IRC message "xxx" (can be a command or a 3-digits number). +| irc_numeric | IRC numeric message. +| irc_error | Error from IRC server. +| irc_action | Action from a nick (command `/me`). +| irc_ctcp | CTCP message. +| irc_ctcp_reply | Reply to CTCP message. +| irc_smart_filter | IRC message that can be filtered with the "smart filter". +| away_info | Message with away info. +|=== + [[bars]] === Paski