diff options
Diffstat (limited to 'doc/fr/autogen')
-rw-r--r-- | doc/fr/autogen/plugin_api/completions.adoc | 2 | ||||
-rw-r--r-- | doc/fr/autogen/plugin_api/hdata.adoc | 20 | ||||
-rw-r--r-- | doc/fr/autogen/plugin_api/infolists.adoc | 2 | ||||
-rw-r--r-- | doc/fr/autogen/plugin_api/plugins_priority.adoc | 2 | ||||
-rw-r--r-- | doc/fr/autogen/user/php_commands.adoc | 25 |
5 files changed, 50 insertions, 1 deletions
diff --git a/doc/fr/autogen/plugin_api/completions.adoc b/doc/fr/autogen/plugin_api/completions.adoc index 27c9b1846..6291a006e 100644 --- a/doc/fr/autogen/plugin_api/completions.adoc +++ b/doc/fr/autogen/plugin_api/completions.adoc @@ -58,6 +58,8 @@ | perl | perl_script | liste des scripts +| php | php_script | liste des scripts + | python | python_script | liste des scripts | relay | relay_free_port | premier port libre pour l'extension relay diff --git a/doc/fr/autogen/plugin_api/hdata.adoc b/doc/fr/autogen/plugin_api/hdata.adoc index 214af61c3..3b1798556 100644 --- a/doc/fr/autogen/plugin_api/hdata.adoc +++ b/doc/fr/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>> +| liste des scripts +| _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>> | liste des scripts diff --git a/doc/fr/autogen/plugin_api/infolists.adoc b/doc/fr/autogen/plugin_api/infolists.adoc index bb88aaad1..2c83e027c 100644 --- a/doc/fr/autogen/plugin_api/infolists.adoc +++ b/doc/fr/autogen/plugin_api/infolists.adoc @@ -34,6 +34,8 @@ | perl | perl_script | liste des scripts | pointeur vers le script (optionnel) | nom de script (le caractère joker "*" est autorisé) (optionnel) +| php | php_script | liste des scripts | pointeur vers le script (optionnel) | nom de script (le caractère joker "*" est autorisé) (optionnel) + | python | python_script | liste des scripts | pointeur vers le script (optionnel) | nom de script (le caractère joker "*" est autorisé) (optionnel) | relay | relay | liste des clients pour le relai | pointeur vers le relay (optionnel) | - diff --git a/doc/fr/autogen/plugin_api/plugins_priority.adoc b/doc/fr/autogen/plugin_api/plugins_priority.adoc index 2cb61720a..0adb939c7 100644 --- a/doc/fr/autogen/plugin_api/plugins_priority.adoc +++ b/doc/fr/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/fr/autogen/user/php_commands.adoc b/doc/fr/autogen/user/php_commands.adoc new file mode 100644 index 000000000..9026a8030 --- /dev/null +++ b/doc/fr/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+`: lister/charger/décharger des scripts + +---- +/php list|listfull [<nom>] + load [-q] <fichier> + autoload + reload|unload [-q] [<nom>] + + list : lister les scripts chargés +listfull : lister les scripts chargés (verbeux) + load : charger un script +autoload : charger tous les scripts dans le répertoire "autoload" + reload : recharger un script (si pas de nom donné, décharger tous les scripts puis charger tous les scripts dans le répertoire "autoload") + unload : décharger un script (si pas de nom donné, décharger tous les scripts) + fichier : script (fichier) à charger + nom : nom de script (nom utilisé dans l'appel à la fonction "register") + -q : mode silencieux : ne pas afficher de messages + +Sans paramètre, cette commande liste les scripts chargés. +---- |