summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2006-01-25 10:31:22 +0000
committerSebastien Helleu <flashcode@flashtux.org>2006-01-25 10:31:22 +0000
commit1607c44e75b8fb9196a36bea642c8e46c9c362c5 (patch)
treef70d65831bf4f6ecd6422ecbd2fbecc50f81a0f1 /doc
parent364d774ded1816523fb7ddcf5ca0ee6442612b2e (diff)
downloadweechat-1607c44e75b8fb9196a36bea642c8e46c9c362c5.zip
Added new option "irc_away_check_max_nicks" to disable away check on channels with high number of nicks (patch from Gwenn)
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/buildxml.pl6
-rw-r--r--doc/en/config.xml13
-rw-r--r--doc/en/irc_commands.xml6
-rw-r--r--doc/en/key_functions.xml6
-rw-r--r--doc/en/weechat_commands.xml6
-rw-r--r--doc/fr/config.xml13
-rw-r--r--doc/fr/irc_commands.xml6
-rw-r--r--doc/fr/key_functions.xml6
-rw-r--r--doc/fr/weechat_commands.xml6
9 files changed, 68 insertions, 0 deletions
diff --git a/doc/buildxml.pl b/doc/buildxml.pl
index 0b578c2bf..479fbed75 100755
--- a/doc/buildxml.pl
+++ b/doc/buildxml.pl
@@ -37,6 +37,9 @@
%all_desc = ("fr_FR" => "description",
"en_US" => "description",
"es_ES" => "descripción");
+$warning_do_not_edit = "\n<!-- ********* WARNING! *********\n\n"
+ ." This file is automatically built with a Perl script. DO NOT EDIT!\n"
+ ."-->\n\n";
foreach $lng (@all_lang)
{
@@ -61,6 +64,7 @@ sub create_commands
print "Creating $lang2/$file.xml ($lang)...\n";
open XML, ">$lang2/$file.xml" or die "Error: can't write file!";
print XML "<?xml version=\"1.0\" encoding=\"$encoding\"?>\n";
+ print XML $warning_do_not_edit;
$started = 0;
$ENV{"LANG"} = $lang;
@@ -94,6 +98,7 @@ sub create_key_func
print "Creating $lang2/$file.xml ($lang)...\n";
open XML, ">$lang2/$file.xml" or die "Error: can't write file!";
print XML "<?xml version=\"1.0\" encoding=\"$encoding\"?>\n";
+ print XML $warning_do_not_edit;
$ENV{"LANG"} = $lang;
foreach (`$command`)
@@ -120,6 +125,7 @@ sub create_config
print "Creating $lang2/$file.xml ($lang)...\n";
open XML, ">$lang2/$file.xml" or die "Error: can't write file!";
print XML "<?xml version=\"1.0\" encoding=\"$encoding\"?>\n";
+ print XML $warning_do_not_edit;
$type = "";
$values = "";
$default = "";
diff --git a/doc/en/config.xml b/doc/en/config.xml
index 6b7eb85d0..3460e3ab6 100644
--- a/doc/en/config.xml
+++ b/doc/en/config.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
+
+<!-- ********* WARNING! *********
+
+ This file is automatically built with a Perl script. DO NOT EDIT!
+-->
+
<row>
<entry><option>look_set_title</option></entry>
<entry>boolean</entry>
@@ -798,6 +804,13 @@
<entry>Interval between two checks for away (in minutes, 0 = never check)</entry>
</row>
<row>
+ <entry><option>irc_away_check_max_nicks</option></entry>
+ <entry>integer</entry>
+ <entry>between 0 and 2147483647</entry>
+ <entry></entry>
+ <entry>Do not check away nicks on channels with high number of nicks (0 = unlimited)</entry>
+</row>
+<row>
<entry><option>irc_lag_check</option></entry>
<entry>integer</entry>
<entry>between 30 and 2147483647</entry>
diff --git a/doc/en/irc_commands.xml b/doc/en/irc_commands.xml
index 7b5e319e2..8f0a8f3c5 100644
--- a/doc/en/irc_commands.xml
+++ b/doc/en/irc_commands.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
+
+<!-- ********* WARNING! *********
+
+ This file is automatically built with a Perl script. DO NOT EDIT!
+-->
+
<command>admin [target]</command>
<programlisting>
find information about the administrator of the server
diff --git a/doc/en/key_functions.xml b/doc/en/key_functions.xml
index 6cae6bac5..96eadd0ba 100644
--- a/doc/en/key_functions.xml
+++ b/doc/en/key_functions.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
+
+<!-- ********* WARNING! *********
+
+ This file is automatically built with a Perl script. DO NOT EDIT!
+-->
+
<row>
<entry><literal>return</literal></entry>
<entry>terminate line</entry>
diff --git a/doc/en/weechat_commands.xml b/doc/en/weechat_commands.xml
index f88839859..744a15d92 100644
--- a/doc/en/weechat_commands.xml
+++ b/doc/en/weechat_commands.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
+
+<!-- ********* WARNING! *********
+
+ This file is automatically built with a Perl script. DO NOT EDIT!
+-->
+
<command>alias [alias_name [command [arguments]]</command>
<programlisting>
create an alias for a command
diff --git a/doc/fr/config.xml b/doc/fr/config.xml
index 6ab824ce1..c0f35479a 100644
--- a/doc/fr/config.xml
+++ b/doc/fr/config.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
+
+<!-- ********* WARNING! *********
+
+ This file is automatically built with a Perl script. DO NOT EDIT!
+-->
+
<row>
<entry><option>look_set_title</option></entry>
<entry>booléen</entry>
@@ -798,6 +804,13 @@
<entry>Intervalle entre deux vérifications des absences (en minutes, 0 = ne jemais vérifier)</entry>
</row>
<row>
+ <entry><option>irc_away_check_max_nicks</option></entry>
+ <entry>entier</entry>
+ <entry>entre 0 et 2147483647</entry>
+ <entry>0</entry>
+ <entry>Ne pas vérifier les pseudos absents lorsqu'il y a un nombre important de pseudos (0 = pas de limite)</entry>
+</row>
+<row>
<entry><option>irc_lag_check</option></entry>
<entry>entier</entry>
<entry>entre 30 et 2147483647</entry>
diff --git a/doc/fr/irc_commands.xml b/doc/fr/irc_commands.xml
index 4829700af..77591ffcf 100644
--- a/doc/fr/irc_commands.xml
+++ b/doc/fr/irc_commands.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
+
+<!-- ********* WARNING! *********
+
+ This file is automatically built with a Perl script. DO NOT EDIT!
+-->
+
<command>admin [cible]</command>
<programlisting>
trouver les informations sur l'administrateur du serveur
diff --git a/doc/fr/key_functions.xml b/doc/fr/key_functions.xml
index 8460699ec..55effc5ba 100644
--- a/doc/fr/key_functions.xml
+++ b/doc/fr/key_functions.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
+
+<!-- ********* WARNING! *********
+
+ This file is automatically built with a Perl script. DO NOT EDIT!
+-->
+
<row>
<entry><literal>return</literal></entry>
<entry>terminer la ligne</entry>
diff --git a/doc/fr/weechat_commands.xml b/doc/fr/weechat_commands.xml
index ad3c0c3ad..ab31ecb78 100644
--- a/doc/fr/weechat_commands.xml
+++ b/doc/fr/weechat_commands.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
+
+<!-- ********* WARNING! *********
+
+ This file is automatically built with a Perl script. DO NOT EDIT!
+-->
+
<command>alias [nom_alias [commande [paramètres]]</command>
<programlisting>
créer un alias pour une commande