mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 04:16:38 +02:00
doc: fix emphasized text in plugin API reference and relay protocol
This commit is contained in:
@@ -1269,7 +1269,7 @@ Arguments:
|
||||
** 0: each string will contain one word
|
||||
** 1: each string will contain all string until end of line (see example below)
|
||||
** 2: same as 1, but do not remove separators at end of string before split
|
||||
(_new in version 0.3.6_)
|
||||
_(new in version 0.3.6)_
|
||||
* 'num_items_max': maximum number of items created (0 = no limit)
|
||||
* 'num_items': pointer to int which will contain number of items created
|
||||
|
||||
@@ -3691,7 +3691,7 @@ Arguments:
|
||||
* 'hashtable': hashtable pointer
|
||||
* 'property' and 'value': property name, with its value:
|
||||
** 'callback_free_key': set callback function used to free keys in hashtable
|
||||
(_new in version 0.4.2_)
|
||||
_(new in version 0.4.2)_
|
||||
** 'callback_free_value': set callback function used to free values in hashtable
|
||||
|
||||
C example:
|
||||
@@ -4415,7 +4415,7 @@ option5 = weechat.config_new_option(config_file, section, "option5", "color",
|
||||
[NOTE]
|
||||
In Ruby, the 3 callbacks + data (6 strings) must be given in an array of 6
|
||||
strings (due to a Ruby limitation of 15 arguments by function), see the
|
||||
'WeeChat Scripting Guide' for more info (_fixed in version 0.4.1_).
|
||||
'WeeChat Scripting Guide' for more info _(fixed in version 0.4.1)_.
|
||||
|
||||
weechat_config_search_option
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
@@ -6300,7 +6300,7 @@ Arguments:
|
||||
*** 'bar_bg': background color for bar
|
||||
** reset:
|
||||
*** 'reset': reset color and attributes
|
||||
*** 'resetcolor': reset color (keep attributes) (_new in version 0.3.6_)
|
||||
*** 'resetcolor': reset color (keep attributes) _(new in version 0.3.6)_
|
||||
|
||||
Format of color is: attributes (optional) + color name + ",background"
|
||||
(optional). Possible attributes are:
|
||||
@@ -6309,7 +6309,7 @@ Format of color is: attributes (optional) + color name + ",background"
|
||||
* `!` : reverse video
|
||||
* `_` : underlined text
|
||||
* `|` : keep attributes: do not reset bold/reverse/underlined when changing
|
||||
color (_new in version 0.3.6_)
|
||||
color _(new in version 0.3.6)_
|
||||
|
||||
Examples:
|
||||
|
||||
@@ -6998,7 +6998,7 @@ shell does). +
|
||||
If the split is not correct (according to quotes in your command), or if you
|
||||
want to use shell, you can use function
|
||||
<<_weechat_hook_process_hashtable,weechat_hook_process_hashtable>> with
|
||||
arguments in the hashtable 'options' (_new in version 0.4.0_).
|
||||
arguments in the hashtable 'options' _(new in version 0.4.0)_.
|
||||
|
||||
Prototype:
|
||||
|
||||
@@ -7017,7 +7017,7 @@ struct t_hook *weechat_hook_process (const char *command,
|
||||
|
||||
Arguments:
|
||||
|
||||
* 'command': command to launch in child process or URL (_new in version 0.3.7_),
|
||||
* 'command': command to launch in child process or URL _(new in version 0.3.7)_,
|
||||
see below
|
||||
* 'timeout': timeout for command (in milliseconds): after this timeout, child
|
||||
process is killed (0 means no timeout)
|
||||
@@ -7049,7 +7049,7 @@ When command has ended, or if timeout is reached, WeeChat will automatically
|
||||
unhook (and kill process if it is still running).
|
||||
|
||||
The command can be an URL with format: "url:http://www.example.com", to download
|
||||
content of URL (_new in version 0.3.7_). Options are possible for URL with
|
||||
content of URL _(new in version 0.3.7)_. Options are possible for URL with
|
||||
function <<_weechat_hook_process_hashtable,weechat_hook_process_hashtable>>.
|
||||
|
||||
[TIP]
|
||||
@@ -7157,7 +7157,7 @@ with an extra argument:
|
||||
|
||||
For a standard command (not beginning with "url:"), the hashtable 'options' can
|
||||
contain arguments for command (and then 'command' must be only the command
|
||||
without arguments) (_new in version 0.4.0_). +
|
||||
without arguments) _(new in version 0.4.0)_. +
|
||||
The keys in hashtable must be: 'arg1', 'arg2', ...
|
||||
|
||||
For command "url:...", following options are available (see
|
||||
@@ -7591,27 +7591,27 @@ Arguments:
|
||||
| Plugin | Signal | Arguments | Description
|
||||
|
||||
| aspell | aspell_suggest +
|
||||
(_new in version 0.4.0_) |
|
||||
_(new in version 0.4.0)_ |
|
||||
pointer: buffer |
|
||||
new suggestions for a misspelled word
|
||||
|
||||
| guile | guile_script_loaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
scheme script loaded
|
||||
|
||||
| guile | guile_script_unloaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
scheme script unloaded
|
||||
|
||||
| guile | guile_script_installed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.scm,/path/to/script2.scm") |
|
||||
scheme script(s) installed
|
||||
|
||||
| guile | guile_script_removed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.scm,script2.scm") |
|
||||
scheme script(s) removed
|
||||
|
||||
@@ -7626,19 +7626,19 @@ Arguments:
|
||||
signal sent only if message is *not* ignored)
|
||||
|
||||
| irc | xxx,irc_raw_in_yyy ^(1)^ +
|
||||
(_new in version 0.3.2_) |
|
||||
_(new in version 0.3.2)_ |
|
||||
string: message |
|
||||
irc message from server (before irc plugin uses it,
|
||||
signal sent even if message is ignored)
|
||||
|
||||
| irc | xxx,irc_raw_in2_yyy ^(1)^ +
|
||||
(_new in version 0.3.2_) |
|
||||
_(new in version 0.3.2)_ |
|
||||
string: message |
|
||||
irc message from server (after irc plugin uses it,
|
||||
signal sent even if message is ignored)
|
||||
|
||||
| irc | xxx,irc_out1_yyy ^(1)^ +
|
||||
(_new in version 0.3.7_) |
|
||||
_(new in version 0.3.7)_ |
|
||||
string: message |
|
||||
irc message sent to server (before automatic split to fit in 512 bytes)
|
||||
|
||||
@@ -7647,7 +7647,7 @@ Arguments:
|
||||
irc message sent to server (after automatic split to fit in 512 bytes)
|
||||
|
||||
| irc | xxx,irc_outtags_yyy ^(1)^ +
|
||||
(_new in version 0.3.4_) |
|
||||
_(new in version 0.3.4)_ |
|
||||
string: tags + ";" + message |
|
||||
tags + irc message sent to server
|
||||
|
||||
@@ -7672,7 +7672,7 @@ Arguments:
|
||||
private opened
|
||||
|
||||
| irc | irc_server_opened +
|
||||
(_new in version 0.3.7_) |
|
||||
_(new in version 0.3.7)_ |
|
||||
pointer: buffer |
|
||||
server buffer opened
|
||||
|
||||
@@ -7697,27 +7697,27 @@ Arguments:
|
||||
ignore removed
|
||||
|
||||
| irc | irc_notify_join +
|
||||
(_new in version 0.3.8_) |
|
||||
_(new in version 0.3.8)_ |
|
||||
string: server name + "," + nick |
|
||||
a nick in notify list has joined server
|
||||
|
||||
| irc | irc_notify_quit +
|
||||
(_new in version 0.3.8_) |
|
||||
_(new in version 0.3.8)_ |
|
||||
string: server name + "," + nick |
|
||||
a nick in notify list has quit server
|
||||
|
||||
| irc | irc_notify_away +
|
||||
(_new in version 0.3.8_) |
|
||||
_(new in version 0.3.8)_ |
|
||||
string: server name + "," + nick + "," + away message |
|
||||
a nick in notify list is now away on server
|
||||
|
||||
| irc | irc_notify_still_away +
|
||||
(_new in version 0.3.8_) |
|
||||
_(new in version 0.3.8)_ |
|
||||
string: server name + "," + nick + "," + away message |
|
||||
a nick in notify list is still away on server (away message has changed)
|
||||
|
||||
| irc | irc_notify_back +
|
||||
(_new in version 0.3.8_) |
|
||||
_(new in version 0.3.8)_ |
|
||||
string: server name + "," + nick |
|
||||
a nick in notify list is back (away status removed)
|
||||
|
||||
@@ -7734,102 +7734,102 @@ Arguments:
|
||||
display backlog for buffer
|
||||
|
||||
| lua | lua_script_loaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
lua script loaded
|
||||
|
||||
| lua | lua_script_unloaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
lua script unloaded
|
||||
|
||||
| lua | lua_script_installed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.lua,/path/to/script2.lua") |
|
||||
lua script(s) installed
|
||||
|
||||
| lua | lua_script_removed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.lua,script2.lua") |
|
||||
lua script(s) removed
|
||||
|
||||
| perl | perl_script_loaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
perl script loaded
|
||||
|
||||
| perl | perl_script_unloaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
perl script unloaded
|
||||
|
||||
| perl | perl_script_installed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.pl,/path/to/script2.pl") |
|
||||
perl script(s) installed
|
||||
|
||||
| perl | perl_script_removed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.pl,script2.pl") |
|
||||
perl script(s) removed
|
||||
|
||||
| python | python_script_loaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
python script loaded
|
||||
|
||||
| python | python_script_unloaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
python script unloaded
|
||||
|
||||
| python | python_script_installed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.py,/path/to/script2.py") |
|
||||
python script(s) installed
|
||||
|
||||
| python | python_script_removed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.py,script2.py") |
|
||||
python script(s) removed
|
||||
|
||||
| ruby | ruby_script_loaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
ruby script loaded
|
||||
|
||||
| ruby | ruby_script_unloaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
ruby script unloaded
|
||||
|
||||
| ruby | ruby_script_installed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.rb,/path/to/script2.rb") |
|
||||
ruby script(s) installed
|
||||
|
||||
| ruby | ruby_script_removed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.rb,script2.rb") |
|
||||
ruby script(s) removed
|
||||
|
||||
| tcl | tcl_script_loaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
tcl script loaded
|
||||
|
||||
| tcl | tcl_script_unloaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to script |
|
||||
tcl script unloaded
|
||||
|
||||
| tcl | tcl_script_installed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.tcl,/path/to/script2.tcl") |
|
||||
tcl script(s) installed
|
||||
|
||||
| tcl | tcl_script_removed +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.tcl,script2.tcl") |
|
||||
tcl script(s) removed
|
||||
|
||||
@@ -7842,7 +7842,7 @@ Arguments:
|
||||
buffer closed
|
||||
|
||||
| weechat | buffer_line_added +
|
||||
(_new in version 0.3.7_) |
|
||||
_(new in version 0.3.7)_ |
|
||||
pointer: line |
|
||||
line added in a buffer
|
||||
|
||||
@@ -7895,7 +7895,7 @@ Arguments:
|
||||
type of buffer changed
|
||||
|
||||
| weechat | day_changed +
|
||||
(_new in version 0.3.2_) |
|
||||
_(new in version 0.3.2)_ |
|
||||
string: new date, format: "2010-01-31" |
|
||||
day of system date has changed
|
||||
|
||||
@@ -7956,42 +7956,42 @@ Arguments:
|
||||
key pressed
|
||||
|
||||
| weechat | nicklist_group_added +
|
||||
(_new in version 0.3.2_) |
|
||||
_(new in version 0.3.2)_ |
|
||||
string: buffer pointer + "," + group name |
|
||||
group added in nicklist
|
||||
|
||||
| weechat | nicklist_group_changed +
|
||||
(_new in version 0.3.4_) |
|
||||
_(new in version 0.3.4)_ |
|
||||
string: buffer pointer + "," + group name |
|
||||
group changed in nicklist
|
||||
|
||||
| weechat | nicklist_group_removing +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
string: buffer pointer + "," + group name |
|
||||
removing group from nicklist
|
||||
|
||||
| weechat | nicklist_group_removed +
|
||||
(_new in version 0.3.2_) |
|
||||
_(new in version 0.3.2)_ |
|
||||
string: buffer pointer + "," + group name |
|
||||
group removed from nicklist
|
||||
|
||||
| weechat | nicklist_nick_added +
|
||||
(_new in version 0.3.2_) |
|
||||
_(new in version 0.3.2)_ |
|
||||
string: buffer pointer + "," + nick name |
|
||||
nick added in nicklist
|
||||
|
||||
| weechat | nicklist_nick_changed +
|
||||
(_new in version 0.3.4_) |
|
||||
_(new in version 0.3.4)_ |
|
||||
string: buffer pointer + "," + nick name |
|
||||
nick changed in nicklist
|
||||
|
||||
| weechat | nicklist_nick_removing +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
string: buffer pointer + "," + nick name |
|
||||
removing nick from nicklist
|
||||
|
||||
| weechat | nicklist_nick_removed +
|
||||
(_new in version 0.3.2_) |
|
||||
_(new in version 0.3.2)_ |
|
||||
string: buffer pointer + "," + nick name |
|
||||
nick removed from nicklist
|
||||
|
||||
@@ -8000,12 +8000,12 @@ Arguments:
|
||||
partial completion happened
|
||||
|
||||
| weechat | plugin_loaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to plugin loaded (example: "/usr/lib/weechat/plugins/irc.so") |
|
||||
plugin loaded
|
||||
|
||||
| weechat | plugin_unloaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: name of plugin unloaded (example: "irc") |
|
||||
plugin unloaded
|
||||
|
||||
@@ -8018,7 +8018,7 @@ Arguments:
|
||||
command `/upgrade` issued by user
|
||||
|
||||
| weechat | upgrade_ended +
|
||||
(_new in version 0.3.4_) |
|
||||
_(new in version 0.3.4)_ |
|
||||
- |
|
||||
end of upgrade process (command `/upgrade`)
|
||||
|
||||
@@ -8031,17 +8031,17 @@ Arguments:
|
||||
private message displayed
|
||||
|
||||
| weechat | window_closing +
|
||||
(_new in version 0.3.6_) |
|
||||
_(new in version 0.3.6)_ |
|
||||
pointer: window |
|
||||
closing window
|
||||
|
||||
| weechat | window_closed +
|
||||
(_new in version 0.3.6_) |
|
||||
_(new in version 0.3.6)_ |
|
||||
pointer: window |
|
||||
window closed
|
||||
|
||||
| weechat | window_opened +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
pointer: window |
|
||||
window opened
|
||||
|
||||
@@ -8050,7 +8050,7 @@ Arguments:
|
||||
scroll in window
|
||||
|
||||
| weechat | window_switch +
|
||||
(_new in version 0.3.7_) |
|
||||
_(new in version 0.3.7)_ |
|
||||
pointer: window |
|
||||
switching window
|
||||
|
||||
@@ -8095,7 +8095,7 @@ Arguments:
|
||||
xfer resume ready
|
||||
|
||||
| xfer | xfer_ended +
|
||||
(_new in version 0.3.2_) |
|
||||
_(new in version 0.3.2)_ |
|
||||
pointer: infolist with xfer info |
|
||||
xfer has ended
|
||||
|========================================
|
||||
@@ -8115,7 +8115,7 @@ Arguments:
|
||||
** return value:
|
||||
*** 'WEECHAT_RC_OK'
|
||||
*** 'WEECHAT_RC_OK_EAT' (stop sending the signal immediately)
|
||||
(_new in version 0.4.0_)
|
||||
_(new in version 0.4.0)_
|
||||
*** 'WEECHAT_RC_ERROR'
|
||||
* 'callback_data': pointer given to callback when it is called by WeeChat
|
||||
|
||||
@@ -8370,47 +8370,47 @@ Arguments:
|
||||
| Plugin | Signal | Arguments | Description
|
||||
|
||||
| irc | irc_redirection_xxx_yyy ^(1)^ +
|
||||
(_new in version 0.3.4_) |
|
||||
_(new in version 0.3.4)_ |
|
||||
see <<hsignal_irc_redirect_command,hsignal_irc_redirect_command>> |
|
||||
redirection output
|
||||
|
||||
| weechat | nicklist_group_added +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'group' ('struct t_gui_nick_group *'): group |
|
||||
group added in nicklist
|
||||
|
||||
| weechat | nicklist_nick_added +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'nick' ('struct t_gui_nick *'): nick |
|
||||
nick added in nicklist
|
||||
|
||||
| weechat | nicklist_group_removing +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'group' ('struct t_gui_nick_group *'): group |
|
||||
removing group from nicklist
|
||||
|
||||
| weechat | nicklist_nick_removing +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'nick' ('struct t_gui_nick *'): nick |
|
||||
removing nick from nicklist
|
||||
|
||||
| weechat | nicklist_group_changed +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'group' ('struct t_gui_nick_group *'): group |
|
||||
group changed in nicklist
|
||||
|
||||
| weechat | nicklist_nick_changed +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'nick' ('struct t_gui_nick *'): nick |
|
||||
@@ -8429,7 +8429,7 @@ pattern.
|
||||
** return value:
|
||||
*** 'WEECHAT_RC_OK'
|
||||
*** 'WEECHAT_RC_OK_EAT' (stop sending the signal immediately)
|
||||
(_new in version 0.4.0_)
|
||||
_(new in version 0.4.0)_
|
||||
*** 'WEECHAT_RC_ERROR'
|
||||
* 'callback_data': pointer given to callback when it is called by WeeChat
|
||||
|
||||
@@ -8984,13 +8984,13 @@ Arguments:
|
||||
string with IRC color codes, or without color
|
||||
|
||||
| irc | irc_command_auth +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
server name |
|
||||
authentication command (for example: `/msg nickserv identify password`) |
|
||||
command with hidden password (for example: `/msg nickserv identify ********`)
|
||||
|
||||
| irc | irc_message_auth +
|
||||
(_new in version 0.4.1_) |
|
||||
_(new in version 0.4.1)_ |
|
||||
server name |
|
||||
message displayed after `/msg` sent to nickserv |
|
||||
message with hidden password
|
||||
@@ -9001,13 +9001,13 @@ Arguments:
|
||||
new content of message
|
||||
|
||||
| irc | irc_in2_xxx ^(1)^ +
|
||||
(_new in version 0.3.5_) |
|
||||
_(new in version 0.3.5)_ |
|
||||
server name |
|
||||
content of message received from IRC server (after charset decoding) |
|
||||
new content of message
|
||||
|
||||
| irc | irc_out1_xxx ^(1)^ +
|
||||
(_new in version 0.3.7_) |
|
||||
_(new in version 0.3.7)_ |
|
||||
server name |
|
||||
content of message about to be sent to IRC server (before automatic split to fit in 512 bytes) |
|
||||
new content of message
|
||||
@@ -9023,7 +9023,7 @@ Arguments:
|
||||
"1" to display bar, "0" to hide it
|
||||
|
||||
| weechat | history_add +
|
||||
(_new in version 0.3.2_) |
|
||||
_(new in version 0.3.2)_ |
|
||||
string with buffer pointer ("0x123..") |
|
||||
content of command line to add in command history (buffer and global) |
|
||||
string added to command history
|
||||
@@ -9044,7 +9044,7 @@ Arguments:
|
||||
new string, for display only (command line is not changed)
|
||||
|
||||
| weechat | input_text_for_buffer +
|
||||
(_new in version 0.3.7_) |
|
||||
_(new in version 0.3.7)_ |
|
||||
string with buffer pointer ("0x123..") |
|
||||
content of command line sent to buffer (text or command) |
|
||||
new content of command line sent to buffer
|
||||
@@ -10150,7 +10150,7 @@ Arguments:
|
||||
** 'plugin': name of plugin which created this buffer ("core" for WeeChat main
|
||||
buffer)
|
||||
** 'name': name of buffer
|
||||
** 'full_name': full name of buffer ("plugin.name") (_new in version 0.3.7_)
|
||||
** 'full_name': full name of buffer ("plugin.name") _(new in version 0.3.7)_
|
||||
** 'short_name': short name of buffer (note: used for display only and can be
|
||||
changed by user, this must not be used to find name of buffer, use instead
|
||||
'name', 'full_name' or local variable 'channel')
|
||||
@@ -10433,9 +10433,9 @@ Arguments:
|
||||
** 'input_callback': set input callback function
|
||||
** 'input_callback_data': set input callback data
|
||||
** 'nickcmp_callback': set nick comparison callback function (this callback is
|
||||
called when searching nick in nicklist) (_new in version 0.3.9_)
|
||||
called when searching nick in nicklist) _(new in version 0.3.9)_
|
||||
** 'nickcmp_callback_data': set nick comparison callback data
|
||||
(_new in version 0.3.9_)
|
||||
_(new in version 0.3.9)_
|
||||
|
||||
Prototypes for callbacks:
|
||||
|
||||
@@ -13150,18 +13150,18 @@ Arguments:
|
||||
* 'var_next': name of variable in structure which is a pointer to next
|
||||
element in list (may be NULL if no such variable is available)
|
||||
* 'create_allowed': 1 if create of structure is allowed, otherwise 0
|
||||
(_new in version 0.4.0_)
|
||||
_(new in version 0.4.0)_
|
||||
* 'delete_allowed': 1 if delete of structure is allowed, otherwise 0
|
||||
(_new in version 0.3.9_)
|
||||
_(new in version 0.3.9)_
|
||||
* 'callback_update': callback to update data in hdata, can be NULL if no update
|
||||
is allowed (_new in version 0.3.9_), arguments and return value:
|
||||
is allowed _(new in version 0.3.9)_, arguments and return value:
|
||||
** 'void *data': pointer
|
||||
** 'struct t_hdata *hdata': pointer to hdata
|
||||
** 'struct t_hashtable *hashtable': hashtable with variables to update
|
||||
(see <<_weechat_hdata_update,weechat_hdata_update>>)
|
||||
** return value: number of variables updated
|
||||
* 'callback_update_data': pointer given to update callback when it is called by
|
||||
WeeChat (_new in version 0.3.9_)
|
||||
WeeChat _(new in version 0.3.9)_
|
||||
|
||||
Return value:
|
||||
|
||||
@@ -13207,9 +13207,9 @@ Arguments:
|
||||
** WEECHAT_HDATA_HASHTABLE
|
||||
** WEECHAT_HDATA_OTHER
|
||||
* 'update_allowed': 1 if update of variable is allowed, otherwise 0
|
||||
(_new in version 0.3.9_)
|
||||
_(new in version 0.3.9)_
|
||||
* 'array_size': not NULL only if a variable is an array, and it can be:
|
||||
(_new in version 0.3.9_)
|
||||
_(new in version 0.3.9)_
|
||||
** name of variable in hdata: this variable will be used as size of array
|
||||
(dynamic size for array)
|
||||
** integer (as string): fixed size for array
|
||||
@@ -14345,7 +14345,7 @@ Arguments:
|
||||
values for variables (keys and values are string), some special keys are
|
||||
allowed:
|
||||
** key `__create_allowed` (with any value): return 1 if create is allowed for
|
||||
structure, otherwise 0 (_new in version 0.4.0_)
|
||||
structure, otherwise 0 _(new in version 0.4.0)_
|
||||
** key `__delete_allowed` (with any value): return 1 if delete is allowed for
|
||||
structure, otherwise 0
|
||||
** key `__update_allowed`, value is name of a variable: return 1 if update is
|
||||
|
||||
@@ -310,13 +310,13 @@ Arguments:
|
||||
'buffers,upgrade,buffer,nicklist' for "*" and 'buffer,nicklist' for a buffer):
|
||||
** 'buffers': receive signals about buffers (opened/closed, moved, renamed,
|
||||
merged/unmerged, renamed); this can be used only with name "*"
|
||||
(_new in version 0.4.1_)
|
||||
_(new in version 0.4.1)_
|
||||
** 'upgrade': receive signals about WeeChat upgrade (upgrade, upgrade ended);
|
||||
this can be used only with name "*"
|
||||
(_new in version 0.4.1_)
|
||||
_(new in version 0.4.1)_
|
||||
** 'buffer': receive signals about buffer (new lines, type changed, title
|
||||
changed, local variable added/removed, and same signals as 'buffers' for the
|
||||
buffer) (_updated in version 0.4.1_)
|
||||
buffer) _(updated in version 0.4.1)_
|
||||
** 'nicklist': receive nicklist after changes
|
||||
|
||||
Examples:
|
||||
|
||||
@@ -1289,7 +1289,7 @@ Paramètres :
|
||||
** 1 : chaque chaîne contiendra toute la chaîne jusqu'à la fin de la ligne (voir
|
||||
exemple ci-dessous)
|
||||
** 2 : comme 1, mais ne supprime pas les séparateurs en fin de chaîne avant le
|
||||
découpage (_nouveau dans la version 0.3.6_)
|
||||
découpage _(nouveau dans la version 0.3.6)_
|
||||
* 'num_items_max' : nombre maximum de chaînes à créer (0 = pas de limite)
|
||||
* 'num_items' : pointeur vers un entier qui contiendra le nombre de chaînes
|
||||
créées
|
||||
@@ -3735,7 +3735,7 @@ Paramètres :
|
||||
* 'hashtable' : pointeur vers la hashtable
|
||||
* 'property' et 'value' : nom de la propriété, avec sa valeur :
|
||||
** 'callback_free_key' : définit la fonction "callback" pour libérer les clés de
|
||||
la hashtable (_nouveau dans la version 0.4.2_)
|
||||
la hashtable _(nouveau dans la version 0.4.2)_
|
||||
** 'callback_free_value' : définit la fonction "callback" pour libérer les
|
||||
valeurs de la hashtable
|
||||
|
||||
@@ -4470,7 +4470,7 @@ option5 = weechat.config_new_option(config_file, section, "option5", "color",
|
||||
En Ruby, les 3 "callbacks" + "data" (6 chaînes) doivent être données dans un
|
||||
tableau de 6 chaînes de caractères (en raison d'une limitation de Ruby à 15
|
||||
paramètres par fonction), voir le 'Guide pour Scripts WeeChat' pour plus d'infos
|
||||
(_corrigé dans la version 0.4.1_).
|
||||
_(corrigé dans la version 0.4.1)_.
|
||||
|
||||
weechat_config_search_option
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
@@ -6376,7 +6376,7 @@ Paramètres :
|
||||
** réinitialisation :
|
||||
*** 'reset' : réinitialiser la couleur et les attributs
|
||||
*** 'resetcolor' : réinitialiser la couleur (garder les attributs)
|
||||
(_nouveau dans la version 0.3.6_)
|
||||
_(nouveau dans la version 0.3.6)_
|
||||
|
||||
Le format de la couleur est : attributs (optionnel) + nom de couleur + ",fond"
|
||||
(optionnel). Les attributs possibles sont :
|
||||
@@ -6385,7 +6385,7 @@ Le format de la couleur est : attributs (optionnel) + nom de couleur + ",fond"
|
||||
* `!` : mode vidéo inverse
|
||||
* `_` : texte souligné
|
||||
* `|` : garder les attributs : ne pas réinitialiser gras/inverse/souligné lors
|
||||
du changement de couleur (_nouveau dans la version 0.3.6_)
|
||||
du changement de couleur _(nouveau dans la version 0.3.6)_
|
||||
|
||||
Exemples :
|
||||
|
||||
@@ -7096,7 +7096,7 @@ paramètres (comme le fait le shell). +
|
||||
Si le découpage n'est pas correct (selon les guillemets utilisés dans votre
|
||||
commande), ou si vous souhaitez utiliser le shell, vous pouvez utiliser la
|
||||
fonction <<_weechat_hook_process_hashtable,weechat_hook_process_hashtable>> avec
|
||||
les paramètres dans la hashtable 'options' (_nouveau dans la version 0.4.0_).
|
||||
les paramètres dans la hashtable 'options' _(nouveau dans la version 0.4.0)_.
|
||||
|
||||
Prototype :
|
||||
|
||||
@@ -7116,7 +7116,7 @@ struct t_hook *weechat_hook_process (const char *command,
|
||||
Paramètres :
|
||||
|
||||
* 'command' : commande à lancer dans le processus fils ou URL
|
||||
(_nouveau dans la version 0.3.7_), voir ci-dessous
|
||||
_(nouveau dans la version 0.3.7)_, voir ci-dessous
|
||||
* 'timeout' : timeout pour la commande (en millisecondes) : après ce délai, le
|
||||
processus fils est tué (0 signifie pas de limite)
|
||||
* 'callback' : function appelée quand des données du fils sont disponibles, or
|
||||
@@ -7151,7 +7151,7 @@ supprimera automatiquement le "hook" (et tuera le processus s'il tourne
|
||||
toujours).
|
||||
|
||||
La commande peut être une URL avec le format : "url:http://www.example.com",
|
||||
pour télécharger le contenu de l'URL (_nouveau dans la version 0.3.7_).
|
||||
pour télécharger le contenu de l'URL _(nouveau dans la version 0.3.7)_.
|
||||
Des options pour l'URL sont possibles avec la fonction
|
||||
<<_weechat_hook_process_hashtable,weechat_hook_process_hashtable>>.
|
||||
|
||||
@@ -7264,7 +7264,7 @@ supplémentaire :
|
||||
Pour une commande standard (ne commençant pas par "url:"), la hashtable
|
||||
'options' peut contenir les paramètres pour la commande (et donc 'command' doit
|
||||
être seulement la commande sans les paramètres)
|
||||
(_nouveau dans la version 0.4.0_). +
|
||||
_(nouveau dans la version 0.4.0)_. +
|
||||
Les clés dans la hashtable doivent être: 'arg1', 'arg2', ...
|
||||
|
||||
Pour la commande "url:...", les options suivantes sont disponibles (voir
|
||||
@@ -7707,27 +7707,27 @@ Paramètres :
|
||||
| Extension | Signal | Paramètres | Description
|
||||
|
||||
| aspell | aspell_suggest +
|
||||
(_nouveau dans la version 0.4.0_) |
|
||||
_(nouveau dans la version 0.4.0)_ |
|
||||
pointeur : tampon |
|
||||
nouvelles suggestions pour un mot mal orthographié
|
||||
|
||||
| guile | guile_script_loaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script scheme chargé
|
||||
|
||||
| guile | guile_script_unloaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script scheme déchargé
|
||||
|
||||
| guile | guile_script_installed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.scm,/chemin/vers/script2.scm") |
|
||||
script(s) scheme installé(s)
|
||||
|
||||
| guile | guile_script_removed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.scm,script2.scm") |
|
||||
script(s) scheme supprimé(s)
|
||||
|
||||
@@ -7742,19 +7742,19 @@ Paramètres :
|
||||
signal envoyé uniquement si le message n'est *pas* ignoré)
|
||||
|
||||
| irc | xxx,irc_raw_in_yyy ^(1)^ +
|
||||
(_nouveau dans la version 0.3.2_) |
|
||||
_(nouveau dans la version 0.3.2)_ |
|
||||
chaîne : message |
|
||||
message irc du serveur (avant utilisation par l'extension irc,
|
||||
signal envoyé même si le message est ignoré)
|
||||
|
||||
| irc | xxx,irc_raw_in2_yyy ^(1)^ +
|
||||
(_nouveau dans la version 0.3.2_) |
|
||||
_(nouveau dans la version 0.3.2)_ |
|
||||
chaîne : message |
|
||||
message irc du serveur (après utilisation par l'extension irc,
|
||||
signal envoyé même si le message est ignoré)
|
||||
|
||||
| irc | xxx,irc_out1_yyy ^(1)^ +
|
||||
(_nouveau dans la version 0.3.7_) |
|
||||
_(nouveau dans la version 0.3.7)_ |
|
||||
chaîne : message |
|
||||
message irc envoyé au serveur (avant découpage automatique pour tenir dans les 512 octets)
|
||||
|
||||
@@ -7763,7 +7763,7 @@ Paramètres :
|
||||
message irc envoyé au serveur (après découpage automatique pour tenir dans les 512 octets)
|
||||
|
||||
| irc | xxx,irc_outtags_yyy ^(1)^ +
|
||||
(_nouveau dans la version 0.3.4_) |
|
||||
_(nouveau dans la version 0.3.4)_ |
|
||||
chaîne : étiquettes + ";" + message |
|
||||
étiquettes + message irc envoyé au serveur
|
||||
|
||||
@@ -7788,7 +7788,7 @@ Paramètres :
|
||||
discussion privée ouverte
|
||||
|
||||
| irc | irc_server_opened +
|
||||
(_nouveau dans la version 0.3.7_) |
|
||||
_(nouveau dans la version 0.3.7)_ |
|
||||
pointeur : tampon |
|
||||
tampon du serveur ouvert
|
||||
|
||||
@@ -7813,27 +7813,27 @@ Paramètres :
|
||||
ignore supprimé
|
||||
|
||||
| irc | irc_notify_join +
|
||||
(_nouveau dans la version 0.3.8_) |
|
||||
_(nouveau dans la version 0.3.8)_ |
|
||||
chaîne: nom du serveur + "," + pseudo |
|
||||
un pseudo dans la liste de notifications a rejoint le serveur
|
||||
|
||||
| irc | irc_notify_quit +
|
||||
(_nouveau dans la version 0.3.8_) |
|
||||
_(nouveau dans la version 0.3.8)_ |
|
||||
chaîne: nom du serveur + "," + pseudo |
|
||||
un pseudo dans la liste de notifications a quitté le serveur
|
||||
|
||||
| irc | irc_notify_away +
|
||||
(_nouveau dans la version 0.3.8_) |
|
||||
_(nouveau dans la version 0.3.8)_ |
|
||||
chaîne: nom du serveur + "," + pseudo + "," + message d'absence |
|
||||
un pseudo dans la liste de notifications est maintenant absent sur le serveur
|
||||
|
||||
| irc | irc_notify_still_away +
|
||||
(_nouveau dans la version 0.3.8_) |
|
||||
_(nouveau dans la version 0.3.8)_ |
|
||||
chaîne: nom du serveur + "," + pseudo + "," + message d'absence |
|
||||
un pseudo dans la liste de notifications est toujours absent sur le serveur (le message d'absence a changé)
|
||||
|
||||
| irc | irc_notify_back +
|
||||
(_nouveau dans la version 0.3.8_) |
|
||||
_(nouveau dans la version 0.3.8)_ |
|
||||
chaîne: nom du serveur + "," + pseudo |
|
||||
un pseudo dans la liste de notifications est de retour (statut d'absence supprimé)
|
||||
|
||||
@@ -7850,102 +7850,102 @@ Paramètres :
|
||||
affichage du backlog pour le tampon
|
||||
|
||||
| lua | lua_script_loaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script lua chargé
|
||||
|
||||
| lua | lua_script_unloaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script lua déchargé
|
||||
|
||||
| lua | lua_script_installed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.lua,/chemin/vers/script2.lua") |
|
||||
script(s) lua installé(s)
|
||||
|
||||
| lua | lua_script_removed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.lua,script2.lua") |
|
||||
script(s) lua supprimé(s)
|
||||
|
||||
| perl | perl_script_loaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script perl chargé
|
||||
|
||||
| perl | perl_script_unloaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script perl déchargé
|
||||
|
||||
| perl | perl_script_installed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.pl,/chemin/vers/script2.pl") |
|
||||
script(s) perl installé(s)
|
||||
|
||||
| perl | perl_script_removed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.pl,script2.pl") |
|
||||
script(s) perl supprimé(s)
|
||||
|
||||
| python | python_script_loaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script python chargé
|
||||
|
||||
| python | python_script_unloaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script python déchargé
|
||||
|
||||
| python | python_script_installed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.py,/chemin/vers/script2.py") |
|
||||
script(s) python installé(s)
|
||||
|
||||
| python | python_script_removed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.py,script2.py") |
|
||||
script(s) python supprimé(s)
|
||||
|
||||
| ruby | ruby_script_loaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script ruby chargé
|
||||
|
||||
| ruby | ruby_script_unloaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script ruby déchargé
|
||||
|
||||
| ruby | ruby_script_installed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.rb,/chemin/vers/script2.rb") |
|
||||
script(s) ruby installé(s)
|
||||
|
||||
| ruby | ruby_script_removed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.rb,script2.rb") |
|
||||
script(s) ruby supprimé(s)
|
||||
|
||||
| tcl | tcl_script_loaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script tcl chargé
|
||||
|
||||
| tcl | tcl_script_unloaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: chemin vers le script |
|
||||
script tcl déchargé
|
||||
|
||||
| tcl | tcl_script_installed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.tcl,/chemin/vers/script2.tcl") |
|
||||
script(s) tcl installé(s)
|
||||
|
||||
| tcl | tcl_script_removed +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.tcl,script2.tcl") |
|
||||
script(s) tcl supprimé(s)
|
||||
|
||||
@@ -7958,7 +7958,7 @@ Paramètres :
|
||||
tampon fermé
|
||||
|
||||
| weechat | buffer_line_added +
|
||||
(_nouveau dans la version 0.3.7_) |
|
||||
_(nouveau dans la version 0.3.7)_ |
|
||||
pointeur : ligne |
|
||||
ligne ajoutée dans un tampon
|
||||
|
||||
@@ -8011,7 +8011,7 @@ Paramètres :
|
||||
type de tampon changé
|
||||
|
||||
| weechat | day_changed +
|
||||
(_nouveau dans la version 0.3.2_) |
|
||||
_(nouveau dans la version 0.3.2)_ |
|
||||
chaîne : nouvelle date, format : "2010-01-31" |
|
||||
le jour de la date système a changé
|
||||
|
||||
@@ -8072,42 +8072,42 @@ Paramètres :
|
||||
touche appuyée
|
||||
|
||||
| weechat | nicklist_group_added +
|
||||
(_nouveau dans la version 0.3.2_) |
|
||||
_(nouveau dans la version 0.3.2)_ |
|
||||
chaîne : pointeur tampon + "," + nom du groupe |
|
||||
groupe ajouté dans la liste des pseudos
|
||||
|
||||
| weechat | nicklist_group_changed +
|
||||
(_nouveau dans la version 0.3.4_) |
|
||||
_(nouveau dans la version 0.3.4)_ |
|
||||
chaîne : pointeur tampon + "," + nom du groupe |
|
||||
groupe modifié dans la liste des pseudos
|
||||
|
||||
| weechat | nicklist_group_removing +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
chaîne : pointeur tampon + "," + nom du groupe |
|
||||
suppression du groupe de la liste des pseudos
|
||||
|
||||
| weechat | nicklist_group_removed +
|
||||
(_nouveau dans la version 0.3.2_) |
|
||||
_(nouveau dans la version 0.3.2)_ |
|
||||
chaîne : pointeur tampon + "," + nom du groupe |
|
||||
groupe supprimé de la liste des pseudos
|
||||
|
||||
| weechat | nicklist_nick_added +
|
||||
(_nouveau dans la version 0.3.2_) |
|
||||
_(nouveau dans la version 0.3.2)_ |
|
||||
chaîne : pointeur tampon + "," + pseudo |
|
||||
pseudo ajouté dans la liste des pseudos
|
||||
|
||||
| weechat | nicklist_nick_changed +
|
||||
(_nouveau dans la version 0.3.4_) |
|
||||
_(nouveau dans la version 0.3.4)_ |
|
||||
chaîne : pointeur tampon + "," + pseudo |
|
||||
pseudo modifié dans la liste des pseudos
|
||||
|
||||
| weechat | nicklist_nick_removing +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
chaîne : pointeur tampon + "," + pseudo |
|
||||
suppression du pseudo de la liste des pseudos
|
||||
|
||||
| weechat | nicklist_nick_removed +
|
||||
(_nouveau dans la version 0.3.2_) |
|
||||
_(nouveau dans la version 0.3.2)_ |
|
||||
chaîne : pointeur tampon + "," + pseudo |
|
||||
pseudo supprimé de la liste des pseudos
|
||||
|
||||
@@ -8116,12 +8116,12 @@ Paramètres :
|
||||
une complétion partielle a été faite
|
||||
|
||||
| weechat | plugin_loaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne : chemin vers l'extension chargée (exemple: "/usr/lib/weechat/plugins/irc.so") |
|
||||
extension chargée
|
||||
|
||||
| weechat | plugin_unloaded +
|
||||
(_nouveau dans la version 0.3.9_) |
|
||||
_(nouveau dans la version 0.3.9)_ |
|
||||
chaîne : nom de l'extension déchargée (exemple: "irc") |
|
||||
extension déchargée
|
||||
|
||||
@@ -8134,7 +8134,7 @@ Paramètres :
|
||||
la commande `/upgrade` a été exécutée par l'utilisateur
|
||||
|
||||
| weechat | upgrade_ended +
|
||||
(_nouveau dans la version 0.3.4_) |
|
||||
_(nouveau dans la version 0.3.4)_ |
|
||||
- |
|
||||
fin du processus de mise à jour (commande `/upgrade`)
|
||||
|
||||
@@ -8147,17 +8147,17 @@ Paramètres :
|
||||
un message privé a été affiché
|
||||
|
||||
| weechat | window_closing +
|
||||
(_nouveau dans la version 0.3.6_) |
|
||||
_(nouveau dans la version 0.3.6)_ |
|
||||
pointeur : fenêtre |
|
||||
fermeture de la fenêtre en cours
|
||||
|
||||
| weechat | window_closed +
|
||||
(_nouveau dans la version 0.3.6_) |
|
||||
_(nouveau dans la version 0.3.6)_ |
|
||||
pointeur : fenêtre |
|
||||
fenêtre fermée
|
||||
|
||||
| weechat | window_opened +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
pointeur : fenêtre |
|
||||
fenêtre ouverte
|
||||
|
||||
@@ -8166,7 +8166,7 @@ Paramètres :
|
||||
défilement dans la fenêtre
|
||||
|
||||
| weechat | window_switch +
|
||||
(_nouveau dans la version 0.3.7_) |
|
||||
_(nouveau dans la version 0.3.7)_ |
|
||||
pointeur : fenêtre |
|
||||
basculement vers une autre fenêtre
|
||||
|
||||
@@ -8211,7 +8211,7 @@ Paramètres :
|
||||
redémarrage prêt
|
||||
|
||||
| xfer | xfer_ended +
|
||||
(_nouveau dans la version 0.3.2_) |
|
||||
_(nouveau dans la version 0.3.2)_ |
|
||||
pointer : infolist avec l'info xfer |
|
||||
le xfer s'est terminé
|
||||
|========================================
|
||||
@@ -8231,7 +8231,7 @@ Paramètres :
|
||||
** valeur de retour :
|
||||
*** 'WEECHAT_RC_OK'
|
||||
*** 'WEECHAT_RC_OK_EAT' (arrêter l'envoi du signal immédiatement)
|
||||
(_nouveau dans la version 0.4.0_)
|
||||
_(nouveau dans la version 0.4.0)_
|
||||
*** 'WEECHAT_RC_ERROR'
|
||||
* 'callback_data' : pointeur donné au "callback" lorsqu'il est appelé par
|
||||
WeeChat
|
||||
@@ -8495,46 +8495,46 @@ Paramètres :
|
||||
| Extension | Signal | Paramètres | Description
|
||||
|
||||
| irc | irc_redirection_xxx_yyy ^(1)^ +
|
||||
(_nouveau dans la version 0.3.4_) |
|
||||
_(nouveau dans la version 0.3.4)_ |
|
||||
sortie de la redirection (voir <<hsignal_irc_redirect_command>>)
|
||||
|
||||
| weechat | nicklist_group_added +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *') : tampon +
|
||||
'parent_group' ('struct t_gui_nick_group *') : groupe parent +
|
||||
'group' ('struct t_gui_nick_group *') : groupe |
|
||||
group added in nicklist
|
||||
|
||||
| weechat | nicklist_nick_added +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *') : tampon +
|
||||
'parent_group' ('struct t_gui_nick_group *') : groupe parent +
|
||||
'nick' ('struct t_gui_nick *') : pseudo |
|
||||
nick added in nicklist
|
||||
|
||||
| weechat | nicklist_group_removing +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *') : tampon +
|
||||
'parent_group' ('struct t_gui_nick_group *') : groupe parent +
|
||||
'group' ('struct t_gui_nick_group *') : groupe |
|
||||
removing group from nicklist
|
||||
|
||||
| weechat | nicklist_nick_removing +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *') : tampon +
|
||||
'parent_group' ('struct t_gui_nick_group *') : groupe parent +
|
||||
'nick' ('struct t_gui_nick *') : pseudo |
|
||||
removing nick from nicklist
|
||||
|
||||
| weechat | nicklist_group_changed +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *') : tampon +
|
||||
'parent_group' ('struct t_gui_nick_group *') : groupe parent +
|
||||
'group' ('struct t_gui_nick_group *') : groupe |
|
||||
group changed in nicklist
|
||||
|
||||
| weechat | nicklist_nick_changed +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *') : tampon +
|
||||
'parent_group' ('struct t_gui_nick_group *') : parent +
|
||||
'nick' ('struct t_gui_nick *') : pseudo |
|
||||
@@ -8553,7 +8553,7 @@ modèle de redirection ("pattern").
|
||||
** valeur de retour :
|
||||
*** 'WEECHAT_RC_OK'
|
||||
*** 'WEECHAT_RC_OK_EAT' (arrêter l'envoi du signal immédiatement)
|
||||
(_nouveau dans la version 0.4.0_)
|
||||
_(nouveau dans la version 0.4.0)_
|
||||
*** 'WEECHAT_RC_ERROR'
|
||||
* 'callback_data' : pointeur donné au "callback" lorsqu'il est appelé par
|
||||
WeeChat
|
||||
@@ -9125,13 +9125,13 @@ Paramètres :
|
||||
chaîne avec des codes couleur IRC, ou sans couleur
|
||||
|
||||
| irc | irc_command_auth +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
nom du serveur |
|
||||
commande d'authentification (par exemple: `/msg nickserv identify password`) |
|
||||
commande avec le mot de passe caché (par exemple: `/msg nickserv identify ********`)
|
||||
|
||||
| irc | irc_message_auth +
|
||||
(_nouveau dans la version 0.4.1_) |
|
||||
_(nouveau dans la version 0.4.1)_ |
|
||||
nom du serveur |
|
||||
message affiché après `msg` envoyé à nickserv |
|
||||
message avec le mot de passe caché
|
||||
@@ -9142,13 +9142,13 @@ Paramètres :
|
||||
nouveau contenu du message
|
||||
|
||||
| irc | irc_in2_xxx ^(1)^ +
|
||||
(_nouveau dans la version 0.3.5_) |
|
||||
_(nouveau dans la version 0.3.5)_ |
|
||||
nom de serveur |
|
||||
contenu du message reçu du serveur IRC (après décodage du jeu de caractères) |
|
||||
nouveau contenu du message
|
||||
|
||||
| irc | irc_out1_xxx ^(1)^ +
|
||||
(_nouveau dans la version 0.3.7_) |
|
||||
_(nouveau dans la version 0.3.7)_ |
|
||||
nom de serveur |
|
||||
contenu du message qui va être envoyé au serveur IRC (avant découpage automatique pour tenir dans les 512 octets) |
|
||||
nouveau contenu du message
|
||||
@@ -9164,7 +9164,7 @@ Paramètres :
|
||||
"1" pour afficher la barre, "0" pour la cacher
|
||||
|
||||
| weechat | history_add +
|
||||
(_nouveau dans la version 0.3.2_) |
|
||||
_(nouveau dans la version 0.3.2)_ |
|
||||
chaîne avec un pointeur vers le tampon ("0x123..") |
|
||||
contenu de la ligne de commande à ajouter à l'historique des commandes
|
||||
(tampon et global) |
|
||||
@@ -9188,7 +9188,7 @@ Paramètres :
|
||||
modifiée)
|
||||
|
||||
| weechat | input_text_for_buffer +
|
||||
(_nouveau dans la version 0.3.7_) |
|
||||
_(nouveau dans la version 0.3.7)_ |
|
||||
chaîne avec un pointeur vers le tampon ("0x123..") |
|
||||
contenu de la ligne de commande envoyée au tampon (texte ou commande) |
|
||||
nouveau contenu de la ligne de commande envoyée au tampon
|
||||
@@ -10316,7 +10316,7 @@ Paramètres :
|
||||
** 'plugin' : nom de l'extension qui a créé ce tampon ("core" pour le tampon
|
||||
principal WeeChat)
|
||||
** 'name' : nom du tampon
|
||||
** 'full_name' : nom complet du tampon ("extension.nom") (_nouveau dans la version 0.3.7_)
|
||||
** 'full_name' : nom complet du tampon ("extension.nom") _(nouveau dans la version 0.3.7)_
|
||||
** 'short_name' : nom court du tampon (note: utilisé pour l'affichage seulement
|
||||
et peut être changé par l'utilisateur, il ne doit pas être utilisé pour
|
||||
trouver le nom du tampon, utlisez à la place 'name', 'full_name' ou bien la
|
||||
@@ -10614,9 +10614,9 @@ Paramètres :
|
||||
en entrée
|
||||
** 'nickcmp_callback' : définit la fonction "callback" de comparaison de pseudos
|
||||
(ce "callback" est appelé lors de la recherche d'un pseudo dans la liste des
|
||||
pseudos) (_nouveau dans la version 0.3.9_)
|
||||
pseudos) _(nouveau dans la version 0.3.9)_
|
||||
** 'nickcmp_callback_data': définit les données pour le "callback" de
|
||||
comparaison de pseudos (_nouveau dans la version 0.3.9_)
|
||||
comparaison de pseudos _(nouveau dans la version 0.3.9)_
|
||||
|
||||
Prototypes pour les "callbacks" :
|
||||
|
||||
@@ -13374,19 +13374,19 @@ Paramètres :
|
||||
l'élément suivant dans la liste (peut être NULL si une telle variable
|
||||
n'existe pas)
|
||||
* 'create_allowed' : 1 si la création de structure est autorisée, sinon 0
|
||||
(_nouveau dans la version 0.4.0_)
|
||||
_(nouveau dans la version 0.4.0)_
|
||||
* 'delete_allowed' : 1 si la suppression de structure est autorisée, sinon 0
|
||||
(_nouveau dans la version 0.3.9_)
|
||||
_(nouveau dans la version 0.3.9)_
|
||||
* 'callback_update' : fonction appelée pour mettre à jour des données dans le
|
||||
hdata, peut être NULL si aucune mise à jour n'est autorisée
|
||||
(_nouveau dans la version 0.3.9_), paramètres et valeur de retour :
|
||||
_(nouveau dans la version 0.3.9)_, paramètres et valeur de retour :
|
||||
** 'void *data' : pointeur
|
||||
** 'struct t_hdata *hdata' : pointeur vers le hdata
|
||||
** 'struct t_hashtable *hashtable' : hashtable avec les variables à mettre à
|
||||
jour (voir <<_weechat_hdata_update,weechat_hdata_update>>)
|
||||
** valeur de retour : nombre de variables mises à jour
|
||||
* 'callback_update_data' : pointeur donné au "callback" lorsqu'il est appelé par
|
||||
WeeChat (_nouveau dans la version 0.3.9_)
|
||||
WeeChat _(nouveau dans la version 0.3.9)_
|
||||
|
||||
Valeur de retour :
|
||||
|
||||
@@ -13432,9 +13432,9 @@ Paramètres :
|
||||
** WEECHAT_HDATA_HASHTABLE
|
||||
** WEECHAT_HDATA_OTHER
|
||||
* 'update_allowed' : 1 si la mise à jour de la variable est autorisée, sinon 0
|
||||
(_nouveau dans la version 0.3.9_)
|
||||
_(nouveau dans la version 0.3.9)_
|
||||
* 'array_size' : non NULL seulement si la variable est un tableau, et peut être :
|
||||
(_nouveau dans la version 0.3.9_)
|
||||
_(nouveau dans la version 0.3.9)_
|
||||
** nom d'une variable du hdata : cette variable sera utilisée comme taille de
|
||||
tableau (taille dynamique pour le tableau)
|
||||
** entier (sous forme de chaîne) : taille fixe pour le tableau
|
||||
@@ -14594,7 +14594,7 @@ Paramètres :
|
||||
acceptées :
|
||||
** clé `__create_allowed` (avec n'importe quelle valeur) : retourne 1 si la
|
||||
création est autorisée pour la strucrure, sinon 0
|
||||
(_nouveau dans la version 0.4.0_)
|
||||
_(nouveau dans la version 0.4.0)_
|
||||
** clé `__delete_allowed` (avec n'importe quelle valeur) : retourne 1 si la
|
||||
suppression est autorisée pour la structure, sinon 0
|
||||
** clé `__update_allowed`, la valeur est le nom d'une variable : retourne 1 si
|
||||
|
||||
@@ -1255,7 +1255,7 @@ Argomenti:
|
||||
** 1: ogni stringa conterrà tutte le stringhe fino a fine riga
|
||||
(consultare il seguente esempio)
|
||||
** 2: come il punto 1, ma non rimuove i delimitatori alla fine della stringa
|
||||
prima della divisione (_novità nella versione 0.3.6_)
|
||||
prima della divisione _(novità nella versione 0.3.6)_
|
||||
* 'num_items_max': numero massimo di elementi creati (0 = nessun limite)
|
||||
* 'num_items': puntatore ad int che conterrà il numero di elementi creati
|
||||
|
||||
@@ -3700,7 +3700,7 @@ Argomenti:
|
||||
* 'property' e 'value': nome della proprietà, con il proprio valore:
|
||||
// TRANSLATION MISSING
|
||||
** 'callback_free_key': set callback function used to free keys in hashtable
|
||||
(_novità nella versione 0.4.2_)
|
||||
_(novità nella versione 0.4.2)_
|
||||
** 'callback_free_value': imposta la funzione callback usata per
|
||||
liberare i valori nella tabella hash
|
||||
|
||||
@@ -4427,7 +4427,7 @@ option5 = weechat.config_new_option(config_file, section, "option5", "color",
|
||||
[NOTE]
|
||||
In Ruby, the 3 callbacks + data (6 strings) must be given in an array of 6
|
||||
strings (due to a Ruby limitation of 15 arguments by function), see the
|
||||
'WeeChat Scripting Guide' for more info (_fixed in version 0.4.1_).
|
||||
'WeeChat Scripting Guide' for more info _(fixed in version 0.4.1)_.
|
||||
|
||||
weechat_config_search_option
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
@@ -6327,7 +6327,7 @@ Argomenti:
|
||||
** reset:
|
||||
*** 'reset': ripristina colore ed attributi
|
||||
*** 'resetcolor': ripristina colore (mantiene attributi)
|
||||
(_novità nella versione 0.3.6_)
|
||||
_(novità nella versione 0.3.6)_
|
||||
|
||||
Il formato del colore è: attributi (opzionale) + nome colore +",sfondo"
|
||||
(opzionale). Gli attributi possibili sono:
|
||||
@@ -6336,7 +6336,7 @@ Il formato del colore è: attributi (opzionale) + nome colore +",sfondo"
|
||||
* `!` : video inverso
|
||||
* `_` : testo sottolineato
|
||||
* `|` : mantiene attributi: non ripristina grassetto/inverso/sottolineato
|
||||
al cambio di colore (_novità nella versione 0.3.6_)
|
||||
al cambio di colore _(novità nella versione 0.3.6)_
|
||||
|
||||
Esempi:
|
||||
|
||||
@@ -7043,7 +7043,7 @@ WeeChat makes an automatic split of command and arguments (like the shell does).
|
||||
If the split is not correct (according to quotes in your command), or if you
|
||||
want to use shell, you can use function
|
||||
<<_weechat_hook_process_hashtable,weechat_hook_process_hashtable>> with
|
||||
arguments in the hashtable 'options' (_new in version 0.4.0_).
|
||||
arguments in the hashtable 'options' _(new in version 0.4.0)_.
|
||||
|
||||
Prototipo:
|
||||
|
||||
@@ -7063,7 +7063,7 @@ struct t_hook *weechat_hook_process (const char *command,
|
||||
Argomenti:
|
||||
|
||||
* 'command': comando da avviare nel processo figlio o URL
|
||||
(_novità nella versione 0.3.7_), segue:
|
||||
_(novità nella versione 0.3.7)_, segue:
|
||||
* 'timeout': timeout per il comando (in millisecondi): dopo questo timeout,
|
||||
il processo figlio viene terminato (0 indica nessun timeout)
|
||||
* 'callback': funzione chiamata quando i dati dal processo figlio sono disponibili,
|
||||
@@ -7096,7 +7096,7 @@ Quando il comando ha terminato, o se viene raggiunto il timeout, WeeChat
|
||||
effettua automaticamente l'unhook (e termina il processo se ancora in esecuzione).
|
||||
|
||||
Il comando può essere un URL con il formato: "url:http://www.esempio.com", per
|
||||
scaricare il contenuto dell'URL (_novità nella versione 0.3.7_). Le opzioni per
|
||||
scaricare il contenuto dell'URL _(novità nella versione 0.3.7)_. Le opzioni per
|
||||
un URL sono disponibili con la funzione
|
||||
<<_weechat_hook_process_hashtable,weechat_hook_process_hashtable>>.
|
||||
|
||||
@@ -7208,7 +7208,7 @@ Gli argomenti sono gli stessi della funzione
|
||||
// TRANSLATION MISSING
|
||||
For a standard command (not beginning with "url:"), the hashtable 'options' can
|
||||
contain arguments for command (and then 'command' must be only the command
|
||||
without arguments) (_new in version 0.4.0_). +
|
||||
without arguments) _(new in version 0.4.0)_. +
|
||||
The keys in hashtable must be: 'arg1', 'arg2', ...
|
||||
|
||||
Per il comando "url:..." sono disponibili le seguenti opzioni (consultare
|
||||
@@ -7651,31 +7651,31 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| aspell | aspell_suggest +
|
||||
(_novità nella versione 0.4.0_) |
|
||||
_(novità nella versione 0.4.0)_ |
|
||||
pointer: buffer |
|
||||
new suggestions for a misspelled word
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| guile | guile_script_loaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
scheme script loaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| guile | guile_script_unloaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
scheme script unloaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| guile | guile_script_installed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.scm,/path/to/script2.scm") |
|
||||
scheme script(s) installed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| guile | guile_script_removed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.scm,script2.scm") |
|
||||
scheme script(s) removed
|
||||
|
||||
@@ -7692,21 +7692,21 @@ Argomenti:
|
||||
solo se il messaggio *non* viene ignorato)
|
||||
|
||||
| irc | xxx,irc_raw_in_yyy ^(1)^ +
|
||||
(_novità nella versione 0.3.2_) |
|
||||
_(novità nella versione 0.3.2)_ |
|
||||
string: messaggio |
|
||||
messaggio irc dal server (prima di essere utilizzato
|
||||
dal plugin irc, il segnale viene inviato anche se il
|
||||
messaggio è stato ignorato)
|
||||
|
||||
| irc | xxx,irc_raw_in2_yyy ^(1)^ +
|
||||
(_novità nella versione 0.3.2_) |
|
||||
_(novità nella versione 0.3.2)_ |
|
||||
string: messaggio |
|
||||
messaggio irc dal server (dopo essere stato
|
||||
utilizzato dal plugin irc, il segnale viene inviato
|
||||
anche se il messaggio è stato ignorato)
|
||||
|
||||
| irc | xxx,irc_out1_yyy ^(1)^ +
|
||||
(_novità nella versione 0.3.7_) |
|
||||
_(novità nella versione 0.3.7)_ |
|
||||
string: messaggio |
|
||||
messaggio irc inviato al server (prima della divisione automatica da adattare in 512 byte)
|
||||
|
||||
@@ -7715,7 +7715,7 @@ Argomenti:
|
||||
messaggio irc inviato al server (dopo la divisione automatica da adattare in 512 byte)
|
||||
|
||||
| irc | xxx,irc_outtags_yyy ^(1)^ +
|
||||
(_novità nella versione 0.3.4_) |
|
||||
_(novità nella versione 0.3.4)_ |
|
||||
stringa: tag + ";" + messaggio |
|
||||
tag + messaggio irc inviato al server
|
||||
|
||||
@@ -7740,7 +7740,7 @@ Argomenti:
|
||||
chat privata aperta
|
||||
|
||||
| irc | irc_server_opened +
|
||||
(_novità nella versione 0.3.7_) |
|
||||
_(novità nella versione 0.3.7)_ |
|
||||
puntatore: buffer |
|
||||
server del buffer aperto
|
||||
|
||||
@@ -7765,27 +7765,27 @@ Argomenti:
|
||||
ignore rimosso
|
||||
|
||||
| irc | irc_notify_join +
|
||||
(_novità nella versione 0.3.8_) |
|
||||
_(novità nella versione 0.3.8)_ |
|
||||
string: nome server + "," + nick |
|
||||
un nick nella lista notifiche è entrato sul server
|
||||
|
||||
| irc | irc_notify_quit +
|
||||
(_novità nella versione 0.3.8_) |
|
||||
_(novità nella versione 0.3.8)_ |
|
||||
string: nome server + "," + nick |
|
||||
un nick nella lista notifiche è uscito dal server
|
||||
|
||||
| irc | irc_notify_away +
|
||||
(_novità nella versione 0.3.8_) |
|
||||
_(novità nella versione 0.3.8)_ |
|
||||
string: nome server + "," + nick + "," + messaggio di assenza |
|
||||
un nick nella lista notifiche è ora assente sul server
|
||||
|
||||
| irc | irc_notify_still_away +
|
||||
(_novità nella versione 0.3.8_) |
|
||||
_(novità nella versione 0.3.8)_ |
|
||||
string: nome server + "," + nick + "," + messaggio di assenza |
|
||||
un nick nella lista notifiche è ancora assente sul server (messaggio di assenza cambiato)
|
||||
|
||||
| irc | irc_notify_back +
|
||||
(_novità nella versione 0.3.8_) |
|
||||
_(novità nella versione 0.3.8)_ |
|
||||
string: nome server + "," + nick |
|
||||
un nick nella lista notifiche è tornato (messaggio di assenza rimosso)
|
||||
|
||||
@@ -7803,121 +7803,121 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| lua | lua_script_loaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
lua script loaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| lua | lua_script_unloaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
lua script unloaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| lua | lua_script_installed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.lua,/path/to/script2.lua") |
|
||||
lua script(s) installed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| lua | lua_script_removed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.lua,script2.lua") |
|
||||
lua script(s) removed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| perl | perl_script_loaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
perl script loaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| perl | perl_script_unloaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
perl script unloaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| perl | perl_script_installed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.pl,/path/to/script2.pl") |
|
||||
perl script(s) installed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| perl | perl_script_removed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.pl,script2.pl") |
|
||||
perl script(s) removed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| python | python_script_loaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
python script loaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| python | python_script_unloaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
python script unloaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| python | python_script_installed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.py,/path/to/script2.py") |
|
||||
python script(s) installed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| python | python_script_removed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.py,script2.py") |
|
||||
python script(s) removed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| ruby | ruby_script_loaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
ruby script loaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| ruby | ruby_script_unloaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
ruby script unloaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| ruby | ruby_script_installed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.rb,/path/to/script2.rb") |
|
||||
ruby script(s) installed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| ruby | ruby_script_removed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.rb,script2.rb") |
|
||||
ruby script(s) removed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| tcl | tcl_script_loaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
tcl script loaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| tcl | tcl_script_unloaded +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: path to script |
|
||||
tcl script unloaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| tcl | tcl_script_installed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of paths to scripts installed (example: "/path/to/script1.tcl,/path/to/script2.tcl") |
|
||||
tcl script(s) installed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| tcl | tcl_script_removed +
|
||||
(_novità nella versione 0.3.9_) |
|
||||
_(novità nella versione 0.3.9)_ |
|
||||
string: comma-separated list of scripts removed (example: "script1.tcl,script2.tcl") |
|
||||
tcl script(s) removed
|
||||
|
||||
@@ -7930,7 +7930,7 @@ Argomenti:
|
||||
buffer chiuso
|
||||
|
||||
| weechat | buffer_line_added +
|
||||
(_novità nella versione 0.3.7_) |
|
||||
_(novità nella versione 0.3.7)_ |
|
||||
puntatore: riga |
|
||||
riga aggiunta in un buffer
|
||||
|
||||
@@ -7985,7 +7985,7 @@ Argomenti:
|
||||
tipo di buffer modificato
|
||||
|
||||
| weechat | day_changed +
|
||||
(_novità nella versione 0.3.2_) |
|
||||
_(novità nella versione 0.3.2)_ |
|
||||
string: nuova data, formato: "2010-01-31" |
|
||||
data di sistema modificata
|
||||
|
||||
@@ -8049,49 +8049,49 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_group_added +
|
||||
(_novità nella versione 0.3.2_) |
|
||||
_(novità nella versione 0.3.2)_ |
|
||||
string: buffer pointer + "," + group name |
|
||||
group added in nicklist
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_group_changed +
|
||||
(_novità nella versione 0.3.4_) |
|
||||
_(novità nella versione 0.3.4)_ |
|
||||
string: buffer pointer + "," + group name |
|
||||
group changed in nicklist
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_group_removing +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
string: buffer pointer + "," + group name |
|
||||
removing group from nicklist
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_group_removed +
|
||||
(_novità nella versione 0.3.2_) |
|
||||
_(novità nella versione 0.3.2)_ |
|
||||
string: buffer pointer + "," + group name |
|
||||
group removed from nicklist
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_nick_added +
|
||||
(_novità nella versione 0.3.2_) |
|
||||
_(novità nella versione 0.3.2)_ |
|
||||
string: buffer pointer + "," + nick name |
|
||||
nick added in nicklist
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_nick_changed +
|
||||
(_novità nella versione 0.3.4_) |
|
||||
_(novità nella versione 0.3.4)_ |
|
||||
string: buffer pointer + "," + nick name |
|
||||
nick changed in nicklist
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_nick_removing +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
string: buffer pointer + "," + nick name |
|
||||
removing nick from nicklist
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_nick_removed +
|
||||
(_novità nella versione 0.3.2_) |
|
||||
_(novità nella versione 0.3.2)_ |
|
||||
string: buffer pointer + "," + nick name |
|
||||
nick removed from nicklist
|
||||
|
||||
@@ -8101,13 +8101,13 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | plugin_loaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: path to plugin loaded (example: "/usr/lib/weechat/plugins/irc.so") |
|
||||
plugin loaded
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | plugin_unloaded +
|
||||
(_new in version 0.3.9_) |
|
||||
_(new in version 0.3.9)_ |
|
||||
string: name of plugin unloaded (example: "irc") |
|
||||
plugin unloaded
|
||||
|
||||
@@ -8121,7 +8121,7 @@ Argomenti:
|
||||
comando `/upgrade` digitato dall'utente
|
||||
|
||||
| weechat | upgrade_ended +
|
||||
(_novità nella versione 0.3.4_) |
|
||||
_(novità nella versione 0.3.4)_ |
|
||||
- |
|
||||
fine del processo di aggiornamento (comando `/upgrade`)
|
||||
|
||||
@@ -8135,19 +8135,19 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | window_closing +
|
||||
(_novità nella versione 0.3.6_) |
|
||||
_(novità nella versione 0.3.6)_ |
|
||||
puntatore: finestra |
|
||||
closing window
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | window_closed +
|
||||
(_novità nella versione 0.3.6_) |
|
||||
_(novità nella versione 0.3.6)_ |
|
||||
puntatore: finestra |
|
||||
window closed
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | window_opened +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
puntatore: finestra |
|
||||
window opened
|
||||
|
||||
@@ -8156,7 +8156,7 @@ Argomenti:
|
||||
scroll nella finestra
|
||||
|
||||
| weechat | window_switch +
|
||||
(_novità nella versione 0.3.7_) |
|
||||
_(novità nella versione 0.3.7)_ |
|
||||
puntatore: finestra |
|
||||
passaggio alla finestra
|
||||
|
||||
@@ -8202,7 +8202,7 @@ Argomenti:
|
||||
ripresa xfer pronta
|
||||
|
||||
| xfer | xfer_ended +
|
||||
(_novità nella versione 0.3.2_) |
|
||||
_(novità nella versione 0.3.2)_ |
|
||||
puntatore: lista info con info per xfer |
|
||||
xfer terminato
|
||||
|
||||
@@ -8224,7 +8224,7 @@ Argomenti:
|
||||
*** 'WEECHAT_RC_OK'
|
||||
// TRANSLATION MISSING
|
||||
*** 'WEECHAT_RC_OK_EAT' (stop sending the signal immediately)
|
||||
(_novità nella versione 0.4.0_)
|
||||
_(novità nella versione 0.4.0)_
|
||||
*** 'WEECHAT_RC_ERROR'
|
||||
* 'callback_data': puntatore fornito alla callback quando chiamata da WeeChat
|
||||
|
||||
@@ -8487,13 +8487,13 @@ Argomenti:
|
||||
| Plugin | Segnale | Argomenti | Descrizione
|
||||
|
||||
| irc | irc_redirection_xxx_yyy ^(1)^ +
|
||||
(_novità nella versione 0.3.4_) |
|
||||
_(novità nella versione 0.3.4)_ |
|
||||
consultare <<hsignal_irc_redirect_command,hsignal_irc_redirect_command>> |
|
||||
redirection output
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_group_added +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'group' ('struct t_gui_nick_group *'): group |
|
||||
@@ -8501,7 +8501,7 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_nick_added +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'nick' ('struct t_gui_nick *'): nick |
|
||||
@@ -8509,7 +8509,7 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_group_removing +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'group' ('struct t_gui_nick_group *'): group |
|
||||
@@ -8517,7 +8517,7 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_nick_removing +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'nick' ('struct t_gui_nick *'): nick |
|
||||
@@ -8525,7 +8525,7 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_group_changed +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'group' ('struct t_gui_nick_group *'): group |
|
||||
@@ -8533,7 +8533,7 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | nicklist_nick_changed +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
'buffer' ('struct t_gui_buffer *'): buffer +
|
||||
'parent_group' ('struct t_gui_nick_group *'): parent group +
|
||||
'nick' ('struct t_gui_nick *'): nick |
|
||||
@@ -8553,7 +8553,7 @@ di redirezione.
|
||||
*** 'WEECHAT_RC_OK'
|
||||
// TRANSLATION MISSING
|
||||
*** 'WEECHAT_RC_OK_EAT' (stop sending the signal immediately)
|
||||
(_novità nella versione 0.4.0_)
|
||||
_(novità nella versione 0.4.0)_
|
||||
*** 'WEECHAT_RC_ERROR'
|
||||
* 'callback_data': puntatore fornito alla callback quando chiamata da WeeChat
|
||||
|
||||
@@ -9117,14 +9117,14 @@ Argomenti:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| irc | irc_command_auth +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
nome server |
|
||||
authentication command (for example: `/msg nickserv identify password`) |
|
||||
command with hidden password (for example: `/msg nickserv identify ********`)
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| irc | irc_message_auth +
|
||||
(_novità nella versione 0.4.1_) |
|
||||
_(novità nella versione 0.4.1)_ |
|
||||
nome server |
|
||||
message displayed after `/msg` sent to nickserv |
|
||||
message with hidden password
|
||||
@@ -9135,13 +9135,13 @@ Argomenti:
|
||||
nuovo contenuto del messaggio
|
||||
|
||||
| irc | irc_in2_xxx ^(1)^ +
|
||||
(_novità nella versione 0.3.5_) |
|
||||
_(novità nella versione 0.3.5)_ |
|
||||
nome server |
|
||||
contenuto del messaggio ricevuto dal server IRC (dopo la codifica del set caratteri) |
|
||||
nuovo contenuto del messaggio
|
||||
|
||||
| irc | irc_out1_xxx ^(1)^ +
|
||||
(_novità nella versione 0.3.7_) |
|
||||
_(novità nella versione 0.3.7)_ |
|
||||
nome server |
|
||||
contenuto del messaggio che sta per essere inviato al server IRC (prima della divisione automatica da adattare in 512 byte) |
|
||||
nuovo contenuto del messaggio
|
||||
@@ -9157,7 +9157,7 @@ Argomenti:
|
||||
"1" per visualizzare la barra, "0" per nasconderla
|
||||
|
||||
| weechat | history_add +
|
||||
(_novità nella versione 0.3.2_) |
|
||||
_(novità nella versione 0.3.2)_ |
|
||||
stringa con puntatore al buffer ("0x123..") |
|
||||
contenuto della riga di comando da aggiungere nella cronologia comandi (buffer e globale |
|
||||
stringa aggiunta alla cronologia comandi
|
||||
@@ -9178,7 +9178,7 @@ Argomenti:
|
||||
nuova stringa, solo da mostrare (la riga di comando non viene modificata)
|
||||
|
||||
| weechat | input_text_for_buffer +
|
||||
(_novità nella versione 0.3.7_) |
|
||||
_(novità nella versione 0.3.7)_ |
|
||||
stringa con puntatore al buffer ("0x123..") |
|
||||
contenuto della riga di comando inviata al buffer (testo o comando) |
|
||||
nuovo contenuto della riga di comando inviata al buffer
|
||||
@@ -10303,7 +10303,7 @@ Argomenti:
|
||||
** 'plugin': nome del plugin che ha creato questo buffer ("core"
|
||||
per il buffer principale di WeeChat)
|
||||
** 'name': nome del buffer
|
||||
** 'full_name': nome completo del buffer ("plugin.nome") (_novità nella versione 0.3.7_)
|
||||
** 'full_name': nome completo del buffer ("plugin.nome") _(novità nella versione 0.3.7)_
|
||||
** 'short_name': nome breve del buffer (nota: usato solo per il display e può
|
||||
essere cambiato dall'utente, questo nome non va usato per trovare il nome del
|
||||
buffer, utilizzare invece 'name', 'fullname' o la variabile locale 'channel')
|
||||
@@ -10598,10 +10598,10 @@ Argomenti:
|
||||
** 'input_callback_data': set input callback data
|
||||
// TRANSLATION MISSING
|
||||
** 'nickcmp_callback': set nick comparison callback function (this callback is
|
||||
called when searching nick in nicklist) (_novità nella versione 0.3.9_)
|
||||
called when searching nick in nicklist) _(novità nella versione 0.3.9)_
|
||||
// TRANSLATION MISSING
|
||||
** 'nickcmp_callback_data': set nick comparison callback data
|
||||
(_novità nella versione 0.3.9_)
|
||||
_(novità nella versione 0.3.9)_
|
||||
|
||||
// TRANSLATION MISSING
|
||||
Prototypes for callbacks:
|
||||
@@ -13357,13 +13357,13 @@ Argomenti:
|
||||
successivo nella lista (può essere NULL se non è disponibile tale variabile)
|
||||
// TRANSLATION MISSING
|
||||
* 'create_allowed': 1 if create of structure is allowed, otherwise 0
|
||||
(_novità nella versione 0.4.0_)
|
||||
_(novità nella versione 0.4.0)_
|
||||
// TRANSLATION MISSING
|
||||
* 'delete_allowed': 1 if delete of structure is allowed, otherwise 0
|
||||
(_novità nella versione 0.3.9_)
|
||||
_(novità nella versione 0.3.9)_
|
||||
// TRANSLATION MISSING
|
||||
* 'callback_update': callback to update data in hdata, can be NULL if no update
|
||||
is allowed (_novità nella versione 0.3.9_), arguments and return value:
|
||||
is allowed _(novità nella versione 0.3.9)_, arguments and return value:
|
||||
** 'void *data': pointer
|
||||
** 'struct t_hdata *hdata': pointer to hdata
|
||||
** 'struct t_hashtable *hashtable': hashtable with variables to update
|
||||
@@ -13371,7 +13371,7 @@ Argomenti:
|
||||
** return value: number of variables updated
|
||||
// TRANSLATION MISSING
|
||||
* 'callback_update_data': pointer given to update callback when it is called by
|
||||
WeeChat (_novità nella versione 0.3.9_)
|
||||
WeeChat _(novità nella versione 0.3.9)_
|
||||
|
||||
Valore restituito:
|
||||
|
||||
@@ -13418,10 +13418,10 @@ Argomenti:
|
||||
** WEECHAT_HDATA_OTHER
|
||||
// TRANSLATION MISSING
|
||||
* 'update_allowed': 1 if update of variable is allowed, otherwise 0
|
||||
(_novità nella versione 0.3.9_)
|
||||
_(novità nella versione 0.3.9)_
|
||||
// TRANSLATION MISSING
|
||||
* 'array_size': not NULL only if a variable is an array, and it can be:
|
||||
(_novità nella versione 0.3.9_)
|
||||
_(novità nella versione 0.3.9)_
|
||||
** name of variable in hdata: this variable will be used as size of array
|
||||
(dynamic size for array)
|
||||
** integer (as string): fixed size for array
|
||||
@@ -14585,7 +14585,7 @@ Argomenti:
|
||||
allowed:
|
||||
// TRANSLATION MISSING
|
||||
** key `__create_allowed` (with any value): return 1 if create is allowed for
|
||||
structure, otherwise 0 (_new in version 0.4.0_)
|
||||
structure, otherwise 0 _(new in version 0.4.0)_
|
||||
** key `__delete_allowed` (with any value): return 1 if delete is allowed for
|
||||
structure, otherwise 0
|
||||
** key `__update_allowed`, value is name of a variable: return 1 if update is
|
||||
|
||||
Reference in New Issue
Block a user