diff options
Diffstat (limited to 'doc/ja/autogen')
-rw-r--r-- | doc/ja/autogen/plugin_api/completions.adoc | 2 | ||||
-rw-r--r-- | doc/ja/autogen/plugin_api/hdata.adoc | 20 | ||||
-rw-r--r-- | doc/ja/autogen/plugin_api/infolists.adoc | 2 | ||||
-rw-r--r-- | doc/ja/autogen/plugin_api/plugins_priority.adoc | 2 | ||||
-rw-r--r-- | doc/ja/autogen/user/php_commands.adoc | 25 |
5 files changed, 50 insertions, 1 deletions
diff --git a/doc/ja/autogen/plugin_api/completions.adoc b/doc/ja/autogen/plugin_api/completions.adoc index 7a0eda404..923727e83 100644 --- a/doc/ja/autogen/plugin_api/completions.adoc +++ b/doc/ja/autogen/plugin_api/completions.adoc @@ -58,6 +58,8 @@ | perl | perl_script | スクリプトのリスト +| php | php_script | スクリプトのリスト + | python | python_script | スクリプトのリスト | relay | relay_free_port | リレープラグイン用の最初の空きポート番号 diff --git a/doc/ja/autogen/plugin_api/hdata.adoc b/doc/ja/autogen/plugin_api/hdata.adoc index 565c381d1..0ca6d58be 100644 --- a/doc/ja/autogen/plugin_api/hdata.adoc +++ b/doc/ja/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>> +| スクリプトのリスト +| _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>> | スクリプトのリスト diff --git a/doc/ja/autogen/plugin_api/infolists.adoc b/doc/ja/autogen/plugin_api/infolists.adoc index 0ad88304b..46ff12db1 100644 --- a/doc/ja/autogen/plugin_api/infolists.adoc +++ b/doc/ja/autogen/plugin_api/infolists.adoc @@ -34,6 +34,8 @@ | perl | perl_script | スクリプトのリスト | スクリプトポインタ (任意) | スクリプト名 (ワイルドカード "*" を使うことができます) (任意) +| php | php_script | スクリプトのリスト | スクリプトポインタ (任意) | スクリプト名 (ワイルドカード "*" を使うことができます) (任意) + | python | python_script | スクリプトのリスト | スクリプトポインタ (任意) | スクリプト名 (ワイルドカード "*" を使うことができます) (任意) | relay | relay | リレークライアントのリスト | リレーポインタ (任意) | - diff --git a/doc/ja/autogen/plugin_api/plugins_priority.adoc b/doc/ja/autogen/plugin_api/plugins_priority.adoc index 2cb61720a..0adb939c7 100644 --- a/doc/ja/autogen/plugin_api/plugins_priority.adoc +++ b/doc/ja/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/ja/autogen/user/php_commands.adoc b/doc/ja/autogen/user/php_commands.adoc new file mode 100644 index 000000000..a190efd2b --- /dev/null +++ b/doc/ja/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+`: スクリプトをリストアップ/ロード/アンロード + +---- +/php list|listfull [<name>] + load [-q] <filename> + autoload + reload|unload [-q] [<name>] + + list: ロード済みスクリプトをリストアップ +listfull: ロード済みスクリプトをリストアップ (詳細) + load: スクリプトをロード +autoload: "autoload" ディレクトリに含まれる全てのスクリプトをロード + reload: スクリプトのリロード (名前を指定しなかった場合、全てのスクリプトをアンロードし、"autoload" ディレクトリに含まれる全てのスクリプトをロード) + unload: スクリプトのアンロード (名前を指定しなかった場合、全てのスクリプトをアンロード) +filename: ロードするスクリプト (ファイル) + name: スクリプト名 (名前は "register" 関数を呼び出すために使われる) + -q: 出力抑制モード: メッセージを表示しない + +引数無しの場合、全てのロード済みスクリプトをリストアップします。 +---- |