diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-05 19:06:46 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-05 19:06:46 +0200 |
commit | 44944ef01ff2c0b81d4b6d6ce6d0f95ee6dd35a5 (patch) | |
tree | 4076ea07aa8ccf325842fa5525630e6e779f8ec4 /doc | |
parent | 269bf55b1ebd9a2342dd0e66af58f1d798652e7a (diff) | |
download | weechat-44944ef01ff2c0b81d4b6d6ce6d0f95ee6dd35a5.zip |
Add Tcl script plugin (thanks to Dmitry Kobylin)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/de/autogen/tcl_commands.xml | 17 | ||||
-rw-r--r-- | doc/docgen.pl | 3 | ||||
-rw-r--r-- | doc/en/autogen/tcl_commands.xml | 17 | ||||
-rw-r--r-- | doc/fr/autogen/tcl_commands.xml | 17 | ||||
-rw-r--r-- | doc/include_autogen.xml | 1 |
5 files changed, 54 insertions, 1 deletions
diff --git a/doc/de/autogen/tcl_commands.xml b/doc/de/autogen/tcl_commands.xml new file mode 100644 index 000000000..5116dec71 --- /dev/null +++ b/doc/de/autogen/tcl_commands.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ********* WARNING! ********* + + This file is autogenerated with docgen.pl script. *** DO NOT EDIT! *** + docgen.pl builds XML doc files to include in many languages +--> + +<command>tcl [list [name]] | [listfull [name]] [load filename] | [autoload] | [reload] | [unload [name]]</command> +<programlisting> +list/load/unload scripts + +filename: script (file) to load +name: a script name + +Without argument, this command lists all loaded scripts. +</programlisting> diff --git a/doc/docgen.pl b/doc/docgen.pl index c823fcfbe..8a04f2798 100644 --- a/doc/docgen.pl +++ b/doc/docgen.pl @@ -68,7 +68,8 @@ my %plugin_list = ("weechat" => "co", "alias" => "", "irc" => "co", "logger" => "co", "notify" => "co", "perl" => "", "python" => "", "ruby" => "", - "lua" => "", "xfer" => "co"); + "lua" => "", "tcl" => "", + "xfer" => "co"); # options to ignore my @ignore_options = ("weechat\\.bar\\..*", diff --git a/doc/en/autogen/tcl_commands.xml b/doc/en/autogen/tcl_commands.xml new file mode 100644 index 000000000..5116dec71 --- /dev/null +++ b/doc/en/autogen/tcl_commands.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ********* WARNING! ********* + + This file is autogenerated with docgen.pl script. *** DO NOT EDIT! *** + docgen.pl builds XML doc files to include in many languages +--> + +<command>tcl [list [name]] | [listfull [name]] [load filename] | [autoload] | [reload] | [unload [name]]</command> +<programlisting> +list/load/unload scripts + +filename: script (file) to load +name: a script name + +Without argument, this command lists all loaded scripts. +</programlisting> diff --git a/doc/fr/autogen/tcl_commands.xml b/doc/fr/autogen/tcl_commands.xml new file mode 100644 index 000000000..da31e82b5 --- /dev/null +++ b/doc/fr/autogen/tcl_commands.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ********* WARNING! ********* + + This file is autogenerated with docgen.pl script. *** DO NOT EDIT! *** + docgen.pl builds XML doc files to include in many languages +--> + +<command>tcl [list [nom]] | [listfull [nom]] | [load fichier] | [autoload] | [reload] | [unload [nom]]</command> +<programlisting> +liste/charge/décharge des scripts + +fichier: script (fichier) à charger +nom: un nom de script + +Sans argument, cette commande liste tous les scripts chargés. +</programlisting> diff --git a/doc/include_autogen.xml b/doc/include_autogen.xml index dba03e9dd..25d8caffc 100644 --- a/doc/include_autogen.xml +++ b/doc/include_autogen.xml @@ -10,6 +10,7 @@ <!ENTITY perl_commands.xml SYSTEM "autogen/perl_commands.xml"> <!ENTITY python_commands.xml SYSTEM "autogen/python_commands.xml"> <!ENTITY ruby_commands.xml SYSTEM "autogen/ruby_commands.xml"> +<!ENTITY tcl_commands.xml SYSTEM "autogen/tcl_commands.xml"> <!ENTITY weechat_commands.xml SYSTEM "autogen/weechat_commands.xml"> <!ENTITY xfer_commands.xml SYSTEM "autogen/xfer_commands.xml"> |