summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/de/autogen/user/weechat_commands.txt3
-rw-r--r--doc/en/autogen/user/weechat_commands.txt3
-rw-r--r--doc/en/weechat_plugin_api.en.txt49
-rw-r--r--doc/fr/autogen/user/weechat_commands.txt3
-rw-r--r--doc/fr/weechat_plugin_api.fr.txt50
-rw-r--r--doc/it/autogen/user/weechat_commands.txt3
-rw-r--r--doc/it/weechat_plugin_api.it.txt49
7 files changed, 102 insertions, 58 deletions
diff --git a/doc/de/autogen/user/weechat_commands.txt b/doc/de/autogen/user/weechat_commands.txt
index 169740040..d476b5285 100644
--- a/doc/de/autogen/user/weechat_commands.txt
+++ b/doc/de/autogen/user/weechat_commands.txt
@@ -173,7 +173,8 @@ Examples:
/debug list
set <plugin> <level>
dump [<plugin>]
- buffer|color|cursor|infolists|memory|mouse|tags|term|windows
+ buffer|color|infolists|memory|tags|term|windows
+ mouse|cursor [verbose]
hdata [free]
list: list plugins with debug levels
diff --git a/doc/en/autogen/user/weechat_commands.txt b/doc/en/autogen/user/weechat_commands.txt
index 3e8fd768a..281a97456 100644
--- a/doc/en/autogen/user/weechat_commands.txt
+++ b/doc/en/autogen/user/weechat_commands.txt
@@ -173,7 +173,8 @@ Examples:
/debug list
set <plugin> <level>
dump [<plugin>]
- buffer|color|cursor|infolists|memory|mouse|tags|term|windows
+ buffer|color|infolists|memory|tags|term|windows
+ mouse|cursor [verbose]
hdata [free]
list: list plugins with debug levels
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt
index 4c0b1f2db..b0e171726 100644
--- a/doc/en/weechat_plugin_api.en.txt
+++ b/doc/en/weechat_plugin_api.en.txt
@@ -8272,30 +8272,43 @@ hashtable.
Content of hashtable sent to callback (keys and values are of type "string"):
-[width="100%",cols="4m,6,8,8",options="header"]
+[width="100%",cols="5m,5,8,3",options="header"]
|========================================
-| Key ^(1)^ | Description | Value | Value if N/A
-| _x | column on screen 2+| "0" ... "n"
-| _y | line on screen 2+| "0" ... "n"
-| _window | pointer of window | "0x12345678" | "0x0"
-| _window_number | number of window | "1" ... "n" | "*"
-| _chat | chat area indicator | "0" or "1" | "0"
-| _buffer | pointer of buffer | "0x12345678" | "0x0"
-| _buffer_number | number of buffer | "1" ... "n" | ""
-| _buffer_plugin | plugin name of buffer | "core", "irc", ... | ""
-| _buffer_name | name of buffer | "weechat", "freenode.#weechat", ... | ""
-| _bar_name | name of bar | "title", "nicklist", ... | ""
-| _bar_filling | filling of bar | "horizontal", "vertical", ... | ""
-| _bar_item_name | name of bar item | "buffer_nicklist", ... | ""
-| _item_line | line in bar item | "0" ... "n" | "-1"
-| _item_col | column in bar item | "0" ... "n" | "-1"
-| _key | key or mouse event 2+| "button1", "button2-gesture-left", ...
+| Key ^(1)^ | Description | Value examples | Value if N/A
+| _x | column on screen 2+| "0" ... "n"
+| _y | line on screen 2+| "0" ... "n"
+| _key | key or mouse event 2+| "button1", "button2-gesture-left", ...
+| _window | pointer to window | "0x12345678" | "0x0"
+| _window_number | number of window | "1" ... "n" | "*"
+| _buffer | pointer to buffer | "0x12345678" | "0x0"
+| _buffer_number | number of buffer | "1" ... "n" | "-1"
+| _buffer_plugin | plugin name of buffer | "core", "irc", ... | ""
+| _buffer_name | name of buffer | "weechat", "freenode.#weechat", ... | ""
+| _chat | chat area indicator | "0" or "1" | "0"
+| _chat_line_y | line number ^(2)^ | "0" ... "n" | "-1"
+| _chat_line_date | line date | "1313237175" | "0"
+| _chat_line_date_printed | line date ^(3)^ | "1313237175" | "0"
+| _chat_line_time | time displayed | "14:06:15" | ""
+| _chat_line_tags | tags of line | "irc_privmsg,notify_message,nick_FlashCode,log1" | ""
+| _chat_line_prefix | prefix of line | "@FlashCode" | ""
+| _chat_line_message | message of line | "Hello world!" | ""
+| _chat_word | word at (x,y) | "Hello" | ""
+| _chat_bol | beginning of line ⇒ (x-1,y) | "He" | ""
+| _chat_eol | (x,y) ⇒ end of line | "llo world!" | ""
+| _bar_name | name of bar | "title", "nicklist", ... | ""
+| _bar_filling | filling of bar | "horizontal", "vertical", ... | ""
+| _bar_item_name | name of bar item | "buffer_nicklist", "hotlist", ... | ""
+| _bar_item_line | line in bar item | "0" ... "n" | "-1"
+| _bar_item_col | column in bar item | "0" ... "n" | "-1"
|========================================
[NOTE]
^(1)^ There are same keys suffixed with "2" (ie: "_x2", "_y2", "_window2", ...)
with info on second point (useful only for mouse gestures, to know where mouse
-button has been released).
+button has been released). +
+^(2)^ Line number is set only for buffers with free content. +
+^(3)^ It is date when WeeChat adds line in buffer (greater or equal to
+"chat_line_date").
Extra info for bar item "buffer_nicklist":
diff --git a/doc/fr/autogen/user/weechat_commands.txt b/doc/fr/autogen/user/weechat_commands.txt
index 9fa5d9d57..8ebbce431 100644
--- a/doc/fr/autogen/user/weechat_commands.txt
+++ b/doc/fr/autogen/user/weechat_commands.txt
@@ -173,7 +173,8 @@ Exemples:
/debug list
set <extension> <niveau>
dump [<extension>]
- buffer|color|cursor|infolists|memory|mouse|tags|term|windows
+ buffer|color|infolists|memory|tags|term|windows
+ cursor|mouse [verbose]
hdata [free]
list: lister les extensions avec leur niveau de debug
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt
index 48d7f336f..dade01995 100644
--- a/doc/fr/weechat_plugin_api.fr.txt
+++ b/doc/fr/weechat_plugin_api.fr.txt
@@ -8409,31 +8409,45 @@ correspond avant d'utiliser les informations de la hashtable.
Contenu de la hashtable envoyée au "callback" (les clés et valeurs sont de type
"string) :
-[width="100%",cols="4m,6,8,8",options="header"]
+[width="100%",cols="5m,5,8,3",options="header"]
|========================================
-| Clé ^(1)^ | Description | Valeur | Valeur si non applicable
-| _x | colonne sur l'écran 2+| "0" ... "n"
-| _y | ligne sur l'écran 2+| "0" ... "n"
-| _window | pointeur de la fenêtre | "0x12345678" | "0x0"
-| _window_number | numéro de la fenêtre | "1" ... "n" | "*"
-| _chat | indicateur zone "chat" | "0" ou "1" | "0"
-| _buffer | pointeur du tampon | "0x12345678" | "0x0"
-| _buffer_number | numéro du tampon | "1" ... "n" | ""
-| _buffer_plugin | nom d'extension du tampon | "core", "irc", ... | ""
-| _buffer_name | nom du tampon | "weechat", "freenode.#weechat", ... | ""
-| _bar_name | nom de la barre | "title", "nicklist", ... | ""
-| _bar_filling | remplissage de la barre | "horizontal", "vertical", ... | ""
-| _bar_item_name | nom de l'objet de barre | "buffer_nicklist", ... | ""
-| _item_line | ligne dans l'objet de barre | "0" ... "n" | "-1"
-| _item_col | colonne dans l'objet de barre | "0" ... "n" | "-1"
-| _key | touche ou évènement souris 2+| "button1", "button2-gesture-left", ...
+| Clé ^(1)^ | Description | Exemples de valeur | Valeur si non applicable
+| _x | colonne sur l'écran 2+| "0" ... "n"
+| _y | ligne sur l'écran 2+| "0" ... "n"
+| _key | touche ou évènement souris 2+| "button1", "button2-gesture-left", ...
+| _window | pointeur vers la fenêtre | "0x12345678" | "0x0"
+| _window_number | numéro de la fenêtre | "1" ... "n" | "*"
+| _buffer | pointeur vers le tampon | "0x12345678" | "0x0"
+| _buffer_number | numéro du tampon | "1" ... "n" | "-1"
+| _buffer_plugin | nom d'extension du tampon | "core", "irc", ... | ""
+| _buffer_name | nom du tampon | "weechat", "freenode.#weechat", ... | ""
+| _chat | indicateur zone "chat" | "0" ou "1" | "0"
+| _chat_line_y | numéro de ligne ^(2)^ | "0" ... "n" | "-1"
+| _chat_line_date | date de la ligne | "1313237175" | "0"
+| _chat_line_date_printed | date de la ligne ^(3)^ | "1313237175" | "0"
+| _chat_line_time | heure affichée | "14:06:15" | ""
+| _chat_line_tags | étiquettes de la ligne | "irc_privmsg,notify_message,nick_FlashCode,log1" | ""
+| _chat_line_prefix | préfixe de la ligne | "@FlashCode" | ""
+| _chat_line_message | message de la ligne | "Hello world!" | ""
+| _chat_word | mot à la position (x,y) | "Hello" | ""
+| _chat_bol | début de ligne ⇒ (x-1,y) | "He" | ""
+| _chat_eol | (x,y) ⇒ fin de ligne | "llo world!" | ""
+| _bar_name | nom de la barre | "title", "nicklist", ... | ""
+| _bar_filling | remplissage de la barre | "horizontal", "vertical", ... | ""
+| _bar_item_name | nom de l'objet de barre | "buffer_nicklist", "hotlist", ... | ""
+| _bar_item_line | ligne dans l'objet de barre | "0" ... "n" | "-1"
+| _bar_item_col | colonne dans l'objet de barre | "0" ... "n" | "-1"
|========================================
[NOTE]
^(1)^ Il y a les mêmes clés suffixées par "2" (c'est-à-dire : "_x2", "_y2",
"_window2", ...) avec l'information sur le second point (pratique seulement
pour les gestes de souris, pour savoir où le bouton de la souris a été
-relâché).
+relâché). +
+^(2)^ Le numéro de ligne n'est renseigné que pour les tampons avec contenu
+libre. +
+^(3)^ Il s'agit de la date lorsque WeeChat ajoute la ligne dans le tampon
+(supérieure ou égale à "chat_line_date").
Informations additionnelles pour l'objet de barre "buffer_nicklist":
diff --git a/doc/it/autogen/user/weechat_commands.txt b/doc/it/autogen/user/weechat_commands.txt
index 42b971913..7e4c08950 100644
--- a/doc/it/autogen/user/weechat_commands.txt
+++ b/doc/it/autogen/user/weechat_commands.txt
@@ -173,7 +173,8 @@ Examples:
/debug list
set <plugin> <level>
dump [<plugin>]
- buffer|color|cursor|infolists|memory|mouse|tags|term|windows
+ buffer|color|infolists|memory|tags|term|windows
+ mouse|cursor [verbose]
hdata [free]
list: list plugins with debug levels
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt
index ae03a1d14..ba37be461 100644
--- a/doc/it/weechat_plugin_api.it.txt
+++ b/doc/it/weechat_plugin_api.it.txt
@@ -8329,30 +8329,43 @@ hashtable.
Content of hashtable sent to callback (keys and values are of type "string"):
-[width="100%",cols="4m,6,8,8",options="header"]
+[width="100%",cols="5m,5,8,3",options="header"]
|========================================
-| Key ^(1)^ | Description | Value | Value if N/A
-| _x | column on screen 2+| "0" ... "n"
-| _y | line on screen 2+| "0" ... "n"
-| _window | pointer of window | "0x12345678" | "0x0"
-| _window_number | number of window | "1" ... "n" | "*"
-| _chat | chat area indicator | "0" or "1" | "0"
-| _buffer | pointer of buffer | "0x12345678" | "0x0"
-| _buffer_number | number of buffer | "1" ... "n" | ""
-| _buffer_plugin | plugin name of buffer | "core", "irc", ... | ""
-| _buffer_name | name of buffer | "weechat", "freenode.#weechat", ... | ""
-| _bar_name | name of bar | "title", "nicklist", ... | ""
-| _bar_filling | filling of bar | "horizontal", "vertical", ... | ""
-| _bar_item_name | name of bar item | "buffer_nicklist", ... | ""
-| _item_line | line in bar item | "0" ... "n" | "-1"
-| _item_col | column in bar item | "0" ... "n" | "-1"
-| _key | key or mouse event 2+| "button1", "button2-gesture-left", ...
+| Key ^(1)^ | Description | Value examples | Value if N/A
+| _x | column on screen 2+| "0" ... "n"
+| _y | line on screen 2+| "0" ... "n"
+| _key | key or mouse event 2+| "button1", "button2-gesture-left", ...
+| _window | pointer to window | "0x12345678" | "0x0"
+| _window_number | number of window | "1" ... "n" | "*"
+| _buffer | pointer to buffer | "0x12345678" | "0x0"
+| _buffer_number | number of buffer | "1" ... "n" | "-1"
+| _buffer_plugin | plugin name of buffer | "core", "irc", ... | ""
+| _buffer_name | name of buffer | "weechat", "freenode.#weechat", ... | ""
+| _chat | chat area indicator | "0" or "1" | "0"
+| _chat_line_y | line number ^(2)^ | "0" ... "n" | "-1"
+| _chat_line_date | line date | "1313237175" | "0"
+| _chat_line_date_printed | line date ^(3)^ | "1313237175" | "0"
+| _chat_line_time | time displayed | "14:06:15" | ""
+| _chat_line_tags | tags of line | "irc_privmsg,notify_message,nick_FlashCode,log1" | ""
+| _chat_line_prefix | prefix of line | "@FlashCode" | ""
+| _chat_line_message | message of line | "Hello world!" | ""
+| _chat_word | word at (x,y) | "Hello" | ""
+| _chat_bol | beginning of line ⇒ (x-1,y) | "He" | ""
+| _chat_eol | (x,y) ⇒ end of line | "llo world!" | ""
+| _bar_name | name of bar | "title", "nicklist", ... | ""
+| _bar_filling | filling of bar | "horizontal", "vertical", ... | ""
+| _bar_item_name | name of bar item | "buffer_nicklist", "hotlist", ... | ""
+| _bar_item_line | line in bar item | "0" ... "n" | "-1"
+| _bar_item_col | column in bar item | "0" ... "n" | "-1"
|========================================
[NOTE]
^(1)^ There are same keys suffixed with "2" (ie: "_x2", "_y2", "_window2", ...)
with info on second point (useful only for mouse gestures, to know where mouse
-button has been released).
+button has been released). +
+^(2)^ Line number is set only for buffers with free content. +
+^(3)^ It is date when WeeChat adds line in buffer (greater or equal to
+"chat_line_date").
Extra info for bar item "buffer_nicklist":