diff options
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/autogen/plugin_api/infos.adoc | 16 | ||||
-rw-r--r-- | doc/it/autogen/user/guile_commands.adoc | 7 | ||||
-rw-r--r-- | doc/it/autogen/user/javascript_commands.adoc | 7 | ||||
-rw-r--r-- | doc/it/autogen/user/lua_commands.adoc | 7 | ||||
-rw-r--r-- | doc/it/autogen/user/perl_commands.adoc | 7 | ||||
-rw-r--r-- | doc/it/autogen/user/php_commands.adoc | 7 | ||||
-rw-r--r-- | doc/it/autogen/user/python_commands.adoc | 7 | ||||
-rw-r--r-- | doc/it/autogen/user/ruby_commands.adoc | 7 | ||||
-rw-r--r-- | doc/it/autogen/user/tcl_commands.adoc | 7 |
9 files changed, 64 insertions, 8 deletions
diff --git a/doc/it/autogen/plugin_api/infos.adoc b/doc/it/autogen/plugin_api/infos.adoc index 62c11393b..215147191 100644 --- a/doc/it/autogen/plugin_api/infos.adoc +++ b/doc/it/autogen/plugin_api/infos.adoc @@ -10,6 +10,8 @@ | fifo | fifo_filename | nome della pipe FIFO | - +| guile | guile_eval | evaluation of source code | source code to execute + | guile | guile_interpreter | name of the interpreter used | - | guile | guile_version | version of the interpreter used | - @@ -32,34 +34,48 @@ | irc | irc_server_isupport_value | valore della caratteristica, se supportata dal servre (dal messaggio IRC 005) | server,caratteristica +| javascript | javascript_eval | evaluation of source code | source code to execute + | javascript | javascript_interpreter | name of the interpreter used | - | javascript | javascript_version | version of the interpreter used | - +| lua | lua_eval | evaluation of source code | source code to execute + | lua | lua_interpreter | name of the interpreter used | - | lua | lua_version | version of the interpreter used | - +| perl | perl_eval | evaluation of source code | source code to execute + | perl | perl_interpreter | name of the interpreter used | - | perl | perl_version | version of the interpreter used | - +| php | php_eval | evaluation of source code | source code to execute + | php | php_interpreter | name of the interpreter used | - | php | php_version | version of the interpreter used | - | python | python2_bin | path per l'interprete python 2.x | - +| python | python_eval | evaluation of source code | source code to execute + | python | python_interpreter | name of the interpreter used | - | python | python_version | version of the interpreter used | - | relay | relay_client_count | number of clients for relay | status name (optional): connecting, waiting_auth, connected, auth_failed, disconnected +| ruby | ruby_eval | evaluation of source code | source code to execute + | ruby | ruby_interpreter | name of the interpreter used | - | ruby | ruby_version | version of the interpreter used | - +| tcl | tcl_eval | evaluation of source code | source code to execute + | tcl | tcl_interpreter | name of the interpreter used | - | tcl | tcl_version | version of the interpreter used | - diff --git a/doc/it/autogen/user/guile_commands.adoc b/doc/it/autogen/user/guile_commands.adoc index 3bdd8cb0b..c92f0c162 100644 --- a/doc/it/autogen/user/guile_commands.adoc +++ b/doc/it/autogen/user/guile_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/it/autogen/user/javascript_commands.adoc b/doc/it/autogen/user/javascript_commands.adoc index 86f972816..fe65703f2 100644 --- a/doc/it/autogen/user/javascript_commands.adoc +++ b/doc/it/autogen/user/javascript_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/it/autogen/user/lua_commands.adoc b/doc/it/autogen/user/lua_commands.adoc index 59509e494..d55881a16 100644 --- a/doc/it/autogen/user/lua_commands.adoc +++ b/doc/it/autogen/user/lua_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/it/autogen/user/perl_commands.adoc b/doc/it/autogen/user/perl_commands.adoc index 11737175c..637a61b52 100644 --- a/doc/it/autogen/user/perl_commands.adoc +++ b/doc/it/autogen/user/perl_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/it/autogen/user/php_commands.adoc b/doc/it/autogen/user/php_commands.adoc index 70704ba11..57a10ab58 100644 --- a/doc/it/autogen/user/php_commands.adoc +++ b/doc/it/autogen/user/php_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/it/autogen/user/python_commands.adoc b/doc/it/autogen/user/python_commands.adoc index c6d1f5e42..487bf6230 100644 --- a/doc/it/autogen/user/python_commands.adoc +++ b/doc/it/autogen/user/python_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/it/autogen/user/ruby_commands.adoc b/doc/it/autogen/user/ruby_commands.adoc index 268ce994b..aed5cb0dd 100644 --- a/doc/it/autogen/user/ruby_commands.adoc +++ b/doc/it/autogen/user/ruby_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/it/autogen/user/tcl_commands.adoc b/doc/it/autogen/user/tcl_commands.adoc index c50b17e12..a151d3a4d 100644 --- a/doc/it/autogen/user/tcl_commands.adoc +++ b/doc/it/autogen/user/tcl_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. |