diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-06-21 12:29:06 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-06-21 12:29:06 +0200 |
commit | 96a92eacbfc41a3c491b89c261d744573a597b20 (patch) | |
tree | 3163d23b32d9408505eb4ee48a644b5a53f38dd5 | |
parent | 9d05dcf175ac6a26a1a263ea490df174f78ffc62 (diff) | |
download | weechat-96a92eacbfc41a3c491b89c261d744573a597b20.zip |
Remove infobar in doc
-rw-r--r-- | doc/de/config.xml | 56 | ||||
-rw-r--r-- | doc/de/key_functions.xml | 4 | ||||
-rw-r--r-- | doc/de/plugin_api.de.xml | 77 | ||||
-rw-r--r-- | doc/de/plugin_scripts.de.xml | 130 | ||||
-rw-r--r-- | doc/en/config.xml | 56 | ||||
-rw-r--r-- | doc/en/key_functions.xml | 4 | ||||
-rw-r--r-- | doc/en/plugin_api.en.xml | 76 | ||||
-rw-r--r-- | doc/en/plugin_scripts.en.xml | 130 | ||||
-rw-r--r-- | doc/en/usage.en.xml | 6 | ||||
-rw-r--r-- | doc/fr/config.xml | 56 | ||||
-rw-r--r-- | doc/fr/key_functions.xml | 4 | ||||
-rw-r--r-- | doc/fr/plugin_api.fr.xml | 79 | ||||
-rw-r--r-- | doc/fr/plugin_scripts.fr.xml | 130 |
13 files changed, 0 insertions, 808 deletions
diff --git a/doc/de/config.xml b/doc/de/config.xml index 7f0ae9466..094728e9f 100644 --- a/doc/de/config.xml +++ b/doc/de/config.xml @@ -216,34 +216,6 @@ <entry>Nur mit dem ersten, passenden Nicknamen vervollständigen</entry> </row> <row> - <entry><option>look_infobar</option></entry> - <entry>Boolean</entry> - <entry>eine beliebige Zeichenfolge</entry> - <entry>'on'</entry> - <entry>Infoleiste aktivieren</entry> -</row> -<row> - <entry><option>look_infobar_timestamp</option></entry> - <entry>Zeichenfolge</entry> - <entry>eine beliebige Zeichenfolge</entry> - <entry>'%B, %A %d %Y'</entry> - <entry>Timestamp in der Infobar</entry> -</row> -<row> - <entry><option>look_infobar_seconds</option></entry> - <entry>Boolean</entry> - <entry>eine beliebige Zeichenfolge</entry> - <entry>'on'</entry> - <entry>Sekunden in der Infobar-Zeit anzeigen</entry> -</row> -<row> - <entry><option>look_infobar_delay_highlight</option></entry> - <entry>Ganzzahl</entry> - <entry>zwischen 0 und 2147483647</entry> - <entry>7</entry> - <entry>Anzeigezeit in Sekunden für Highlight-Messages in der Infobar (0: gar nicht erst anzeigen)</entry> -</row> -<row> <entry><option>look_hotlist_names_count</option></entry> <entry>Ganzzahl</entry> <entry>zwischen 0 und 32</entry> @@ -517,34 +489,6 @@ <entry>Hintergrund des Statusfensters</entry> </row> <row> - <entry><option>col_infobar</option></entry> - <entry>Farbe</entry> - <entry>Curses- oder Gtk-Farben</entry> - <entry>'black'</entry> - <entry>Farbe des Infobar-Textes</entry> -</row> -<row> - <entry><option>col_infobar_delimiters</option></entry> - <entry>Farbe</entry> - <entry>Curses- oder Gtk-Farben</entry> - <entry>'blue'</entry> - <entry>Farbe der Infobar-Trennzeichen</entry> -</row> -<row> - <entry><option>col_infobar_highlight</option></entry> - <entry>Farbe</entry> - <entry>Curses- oder Gtk-Farben</entry> - <entry>'white'</entry> - <entry>Farbe der Infobar-Highlight-Notifikation</entry> -</row> -<row> - <entry><option>col_infobar_bg</option></entry> - <entry>Farbe</entry> - <entry>Curses- oder Gtk-Farben</entry> - <entry>'cyan'</entry> - <entry>Hintergrund des Infobar-Fensters</entry> -</row> -<row> <entry><option>col_input</option></entry> <entry>Farbe</entry> <entry>Curses- oder Gtk-Farben</entry> diff --git a/doc/de/key_functions.xml b/doc/de/key_functions.xml index 4ad36226b..9a3222ba0 100644 --- a/doc/de/key_functions.xml +++ b/doc/de/key_functions.xml @@ -194,10 +194,6 @@ <entry>Hotlist leeren</entry> </row> <row> - <entry><literal>infobar_clear</literal></entry> - <entry>Infobar leeren</entry> -</row> -<row> <entry><literal>refresh</literal></entry> <entry>Bild neu aufbauen</entry> </row> diff --git a/doc/de/plugin_api.de.xml b/doc/de/plugin_api.de.xml index bb47e0f27..a59d127db 100644 --- a/doc/de/plugin_api.de.xml +++ b/doc/de/plugin_api.de.xml @@ -622,83 +622,6 @@ plugin->print (plugin, NULL, NULL, </para> </section> - <section id="secAPI_print_infobar"> - <title>print_infobar</title> - - <para> - Prototyp: - <command> - void print_infobar (t_weechat_plugin *plugin, - int time, char *message, ...) - </command> - </para> - <para> - Zeige eine Nachricht in der Infobar für eine bestimmte Zeit - </para> - <para> - Argumente: - <itemizedlist> - <listitem> - <para> - <option>plugin</option>: Zeiger auf eine Plugin-Struktur - </para> - </listitem> - <listitem> - <para> - <option>time</option>: Zeitspanne für die Anzeige (in - Sekunden, 0 = ständige Anzeige) - </para> - </listitem> - </itemizedlist> - </para> - <para> - Rückgabewert: keiner. - </para> - <para> - Beispiel: -<screen> -plugin->print_infobar (plugin, 5, "hello"); -</screen> - </para> - </section> - - <section id="secAPI_infobar_remove"> - <title>infobar_remove</title> - - <para> - Prototyp: - <command> - void infobar_remove (t_weechat_plugin *plugin, int count) - </command> - </para> - <para> - Entferne eine oder mehr Nachrichten aus der Infobar. - </para> - <para> - Argumente: - <itemizedlist> - <listitem> - <para> - <option>plugin</option>: Zeiger auf eine Plugin-Struktur - </para> - </listitem> - <listitem> - <para> - <option>count</option>: Anzahl der Nachrichten (wenn das - Argument kleiner als Null ist, werden alle Nachrichten - entfernt) - </para> - </listitem> - </itemizedlist> - </para> - <para> - Rückgabewert: keiner. - </para> - <para> - Beispiel: <screen>plugin->infobar_remove (1);</screen> - </para> - </section> - <section id="secAPI_log"> <title>log</title> diff --git a/doc/de/plugin_scripts.de.xml b/doc/de/plugin_scripts.de.xml index 789f50032..62589caaa 100644 --- a/doc/de/plugin_scripts.de.xml +++ b/doc/de/plugin_scripts.de.xml @@ -497,136 +497,6 @@ weechat.print_server("message") </para> </section> - <section id="secScript_print_infobar"> - <title>print_infobar</title> - - <para> - Perl-Prototyp: - <command> - weechat::print_infobar(time, message); - </command> - </para> - <para> - Python-Prototyp: - <command> - weechat.print_infobar(time, message) - </command> - </para> - <para> - Ruby-Prototyp: - <command> - Weechat.print_infobar(time, message) - </command> - </para> - <para> - Lua-Prototyp: - <command> - weechat.print_infobar(time, message) - </command> - </para> - <para> - Zeige eine Nachricht für einen festen Zeitraum in der Infobar. - </para> - <para> - Argumente: - <itemizedlist> - <listitem> - <para> - <option>time</option>: Zeit (in sekunden) der Anzeige - (0 = permanent) - </para> - </listitem> - <listitem> - <para> - <option>message</option>: Nachricht - </para> - </listitem> - </itemizedlist> - </para> - <para> - Rückgabewert: 1 bei Erfolg, 0 wenn ein Fehler aufgetreten ist - </para> - <para> - Beispiele: -<screen> -# perl -weechat::print_infobar(5, "message"); - -# python -weechat.print_infobar(5, "message") - -# ruby -Weechat.print_infobar(5, "message") - --- lua -weechat.print_infobar(5, "message") -</screen> - </para> - </section> - - <section id="secScript_remove_infobar"> - <title>remove_infobar</title> - - <para> - Perl-Prototyp: - <command> - weechat::remove_infobar([count]); - </command> - </para> - <para> - Python-Prototyp: - <command> - weechat.remove_infobar([count]) - </command> - </para> - <para> - Ruby-Prototyp: - <command> - Weechat.remove_infobar([count]) - </command> - </para> - <para> - Lua-Prototyp: - <command> - weechat.remove_infobar([count]) - </command> - </para> - <para> - Entfernt eine oder mehrere Nachrichten aus dem Infobar-Speicher. - </para> - <para> - Argumente: - <itemizedlist> - <listitem> - <para> - <option>count</option>: Anzahl der Nachrichten, die entfernt - werden sollen (Ist kein Argument angegeben oder <= 0 - werden alle Nachrichten entfernt) - </para> - </listitem> - </itemizedlist> - </para> - <para> - Rückgabewert: 1 bei Erfolg, 0 bei Auftreten eines Fehlers - </para> - <para> - Beispiele: -<screen> -# perl -weechat::remove_infobar(1); - -# python -weechat.remove_infobar(1) - -# ruby -Weechat.remove_infobar(1) - --- lua -weechat.remove_infobar(1) -</screen> - </para> - </section> - <section id="secScript_log"> <title>log</title> diff --git a/doc/en/config.xml b/doc/en/config.xml index 61f402d8a..9aefec19c 100644 --- a/doc/en/config.xml +++ b/doc/en/config.xml @@ -216,34 +216,6 @@ <entry>Complete only with first nick found</entry> </row> <row> - <entry><option>look_infobar</option></entry> - <entry>boolean</entry> - <entry>'on' or 'off'</entry> - <entry>'on'</entry> - <entry>Enable info bar</entry> -</row> -<row> - <entry><option>look_infobar_timestamp</option></entry> - <entry>string</entry> - <entry>any string</entry> - <entry>'%B, %A %d %Y'</entry> - <entry>Timestamp for time in infobar</entry> -</row> -<row> - <entry><option>look_infobar_seconds</option></entry> - <entry>boolean</entry> - <entry>'on' or 'off'</entry> - <entry>'on'</entry> - <entry>Display seconds in infobar time</entry> -</row> -<row> - <entry><option>look_infobar_delay_highlight</option></entry> - <entry>integer</entry> - <entry>between 0 and 2147483647</entry> - <entry>7</entry> - <entry>Delay (in seconds) for highlight messages in infobar (0 = disable highlight notifications in infobar)</entry> -</row> -<row> <entry><option>look_hotlist_names_count</option></entry> <entry>integer</entry> <entry>between 0 and 32</entry> @@ -517,34 +489,6 @@ <entry>Background for status window</entry> </row> <row> - <entry><option>col_infobar</option></entry> - <entry>color</entry> - <entry>Curses or Gtk color</entry> - <entry>'black'</entry> - <entry>Color for info bar text</entry> -</row> -<row> - <entry><option>col_infobar_delimiters</option></entry> - <entry>color</entry> - <entry>Curses or Gtk color</entry> - <entry>'blue'</entry> - <entry>Color for infobar delimiters</entry> -</row> -<row> - <entry><option>col_infobar_highlight</option></entry> - <entry>color</entry> - <entry>Curses or Gtk color</entry> - <entry>'white'</entry> - <entry>Color for info bar highlight notification</entry> -</row> -<row> - <entry><option>col_infobar_bg</option></entry> - <entry>color</entry> - <entry>Curses or Gtk color</entry> - <entry>'cyan'</entry> - <entry>Background for info bar window</entry> -</row> -<row> <entry><option>col_input</option></entry> <entry>color</entry> <entry>Curses or Gtk color</entry> diff --git a/doc/en/key_functions.xml b/doc/en/key_functions.xml index 27deec273..9605b534d 100644 --- a/doc/en/key_functions.xml +++ b/doc/en/key_functions.xml @@ -194,10 +194,6 @@ <entry>clear hotlist</entry> </row> <row> - <entry><literal>infobar_clear</literal></entry> - <entry>clear infobar</entry> -</row> -<row> <entry><literal>refresh</literal></entry> <entry>refresh screen</entry> </row> diff --git a/doc/en/plugin_api.en.xml b/doc/en/plugin_api.en.xml index b1a496289..4d4c49d64 100644 --- a/doc/en/plugin_api.en.xml +++ b/doc/en/plugin_api.en.xml @@ -603,82 +603,6 @@ plugin->print (plugin, NULL, NULL, </para> </section> - <section id="secAPI_print_infobar"> - <title>print_infobar</title> - - <para> - Prototype: - <command> - void print_infobar (t_weechat_plugin *plugin, - int time, char *message, ...) - </command> - </para> - <para> - Display a message in infobar for a specified time. - </para> - <para> - Arguments: - <itemizedlist> - <listitem> - <para> - <option>plugin</option>: pointer to plugin structure - </para> - </listitem> - <listitem> - <para> - <option>time</option>: time (in seconds) for displaying - message (0 = never erased) - </para> - </listitem> - </itemizedlist> - </para> - <para> - Return value: none. - </para> - <para> - Example: -<screen> -plugin->print_infobar (plugin, 5, "hello"); -</screen> - </para> - </section> - - <section id="secAPI_infobar_remove"> - <title>infobar_remove</title> - - <para> - Prototype: - <command> - void infobar_remove (t_weechat_plugin *plugin, int count) - </command> - </para> - <para> - Remove one or more messages in infobar stack. - </para> - <para> - Arguments: - <itemizedlist> - <listitem> - <para> - <option>plugin</option>: pointer to plugin structure - </para> - </listitem> - <listitem> - <para> - <option>count</option>: number of messages to remove - (if argument is <= 0, then all messages are removed) - </para> - </listitem> - </itemizedlist> - </para> - <para> - Return value: none. - </para> - <para> - Example: <screen>plugin->infobar_remove (1);</screen> - </para> - </section> - <section id="secAPI_log"> <title>log</title> diff --git a/doc/en/plugin_scripts.en.xml b/doc/en/plugin_scripts.en.xml index 787e8c1c9..46424fece 100644 --- a/doc/en/plugin_scripts.en.xml +++ b/doc/en/plugin_scripts.en.xml @@ -483,136 +483,6 @@ weechat.print_server("message") </para> </section> - <section id="secScript_print_infobar"> - <title>print_infobar</title> - - <para> - Perl prototype: - <command> - weechat::print_infobar(time, message); - </command> - </para> - <para> - Python prototype: - <command> - weechat.print_infobar(time, message) - </command> - </para> - <para> - Ruby prototype: - <command> - Weechat.print_infobar(time, message) - </command> - </para> - <para> - Lua prototype: - <command> - weechat.print_infobar(time, message) - </command> - </para> - <para> - Display a message in infobar for a specified time. - </para> - <para> - Arguments: - <itemizedlist> - <listitem> - <para> - <option>time</option>: time (in seconds) for displaying - message (0 = never erased) - </para> - </listitem> - <listitem> - <para> - <option>message</option>: message - </para> - </listitem> - </itemizedlist> - </para> - <para> - Return value: 1 if success, 0 if an error occurred. - </para> - <para> - Examples: -<screen> -# perl -weechat::print_infobar(5, "message"); - -# python -weechat.print_infobar(5, "message") - -# ruby -Weechat.print_infobar(5, "message") - --- lua -weechat.print_infobar(5, "message") -</screen> - </para> - </section> - - <section id="secScript_remove_infobar"> - <title>remove_infobar</title> - - <para> - Perl prototype: - <command> - weechat::remove_infobar([count]); - </command> - </para> - <para> - Python prototype: - <command> - weechat.remove_infobar([count]) - </command> - </para> - <para> - Ruby prototype: - <command> - Weechat.remove_infobar([count]) - </command> - </para> - <para> - Lua prototype: - <command> - weechat.remove_infobar([count]) - </command> - </para> - <para> - Remove one or more messages in infobar stack. - </para> - <para> - Arguments: - <itemizedlist> - <listitem> - <para> - <option>count</option>: number of messages to remove - (if argument not given or <= 0, then all messages are - removed) - </para> - </listitem> - </itemizedlist> - </para> - <para> - Return value: 1 if success, 0 if an error occurred. - </para> - <para> - Examples: -<screen> -# perl -weechat::remove_infobar(1); - -# python -weechat.remove_infobar(1) - -# ruby -Weechat.remove_infobar(1) - --- lua -weechat.remove_infobar(1) -</screen> - </para> - </section> - <section id="secScript_log"> <title>log</title> diff --git a/doc/en/usage.en.xml b/doc/en/usage.en.xml index 11f746ac2..4134ed91a 100644 --- a/doc/en/usage.en.xml +++ b/doc/en/usage.en.xml @@ -411,12 +411,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. </entry> </row> <row> - <entry>Alt + I</entry> - <entry> - Remove last infobar message - </entry> - </row> - <row> <entry>Alt + J then Alt + L</entry> <entry> Switch to last buffer diff --git a/doc/fr/config.xml b/doc/fr/config.xml index c8ff8804a..2d5903a49 100644 --- a/doc/fr/config.xml +++ b/doc/fr/config.xml @@ -216,34 +216,6 @@ <entry>Compléter seulement avec le premier pseudo trouvé</entry> </row> <row> - <entry><option>look_infobar</option></entry> - <entry>booléen</entry> - <entry>'on' ou 'off'</entry> - <entry>'on'</entry> - <entry>Active la barre d'infos</entry> -</row> -<row> - <entry><option>look_infobar_timestamp</option></entry> - <entry>chaîne</entry> - <entry>toute chaîne</entry> - <entry>'%B, %A %d %Y'</entry> - <entry>Format de date/heure dans la barre d'infos</entry> -</row> -<row> - <entry><option>look_infobar_seconds</option></entry> - <entry>booléen</entry> - <entry>'on' ou 'off'</entry> - <entry>'on'</entry> - <entry>Afficher les secondes pour l'heure dans la barre d'infos</entry> -</row> -<row> - <entry><option>look_infobar_delay_highlight</option></entry> - <entry>entier</entry> - <entry>entre 0 et 2147483647</entry> - <entry>7</entry> - <entry>Délai (en secondes) pour la notification des messages dans la barre d'infos (0 = désactiver les notifications dans la barre d'infos)</entry> -</row> -<row> <entry><option>look_hotlist_names_count</option></entry> <entry>entier</entry> <entry>entre 0 et 32</entry> @@ -517,34 +489,6 @@ <entry>Couleur de fond pour la fenêtre de statut</entry> </row> <row> - <entry><option>col_infobar</option></entry> - <entry>couleur</entry> - <entry>couleur Curses ou Gtk</entry> - <entry>'black'</entry> - <entry>Couleur pour la barre d'infos</entry> -</row> -<row> - <entry><option>col_infobar_delimiters</option></entry> - <entry>couleur</entry> - <entry>couleur Curses ou Gtk</entry> - <entry>'blue'</entry> - <entry>Couleur pour les délimiteurs de la barre d'infos</entry> -</row> -<row> - <entry><option>col_infobar_highlight</option></entry> - <entry>couleur</entry> - <entry>couleur Curses ou Gtk</entry> - <entry>'white'</entry> - <entry>Couleur pour la notification dans la barre d'infos</entry> -</row> -<row> - <entry><option>col_infobar_bg</option></entry> - <entry>couleur</entry> - <entry>couleur Curses ou Gtk</entry> - <entry>'cyan'</entry> - <entry>Couleur de fond pour la fenêtre de barre d'infos</entry> -</row> -<row> <entry><option>col_input</option></entry> <entry>couleur</entry> <entry>couleur Curses ou Gtk</entry> diff --git a/doc/fr/key_functions.xml b/doc/fr/key_functions.xml index beb61c720..489238a4d 100644 --- a/doc/fr/key_functions.xml +++ b/doc/fr/key_functions.xml @@ -194,10 +194,6 @@ <entry>effacer la liste d'activité</entry> </row> <row> - <entry><literal>infobar_clear</literal></entry> - <entry>effacer la barre d'infos</entry> -</row> -<row> <entry><literal>refresh</literal></entry> <entry>rafraîchir l'écran</entry> </row> diff --git a/doc/fr/plugin_api.fr.xml b/doc/fr/plugin_api.fr.xml index ee8f16bcb..02123b7fd 100644 --- a/doc/fr/plugin_api.fr.xml +++ b/doc/fr/plugin_api.fr.xml @@ -631,85 +631,6 @@ plugin->print (plugin, NULL, NULL, </para> </section> - <section id="secAPI_print_infobar"> - <title>print_infobar</title> - - <para> - Prototype : - <command> - void print_infobar (t_weechat_plugin *plugin, - int temps, char *message, ...) - </command> - </para> - <para> - Affiche un message sur la barre d'infos pour un temps déterminé. - </para> - <para> - Paramètres : - <itemizedlist> - <listitem> - <para> - <option>plugin</option> : pointeur vers la structure - de l'extension - </para> - </listitem> - <listitem> - <para> - <option>temps</option> : temps (en secondes) pendant lequel - le message est affiché (0 = jamais effacé) - </para> - </listitem> - </itemizedlist> - </para> - <para> - Valeur renvoyée : aucune. - </para> - <para> - Exemple : -<screen> -plugin->print_infobar (plugin, 5, "hello"); -</screen> - </para> - </section> - - <section id="secAPI_infobar_remove"> - <title>infobar_remove</title> - - <para> - Prototype : - <command> - void infobar_remove (t_weechat_plugin *plugin, int nombre) - </command> - </para> - <para> - Efface un ou plusieurs messages dans la pile de la barre d'infos. - </para> - <para> - Paramètres : - <itemizedlist> - <listitem> - <para> - <option>plugin</option> : pointeur vers la structure - de l'extension - </para> - </listitem> - <listitem> - <para> - <option>nombre</option> : nombre de messages à supprimer - (si paramètre non présent ou <= 0, alors tous les messages - sont effacés) - </para> - </listitem> - </itemizedlist> - </para> - <para> - Valeur renvoyée : aucune. - </para> - <para> - Exemple : <screen>plugin->infobar_remove (1);</screen> - </para> - </section> - <section id="secAPI_log"> <title>log</title> diff --git a/doc/fr/plugin_scripts.fr.xml b/doc/fr/plugin_scripts.fr.xml index b32548699..dd1145c6a 100644 --- a/doc/fr/plugin_scripts.fr.xml +++ b/doc/fr/plugin_scripts.fr.xml @@ -489,136 +489,6 @@ weechat.print_server("message") </para> </section> - <section id="secScript_print_infobar"> - <title>print_infobar</title> - - <para> - Prototype Perl : - <command> - weechat::print_infobar(temps, message); - </command> - </para> - <para> - Prototype Python : - <command> - weechat.print_infobar(temps, message) - </command> - </para> - <para> - Prototype Ruby : - <command> - Weechat.print_infobar(temps, message) - </command> - </para> - <para> - Prototype Lua : - <command> - weechat.print_infobar(temps, message) - </command> - </para> - <para> - Affiche un message sur la barre d'infos pour un temps déterminé. - </para> - <para> - Paramètres : - <itemizedlist> - <listitem> - <para> - <option>temps</option> : temps (en secondes) pendant - lequel le message est affiché (0 = jamais effacé) - </para> - </listitem> - <listitem> - <para> - <option>message</option> : message à afficher - </para> - </listitem> - </itemizedlist> - </para> - <para> - Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. - </para> - <para> - Exemples : -<screen> -# perl -weechat::print_infobar(5, "message"); - -# python -weechat.print_infobar(5, "message") - -# ruby -Weechat.print_infobar(5, "message") - --- lua -weechat.print_infobar(5, "message") -</screen> - </para> - </section> - - <section id="secScript_remove_infobar"> - <title>remove_infobar</title> - - <para> - Prototype Perl : - <command> - weechat::remove_infobar([nombre]); - </command> - </para> - <para> - Prototype Python : - <command> - weechat.remove_infobar([nombre]) - </command> - </para> - <para> - Prototype Ruby : - <command> - Weechat.remove_infobar([nombre]) - </command> - </para> - <para> - Prototype Lua : - <command> - weechat.remove_infobar([nombre]) - </command> - </para> - <para> - Efface un ou plusieurs messages dans la pile de la barre d'infos. - </para> - <para> - Paramètres : - <itemizedlist> - <listitem> - <para> - <option>nombre</option> : nombre de messages à supprimer - (si paramètre non présent ou <= 0, alors tous les messages - sont effacés) - </para> - </listitem> - </itemizedlist> - </para> - <para> - Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. - </para> - <para> - Exemples : -<screen> -# perl -weechat::remove_infobar(1); - -# python -weechat.remove_infobar(1) - -# ruby -Weechat.remove_infobar(1) - --- lua -weechat.remove_infobar(1) -</screen> - </para> - </section> - <section id="secScript_log"> <title>log</title> |