1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 07:16:37 +02:00

Remove infobar in doc

This commit is contained in:
Sebastien Helleu
2008-06-21 12:29:06 +02:00
parent 9d05dcf175
commit 96a92eacbf
13 changed files with 0 additions and 808 deletions
-130
View File
@@ -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 &lt;= 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>