diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-04-13 13:53:16 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-04-13 13:53:16 +0200 |
commit | 30768d4d24a6a9047dabd473cdbce434439d48c2 (patch) | |
tree | 1864c8f39bd8111d3053da6013f3c366036af029 /doc/de/weechat_user.de.adoc | |
parent | 8bc06ea101ad05466e420e63b46bdc7039991a2e (diff) | |
download | weechat-30768d4d24a6a9047dabd473cdbce434439d48c2.zip |
trigger: add hook "info_hashtable"
Diffstat (limited to 'doc/de/weechat_user.de.adoc')
-rw-r--r-- | doc/de/weechat_user.de.adoc | 52 |
1 files changed, 38 insertions, 14 deletions
diff --git a/doc/de/weechat_user.de.adoc b/doc/de/weechat_user.de.adoc index 04056e7f1..39ab65e39 100644 --- a/doc/de/weechat_user.de.adoc +++ b/doc/de/weechat_user.de.adoc @@ -3667,7 +3667,7 @@ Ein Trigger hat folgende Optionen (Benennung ist Wenn die Option auf `off` gesetzt ist, dann ist der Trigger deaktiviert und die Ausführung ist gestoppt. | hook | `signal`, `hsignal`, `modifier`, `line`, `print`, `command`, - `command_run`, `timer`, `config`, `focus`, `info` | + `command_run`, `timer`, `config`, `focus`, `info`, `info_hashtable` | Der hook welcher durch Trigger genutzt werden soll. Für weitere Informationen siehe link:weechat_plugin_api.en.html#hooks[Anleitung für API Erweiterung / Hooks] (Englisch). @@ -3721,7 +3721,7 @@ abgearbeitet: . ersetze Text mittels erweitertem regulärer POSIX Ausdruck (sofern im Trigger definiert) . ein oder mehrere Befehle werden ausgeführt (sofern im Trigger definiert) . Beendigung mit einem Rückgabewert (ausgenommen sind die Hooks _modifier_, - _line_, _focus_ und _info_) + _line_, _focus_, _info_ und _info_hashtable_) . Aktion welche nach der Abarbeitung des Triggers ausgeführt werden soll (falls der Wert abweichend von `none` sein sollte). [[trigger_hook_arguments]] @@ -3826,6 +3826,14 @@ ein Semikolon getrennt. 3. ... | `+my_info+` | link:weechat_plugin_api.en.html#_hook_info[hook_info] (Englisch) + +// TRANSLATION MISSING +| info_hashtable | + 1. info name (Priorität erlaubt) (erforderlich) + + 2. info name (Priorität erlaubt) + + 3. ... | + `+my_info+` | + link:weechat_plugin_api.en.html#_hook_info_hashtable[hook_info_hashtable] (Englisch) |=== [[trigger_conditions]] @@ -3862,18 +3870,20 @@ welche abhängig von dem genutzten Hook ist: [width="100%",cols="2,3,7",options="header"] |=== -| Hook | Standard-Variable | Update allowed ^(1)^ -| signal | tg_signal_data | -| hsignal | | -| modifier | tg_string | tg_string -| line | message | buffer, buffer_name, y, date, date_printed, str_time, tags, notify_level, highlight, prefix, message -| print | tg_message | -| command | tg_argv_eol1 | -| command_run | tg_command | -| timer | tg_remaining_calls | -| config | tg_value | -| focus | | -| info | tg_info | tg_info +| Hook | Standard-Variable | Update allowed ^(1)^ +| signal | tg_signal_data | +| hsignal | | +| modifier | tg_string | tg_string +| line | message | buffer, buffer_name, y, date, date_printed, str_time, tags, notify_level, highlight, prefix, message +| print | tg_message | +| command | tg_argv_eol1 | +| command_run | tg_command | +| timer | tg_remaining_calls | +| config | tg_value | +| focus | | +| info | tg_info | tg_info +// TRANSLATION MISSING +| info_hashtable | | all variables received in hashtable |=== [NOTE] @@ -4189,6 +4199,20 @@ Der Callback von "info" legt folgende Variablen in der Hashtable an: | tg_info | string | Empty string (the info to return). |=== +// TRANSLATION MISSING +[[trigger_data_info_hashtable]] +===== Info_hashtable + +Der Callback von "info_hashtable" legt folgende Variablen in der Hashtable an: + +[width="100%",cols="3m,2,14",options="header"] +|=== +| Variable | Typ | Beschreibung +| tg_info_name | string | Name of info. +|=== + +Das Hashtable enthält alle Schlüssel/Werte (Typ: string/string). + [[trigger_examples]] ==== Beispiele |