summaryrefslogtreecommitdiff
path: root/doc/de/weechat_scripting.de.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/de/weechat_scripting.de.adoc')
-rw-r--r--doc/de/weechat_scripting.de.adoc19
1 files changed, 13 insertions, 6 deletions
diff --git a/doc/de/weechat_scripting.de.adoc b/doc/de/weechat_scripting.de.adoc
index 8b339b8b7..e575c9b1e 100644
--- a/doc/de/weechat_scripting.de.adoc
+++ b/doc/de/weechat_scripting.de.adoc
@@ -1304,6 +1304,11 @@ Das Ergebnis ist eine Hashtabelle mit folgenden Schlüsseln
Tags in der Nachricht (kann leer sein). |
`+time=2015-06-27T16:40:35.000Z+`
+// TRANSLATION MISSING
+| tag_xxx | 3.3 |
+ Unescaped value of tag "xxx" (one key per tag). |
+ `+2015-06-27T16:40:35.000Z+`
+
| message_without_tags | 0.4.0 |
Die IRC Nachricht ohne Tags (wie eine Nachricht ohne Tags). |
`+:nick!user@host PRIVMSG #weechat :hello!+`
@@ -1360,10 +1365,12 @@ Das Ergebnis ist eine Hashtabelle mit folgenden Schlüsseln
----
dict = weechat.info_get_hashtable(
"irc_message_parse",
- {"message": "@time=2015-06-27T16:40:35.000Z :nick!user@host PRIVMSG #weechat :hello!"})
+ {"message": "@time=2015-06-27T16:40:35.000Z;tag2=value\\sspace :nick!user@host PRIVMSG #weechat :hello!"})
# dict == {
-# "tags": "time=2015-06-27T16:40:35.000Z",
+# "tags": "time=2015-06-27T16:40:35.000Z;tag2=value\\sspace",
+# "tag_time": "2015-06-27T16:40:35.000Z",
+# "tag_tag2": "value space",
# "message_without_tags": ":nick!user@host PRIVMSG #weechat :hello!",
# "nick": "nick",
# "user": "user",
@@ -1372,10 +1379,10 @@ dict = weechat.info_get_hashtable(
# "channel": "#weechat",
# "arguments": "#weechat :hello!",
# "text": "hello!",
-# "pos_command": "47",
-# "pos_arguments": "55",
-# "pos_channel": "55",
-# "pos_text": "65",
+# "pos_command": "65",
+# "pos_arguments": "73",
+# "pos_channel": "73",
+# "pos_text": "83",
# }
----