1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 15:26: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
-56
View File
@@ -215,34 +215,6 @@
<entry>'off'</entry>
<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>
@@ -516,34 +488,6 @@
<entry>'blue'</entry>
<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>
-4
View File
@@ -193,10 +193,6 @@
<entry><literal>hotlist_clear</literal></entry>
<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>
-77
View File
@@ -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>
-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>
-56
View File
@@ -215,34 +215,6 @@
<entry>'off'</entry>
<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>
@@ -516,34 +488,6 @@
<entry>'blue'</entry>
<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>
-4
View File
@@ -193,10 +193,6 @@
<entry><literal>hotlist_clear</literal></entry>
<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>
-76
View File
@@ -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 &lt;= 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>
-130
View File
@@ -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 &lt;= 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>
-6
View File
@@ -410,12 +410,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
(activity notification on other buffers)
</entry>
</row>
<row>
<entry>Alt + I</entry>
<entry>
Remove last infobar message
</entry>
</row>
<row>
<entry>Alt + J then Alt + L</entry>
<entry>
-56
View File
@@ -215,34 +215,6 @@
<entry>'off'</entry>
<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>
@@ -516,34 +488,6 @@
<entry>'blue'</entry>
<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>
-4
View File
@@ -193,10 +193,6 @@
<entry><literal>hotlist_clear</literal></entry>
<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>
-79
View File
@@ -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 &lt;= 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>
-130
View File
@@ -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 &lt;= 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>