diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-12-25 23:00:18 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-12-25 23:00:18 +0100 |
commit | a35364524af23eff7a8d532cd2596857a10587f9 (patch) | |
tree | 32a3f1ef9c64d915cc52581a91bfd2a15f0fe0d0 /doc/en | |
parent | 68948f9747432bcfeaec82dbc30992388d3194d5 (diff) | |
download | weechat-a35364524af23eff7a8d532cd2596857a10587f9.zip |
irc: add optional server in info "irc_is_channel" (before channel name) (bug #35124), add optional server in info_hashtable "irc_message_parse"
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/autogen/plugin_api/infos.txt | 2 | ||||
-rw-r--r-- | doc/en/autogen/plugin_api/infos_hashtable.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/en/autogen/plugin_api/infos.txt b/doc/en/autogen/plugin_api/infos.txt index f4fb2a5a7..016298988 100644 --- a/doc/en/autogen/plugin_api/infos.txt +++ b/doc/en/autogen/plugin_api/infos.txt @@ -6,7 +6,7 @@ | irc | irc_buffer | get buffer pointer for an IRC server/channel/nick | server,channel,nick (channel and nicks are optional) -| irc | irc_is_channel | 1 if string is a valid IRC channel name | channel name +| irc | irc_is_channel | 1 if string is a valid IRC channel name for server | server,channel (server is optional) | irc | irc_is_nick | 1 if string is a valid IRC nick name | nickname diff --git a/doc/en/autogen/plugin_api/infos_hashtable.txt b/doc/en/autogen/plugin_api/infos_hashtable.txt index c9b45f565..82de00793 100644 --- a/doc/en/autogen/plugin_api/infos_hashtable.txt +++ b/doc/en/autogen/plugin_api/infos_hashtable.txt @@ -2,7 +2,7 @@ |======================================== | Plugin | Name | Description | Hashtable (input) | Hashtable (output) -| irc | irc_message_parse | parse an IRC message | "message": IRC message | "nick": nick, "host": host, "command": command, "channel": channel, "arguments": arguments (includes channel) +| irc | irc_message_parse | parse an IRC message | "message": IRC message, "server": server name (optional) | "nick": nick, "host": host, "command": command, "channel": channel, "arguments": arguments (includes channel) | irc | irc_message_split | split an IRC message (to fit in 512 bytes) | "message": IRC message, "server": server name (optional) | "msg1" ... "msgN": messages to send (without final "\r\n"), "args1" ... "argsN": arguments of messages, "count": number of messages |