diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-26 10:31:37 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-26 10:31:37 +0200 |
commit | 4853a530b630440d34d2ce2f8f478523658dbca2 (patch) | |
tree | 57baab29d9e31de18e22c7b34811ceecd65ed00b /doc/it/autogen/plugin_api | |
parent | ebf72c7eda87e70aed16e890581307f527567bed (diff) | |
download | weechat-4853a530b630440d34d2ce2f8f478523658dbca2.zip |
irc: improve split of privmsg, add split of some other messages (bug #29879), add new info_hashtable "irc_message_split", split irc messages in relay plugin
List of new features/bugs fixed:
- improve split of privmsg: keep CTCP in split
- add split of messages: ison, join, notice, wallops, 005, 353
- add new info_hashtable "irc_message_split" (for plugins/scripts)
- in relay plugin: split irc messages sent to clients of irc proxy
Diffstat (limited to 'doc/it/autogen/plugin_api')
-rw-r--r-- | doc/it/autogen/plugin_api/hdata.txt | 1 | ||||
-rw-r--r-- | doc/it/autogen/plugin_api/infos_hashtable.txt | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/it/autogen/plugin_api/hdata.txt b/doc/it/autogen/plugin_api/hdata.txt index aa0f878fa..4a48fc35e 100644 --- a/doc/it/autogen/plugin_api/hdata.txt +++ b/doc/it/autogen/plugin_api/hdata.txt @@ -136,6 +136,7 @@ 'isupport' (string) + 'prefix_modes' (string) + 'prefix_chars' (string) + + 'nick_max_length' (integer) + 'reconnect_delay' (integer) + 'reconnect_start' (time) + 'command_time' (time) + diff --git a/doc/it/autogen/plugin_api/infos_hashtable.txt b/doc/it/autogen/plugin_api/infos_hashtable.txt index 6294d42b9..ae7682f39 100644 --- a/doc/it/autogen/plugin_api/infos_hashtable.txt +++ b/doc/it/autogen/plugin_api/infos_hashtable.txt @@ -2,6 +2,8 @@ |======================================== | Plugin | Nome | Descrizione | Tabella hash (input) | Tabella hash (output) -| irc | irc_parse_message | controlla un messaggio IRC | "messaggio": messaggio IRC | "nick": nick, "host": nome host, "command": comando, "channel": canale, "arguments": argomenti (include il canale) +| irc | irc_message_parse | controlla un messaggio IRC | "messaggio": messaggio IRC | "nick": nick, "host": nome host, "command": comando, "channel": canale, "arguments": argomenti (include il canale) + +| 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 |======================================== |