summaryrefslogtreecommitdiff
path: root/doc/ja
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-06-03 17:32:44 +0200
committerSébastien Helleu <flashcode@flashtux.org>2023-06-03 20:06:29 +0200
commit482fe6604c2eff00f17e97218bdb17e683473ea5 (patch)
tree05ed20e247da243570f88e7c5bf92e67614f3831 /doc/ja
parent2660164118f8db6ebccaae4d50ac6dabaee285ac (diff)
downloadweechat-482fe6604c2eff00f17e97218bdb17e683473ea5.zip
relay: add handshake option "escape_commands" in weechat protocol
Diffstat (limited to 'doc/ja')
-rw-r--r--doc/ja/weechat_relay_protocol.ja.adoc18
1 files changed, 17 insertions, 1 deletions
diff --git a/doc/ja/weechat_relay_protocol.ja.adoc b/doc/ja/weechat_relay_protocol.ja.adoc
index 55afb5370..b279e2f6d 100644
--- a/doc/ja/weechat_relay_protocol.ja.adoc
+++ b/doc/ja/weechat_relay_protocol.ja.adoc
@@ -106,7 +106,8 @@ _リレー_ プラグインは _IRC プロキシ_ のように振舞います (
[[command_handshake]]
=== handshake
-_WeeChat ≥ 2.9, updated in version 3.5._
+// TRANSLATION MISSING
+_WeeChat ≥ 2.9, updated in versions 3.5, 4.0.0._
Perform an handshake between the client and WeeChat: this is required in most
cases to know the session settings and prepare the authentication with the
@@ -140,6 +141,12 @@ Arguments:
*** _zstd_: compress with https://facebook.github.io/zstd/[Zstandard ^↗^^]: better
compression and much faster than _zlib_ for both compression and decompression
_(WeeChat ≥ 3.5)_
+// TRANSLATION MISSING
+** _escape_commands_: commands sent by the client to relay must be escaped:
+ all backslashes are interpreted and a single backslash must be escaped (`\\`);
+ this allows for example the client to send multiline messages (chars `\n` are
+ converted to newlines, see <<command_input,input command>>)
+ _(WeeChat ≥ 4.0.0)_
Notes about option _password_hash_algo_:
@@ -986,6 +993,15 @@ input irc.libera.#weechat hello!
----
// TRANSLATION MISSING
+* Send multiline message to #test channel (option _escape_commands_ must have
+ been enabled in <<command_handshake,handshake command>> and requires
+ WeeChat ≥ 4.0.0):
+
+----
+input irc.ergo.#test this message has\n2 lines
+----
+
+// TRANSLATION MISSING
[[command_completion]]
=== completion