diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-09-03 13:59:49 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-09-03 15:34:29 +0200 |
commit | 997768c4cf976c4dca93b022d2d695bd569df699 (patch) | |
tree | ee07d51a68dc9d58ccaee8642d73b66a64162c68 /doc/it/autogen | |
parent | baa1d5fbc92f944aa4198d5b7665b7483b6e3ca8 (diff) | |
download | weechat-997768c4cf976c4dca93b022d2d695bd569df699.zip |
doc: add PHP plugin in user's guide
Diffstat (limited to 'doc/it/autogen')
-rw-r--r-- | doc/it/autogen/plugin_api/completions.adoc | 2 | ||||
-rw-r--r-- | doc/it/autogen/plugin_api/hdata.adoc | 20 | ||||
-rw-r--r-- | doc/it/autogen/plugin_api/infolists.adoc | 2 | ||||
-rw-r--r-- | doc/it/autogen/plugin_api/plugins_priority.adoc | 2 | ||||
-rw-r--r-- | doc/it/autogen/user/php_commands.adoc | 25 |
5 files changed, 50 insertions, 1 deletions
diff --git a/doc/it/autogen/plugin_api/completions.adoc b/doc/it/autogen/plugin_api/completions.adoc index cc4b2c3c3..cb4c0383f 100644 --- a/doc/it/autogen/plugin_api/completions.adoc +++ b/doc/it/autogen/plugin_api/completions.adoc @@ -58,6 +58,8 @@ | perl | perl_script | elenco degli script +| php | php_script | elenco degli script + | python | python_script | elenco degli script | relay | relay_free_port | prima porta libera per il plugin relay diff --git a/doc/it/autogen/plugin_api/hdata.adoc b/doc/it/autogen/plugin_api/hdata.adoc index 9f8b5ad64..88f409f77 100644 --- a/doc/it/autogen/plugin_api/hdata.adoc +++ b/doc/it/autogen/plugin_api/hdata.adoc @@ -324,6 +324,26 @@ _prev_script_ (pointer, hdata: "perl_script") + _next_script_ (pointer, hdata: "perl_script") + +| php +| [[hdata_php_script]]<<hdata_php_script,php_script>> +| elenco degli script +| _scripts_ + +_last_script_ + + +| _filename_ (string) + +_interpreter_ (pointer) + +_name_ (string) + +_author_ (string) + +_version_ (string) + +_license_ (string) + +_description_ (string) + +_shutdown_func_ (string) + +_charset_ (string) + +_unloading_ (integer) + +_prev_script_ (pointer, hdata: "php_script") + +_next_script_ (pointer, hdata: "php_script") + + + | python | [[hdata_python_script]]<<hdata_python_script,python_script>> | elenco degli script diff --git a/doc/it/autogen/plugin_api/infolists.adoc b/doc/it/autogen/plugin_api/infolists.adoc index a3b0f3a97..ecc6a8fd3 100644 --- a/doc/it/autogen/plugin_api/infolists.adoc +++ b/doc/it/autogen/plugin_api/infolists.adoc @@ -34,6 +34,8 @@ | perl | perl_script | elenco degli script | puntatore allo script (opzionale) | script name (wildcard "*" is allowed) (optional) +| php | php_script | elenco degli script | puntatore allo script (opzionale) | script name (wildcard "*" is allowed) (optional) + | python | python_script | elenco degli script | puntatore allo script (opzionale) | script name (wildcard "*" is allowed) (optional) | relay | relay | elenco di client relay | puntatore al relay (opzionale) | - diff --git a/doc/it/autogen/plugin_api/plugins_priority.adoc b/doc/it/autogen/plugin_api/plugins_priority.adoc index 2cb61720a..0adb939c7 100644 --- a/doc/it/autogen/plugin_api/plugins_priority.adoc +++ b/doc/it/autogen/plugin_api/plugins_priority.adoc @@ -13,6 +13,6 @@ . xfer (7000) . irc (6000) . relay (5000) -. guile, javascript, lua, perl, python, ruby, tcl (4000) +. guile, javascript, lua, perl, php, python, ruby, tcl (4000) . script (3000) . fset (2000) diff --git a/doc/it/autogen/user/php_commands.adoc b/doc/it/autogen/user/php_commands.adoc new file mode 100644 index 000000000..37a6748b8 --- /dev/null +++ b/doc/it/autogen/user/php_commands.adoc @@ -0,0 +1,25 @@ +// +// This file is auto-generated by script docgen.py. +// DO NOT EDIT BY HAND! +// +[[command_php_php]] +* `+php+`: elenca/carica/scarica script + +---- +/php list|listfull [<nome>] + load [-q] <nomefile> + autoload + reload|unload [-q][<nome>] + + list: elenca i plugin caricati + listfull: elenca i plugin caricati (dettagliato) + load: carica un plugin + autoload: carica automaticamente i plugin nella directory utente o di sistema + reload: ricarica un plugin (se non specificato, scarica i plugin e li ricarica automaticamente) + unload: scarica uno o tutti i plugin +nome_file: (file) script da caricare + nome: il nome di uno script (usato nella chiamata alla funzione "register") + -q: modalità silenziosa: non mostra messaggi + +Senza argomento, questo comando elenca tutti i plugin caricati. +---- |